Home
last modified time | relevance | path

Searched refs:lmattype (Results 1 – 3 of 3) sorted by relevance

/petsc/include/petsc/private/
H A Dmatisimpl.h21 char *lmattype; member
/petsc/src/mat/impls/is/
H A Dmatis.c1669 PetscCall(MatConvert(nA, matis->lmattype, MAT_INPLACE_MATRIX, &nA)); in MatISSetAllowRepeated_IS()
2049 PetscCall(MatISSetLocalMatType(B, matis->lmattype)); in MatDuplicate_IS()
2109 PetscCall(PetscFree(b->lmattype)); in MatDestroy_IS()
2270 char lmattype[64] = {'\0'}; in MatView_IS() local
2291 PetscCall(PetscSNPrintf(lmattype, sizeof(lmattype), "%s", a->lmattype)); in MatView_IS()
2294 PetscCall(PetscViewerBinaryWrite(viewer, lmattype, sizeof(lmattype), PETSC_CHAR)); in MatView_IS()
2414 char lmattype[64]; in MatLoad_IS() local
2435 PetscCall(PetscViewerBinaryRead(viewer, lmattype, sizeof(lmattype), NULL, PETSC_CHAR)); in MatLoad_IS()
2490 PetscCall(PetscStrcmpAny(lmattype, &isbaij, MATSBAIJ, MATSEQSBAIJ, "")); in MatLoad_IS()
2492 PetscCall(MatConvert(lA, lmattype, MAT_INPLACE_MATRIX, &lA)); in MatLoad_IS()
[all …]
/petsc/src/mat/impls/hypre/
H A Dmhypre.c258 MatType lmattype = NULL; in MatConvert_HYPRE_IS() local
271 lmattype = MATSEQAIJHIPSPARSE; in MatConvert_HYPRE_IS()
273 lmattype = MATSEQAIJCUSPARSE; in MatConvert_HYPRE_IS()
359 if (lmattype) PetscCall(MatConvert(lA, lmattype, MAT_INPLACE_MATRIX, &lA)); in MatConvert_HYPRE_IS()