Home
last modified time | relevance | path

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

/petsc/src/binding/petsc4py/demo/python_types/
H A Dmatpython_protocol.py122 def productNumeric( member in MatPythonProtocol
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dlibpetsc4py.pyx1293 cdef productNumeric = PyMat(pM).productNumeric
1294 if productNumeric is None: return UNSUPPORTED(b"productNumeric")
1295 productNumeric(PyC if C == pM else PyB if B == pM else PyA, Mat_(mat), mtypes[mtype], *mats)
/petsc/src/binding/petsc4py/test/
H A Dtest_mat_py.py167 def productNumeric(self, mat, product, producttype, A, B, C): member in ScaledIdentity