Lines Matching refs:tempT
991 CsrMatrix *tempT = new CsrMatrix; in MatSeqAIJHIPSPARSEFormExplicitTranspose() local
1003 tempT->num_rows = A->rmap->n; in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1004 tempT->num_cols = A->cmap->n; in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1005 tempT->num_entries = a->nz; in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1006 tempT->row_offsets = new THRUSTINTARRAY32(A->rmap->n + 1); in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1007 tempT->column_indices = new THRUSTINTARRAY32(a->nz); in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1008 tempT->values = new THRUSTARRAY(a->nz); in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1010 …t(), temp->row_offsets->data().get(), temp->column_indices->data().get(), tempT->values->data().ge… in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1011 …tempT->column_indices->data().get(), tempT->row_offsets->data().get(), HIPSPARSE_ACTION_NUMERIC, i… in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1017 …->rmap->n, A->cmap->n, matstructT->descr, tempT->values->data().get(), tempT->row_offsets->data().… in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1023 if (tempT) { in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1024 if (tempT->values) delete (THRUSTARRAY *)tempT->values; in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1025 if (tempT->column_indices) delete (THRUSTINTARRAY32 *)tempT->column_indices; in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1026 if (tempT->row_offsets) delete (THRUSTINTARRAY32 *)tempT->row_offsets; in MatSeqAIJHIPSPARSEFormExplicitTranspose()
1027 delete (CsrMatrix *)tempT; in MatSeqAIJHIPSPARSEFormExplicitTranspose()