Home
last modified time | relevance | path

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

/petsc/src/mat/interface/
H A Dmatproduct.c446 char mtypes[256]; in MatProductSetFromOptions_Private() local
447 PetscCall(PetscStrncpy(mtypes, "MatProductSetFromOptions_", sizeof(mtypes))); in MatProductSetFromOptions_Private()
448 PetscCall(PetscStrlcat(mtypes, ((PetscObject)A)->type_name, sizeof(mtypes))); in MatProductSetFromOptions_Private()
449 PetscCall(PetscStrlcat(mtypes, "_", sizeof(mtypes))); in MatProductSetFromOptions_Private()
450 PetscCall(PetscStrlcat(mtypes, ((PetscObject)B)->type_name, sizeof(mtypes))); in MatProductSetFromOptions_Private()
452 PetscCall(PetscStrlcat(mtypes, "_", sizeof(mtypes))); in MatProductSetFromOptions_Private()
453 PetscCall(PetscStrlcat(mtypes, ((PetscObject)C)->type_name, sizeof(mtypes))); in MatProductSetFromOptions_Private()
455 PetscCall(PetscStrlcat(mtypes, "_C", sizeof(mtypes))); in MatProductSetFromOptions_Private()
461 PetscCall(PetscObjectQueryFunction((PetscObject)A, mtypes, &f)); in MatProductSetFromOptions_Private()
462 PetscCall(PetscInfo(mat, " querying %s from A? %p\n", mtypes, f)); in MatProductSetFromOptions_Private()
[all …]
/petsc/src/vec/is/sf/interface/
H A Dsftype.c34 PetscMPIInt mints, maddrs, mtypes; in MPIPetsc_Type_get_envelope() local
37 PetscCallMPI(MPI_Type_get_envelope(datatype, &mints, &maddrs, &mtypes, combiner)); in MPIPetsc_Type_get_envelope()
41 *ntypes = mtypes; in MPIPetsc_Type_get_envelope()
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dlibpetsc4py.pyx1276mtypes = {MATPRODUCT_AB : 'AB', MATPRODUCT_ABt : 'ABt', MATPRODUCT_AtB : 'AtB', MATPRODUCT_PtAP : …
1295 productNumeric(PyC if C == pM else PyB if B == pM else PyA, Mat_(mat), mtypes[mtype], *mats)
1312mtypes = {MATPRODUCT_AB : 'AB', MATPRODUCT_ABt : 'ABt', MATPRODUCT_AtB : 'AtB', MATPRODUCT_PtAP : …
1336 productSymbolic(PyC if C == pM else PyB if B == pM else PyA, Mat_(mat), mtypes[mtype], *mats)
1364mtypes = {MATPRODUCT_AB : 'AB', MATPRODUCT_ABt : 'ABt', MATPRODUCT_AtB : 'AtB', MATPRODUCT_PtAP : …
1387 … PyMat(pM).productSetFromOptions(PyC if C == pM else PyB if B == pM else PyA, mtypes[mtype], *mats)