Searched refs:tempT (Results 1 – 2 of 2) sorted by relevance
| /petsc/src/mat/impls/aij/seq/seqhipsparse/ |
| H A D | aijhipsparse.hip.cxx | 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() [all …]
|
| /petsc/src/mat/impls/aij/seq/seqcusparse/ |
| H A D | aijcusparse.cu | 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() [all …]
|