Lines Matching refs:tempT
1290 CsrMatrix *tempT = new CsrMatrix; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1303 tempT->num_rows = A->rmap->n; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1304 tempT->num_cols = A->cmap->n; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1305 tempT->num_entries = a->nz; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1306 tempT->row_offsets = new THRUSTINTARRAY32(A->rmap->n + 1); in MatSeqAIJCUSPARSEFormExplicitTranspose()
1307 tempT->column_indices = new THRUSTINTARRAY32(a->nz); in MatSeqAIJCUSPARSEFormExplicitTranspose()
1308 tempT->values = new THRUSTARRAY(a->nz); in MatSeqAIJCUSPARSEFormExplicitTranspose()
1310 …t(), temp->row_offsets->data().get(), temp->column_indices->data().get(), tempT->values->data().ge… in MatSeqAIJCUSPARSEFormExplicitTranspose()
1311 …tempT->column_indices->data().get(), tempT->row_offsets->data().get(), CUSPARSE_ACTION_NUMERIC, in… in MatSeqAIJCUSPARSEFormExplicitTranspose()
1318 …->rmap->n, A->cmap->n, matstructT->descr, tempT->values->data().get(), tempT->row_offsets->data().… in MatSeqAIJCUSPARSEFormExplicitTranspose()
1325 if (tempT) { in MatSeqAIJCUSPARSEFormExplicitTranspose()
1326 if (tempT->values) delete (THRUSTARRAY *)tempT->values; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1327 if (tempT->column_indices) delete (THRUSTINTARRAY32 *)tempT->column_indices; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1328 if (tempT->row_offsets) delete (THRUSTINTARRAY32 *)tempT->row_offsets; in MatSeqAIJCUSPARSEFormExplicitTranspose()
1329 delete (CsrMatrix *)tempT; in MatSeqAIJCUSPARSEFormExplicitTranspose()