Home
last modified time | relevance | path

Searched refs:csrMat (Results 1 – 4 of 4) sorted by relevance

/petsc/src/mat/impls/aij/seq/seqhipsparse/
H A Daijhipsparse.hip.cxx325 loTriFactor->csrMat = new CsrMatrix; in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
326 loTriFactor->csrMat->num_rows = n; in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
327 loTriFactor->csrMat->num_cols = n; in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
328 loTriFactor->csrMat->num_entries = nzLower; in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
329 loTriFactor->csrMat->row_offsets = new THRUSTINTARRAY32(n + 1); in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
330 loTriFactor->csrMat->column_indices = new THRUSTINTARRAY32(nzLower); in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
331 loTriFactor->csrMat->values = new THRUSTARRAY(nzLower); in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
333 loTriFactor->csrMat->row_offsets->assign(AiLo, AiLo + n + 1); in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
334 loTriFactor->csrMat->column_indices->assign(AjLo, AjLo + nzLower); in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
335 loTriFactor->csrMat->values->assign(AALo, AALo + nzLower); in MatSeqAIJHIPSPARSEBuildILULowerTriMatrix()
[all …]
H A Dhipsparsematimpl.h188 CsrMatrix *csrMat; member
/petsc/src/mat/impls/aij/seq/seqcusparse/
H A Daijcusparse.cu377 loTriFactor->csrMat = new CsrMatrix; in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
378 loTriFactor->csrMat->num_rows = n; in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
379 loTriFactor->csrMat->num_cols = n; in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
380 loTriFactor->csrMat->num_entries = nzLower; in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
382 loTriFactor->csrMat->row_offsets = new THRUSTINTARRAY32(n + 1); in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
383 loTriFactor->csrMat->row_offsets->assign(AiLo, AiLo + n + 1); in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
385 loTriFactor->csrMat->column_indices = new THRUSTINTARRAY32(nzLower); in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
386 loTriFactor->csrMat->column_indices->assign(AjLo, AjLo + nzLower); in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
388 loTriFactor->csrMat->values = new THRUSTARRAY(nzLower); in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
389 loTriFactor->csrMat->values->assign(AALo, AALo + nzLower); in MatSeqAIJCUSPARSEBuildILULowerTriMatrix()
[all …]
H A Dcusparsematimpl.h199 CsrMatrix *csrMat; member