Home
last modified time | relevance | path

Searched refs:createsubmatrix (Results 1 – 7 of 7) sorted by relevance

/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dlibpetsc4py.pyx531 …PetscErrorCode (*createsubmatrix)(PetscMat, PetscIS, PetscIS, PetscMatReuse, PetscMat*) except PET…
655 ops.createsubmatrix = MatCreateSubMatrix_Python
822 mat.ops.createsubmatrix = NULL
825 mat.ops.createsubmatrix = MatCreateSubMatrix_Python
/petsc/src/mat/interface/
H A Dmatrix.c5597 …PetscCheck(mat->ops->permute || mat->ops->createsubmatrix, PETSC_COMM_SELF, PETSC_ERR_SUP, "MatPer… in MatPermute()
8566 …if (mat->ops->createsubmatrices && !mat->ops->createsubmatrix && size == 1 && cll == MAT_REUSE_MAT… in MatCreateSubMatrix()
8569 } else if (mat->ops->createsubmatrices && !mat->ops->createsubmatrix && size == 1) { in MatCreateSubMatrix()
8574 } else if (!mat->ops->createsubmatrix) { in MatCreateSubMatrix()
8592 PetscUseTypeMethod(mat, createsubmatrix, isrow, iscoltmp, cll, newmat); in MatCreateSubMatrix()
/petsc/src/mat/impls/maij/
H A Dmaij.c1187 B->ops->createsubmatrix = MatCreateSubMatrix_MAIJ; in MatCreateMAIJ()
/petsc/src/mat/impls/kaij/
H A Dkaij.c1490 A->ops->createsubmatrix = MatCreateSubMatrix_KAIJ; in MatCreate_KAIJ()
/petsc/include/petsc/private/
H A Dmatimpl.h109 PetscErrorCode (*createsubmatrix)(Mat, IS, IS, MatReuse, Mat *); member
/petsc/src/mat/impls/nest/
H A Dmatnest.c2294 A->ops->createsubmatrix = MatCreateSubMatrix_Nest; in MatCreate_Nest()
/petsc/src/mat/impls/is/
H A Dmatis.c3672 A->ops->createsubmatrix = MatCreateSubMatrix_IS; in MatCreate_IS()