| /petsc/src/binding/petsc4py/test/ |
| H A D | test_mat_py.py | 354 x, y = self.A.createVecs() 359 x, y = self.A.createVecs() 374 x, y = self.A.createVecs() 445 x, y = self.A.createVecs() 452 x, y = self.A.createVecs() 463 x, y = self.A.createVecs() 575 x, y = self.A.createVecs() 581 x, y = self.A.createVecs() 591 x, y = self.A.createVecs() 616 x, y = self.A.createVecs() [all …]
|
| H A D | test_ts.py | 96 u, f = J.createVecs() 143 u, f = J.createVecs() 190 u, f = J.createVecs() 234 u, f = J.createVecs()
|
| H A D | test_mat_fact.py | 17 x, b = A.createVecs() 30 x, b = A.createVecs()
|
| H A D | test_ts_py.py | 103 u, f = J.createVecs() 145 u, f = J.createVecs()
|
| H A D | test_mat_dense.py | 119 x, y = A.createVecs() 120 xt, yt = AT.createVecs()
|
| H A D | test_ksp.py | 116 x, b = A.createVecs()
|
| H A D | test_pc_py.py | 171 x, y = A.createVecs()
|
| H A D | test_mat_aij.py | 363 x, y = A.createVecs() 364 xt, yt = AT.createVecs()
|
| /petsc/src/binding/petsc4py/demo/legacy/taosolve/ |
| H A D | chwirut.py | 30 def createVecs(self): member in Chwirut 64 x, f = user.createVecs()
|
| /petsc/src/binding/petsc4py/demo/legacy/kspsolve/ |
| H A D | petsc-ksp.py | 9 x, b = A.createVecs()
|
| H A D | test_mat_cg.py | 17 x, b = A.createVecs()
|
| /petsc/src/binding/petsc4py/demo/legacy/poisson3d/ |
| H A D | poisson3d.py | 24 x, b = A.createVecs()
|
| /petsc/src/binding/petsc4py/demo/hpddm/ |
| H A D | hpddm.py | 60 b, x = A.createVecs()
|
| H A D | saddle_point.py | 126 b, x = S.createVecs()
|
| /petsc/src/binding/petsc4py/demo/legacy/binary-io/ |
| H A D | matvecio.py | 27 x, y = A.createVecs()
|
| /petsc/src/binding/petsc4py/demo/poisson2d/ |
| H A D | poisson2d.py | 150 x, b = A.createVecs()
|
| /petsc/src/binding/petsc4py/demo/python_types/ |
| H A D | matpython_protocol.py | 50 def createVecs(self, A: Mat) -> tuple[Vec, Vec]: member in MatPythonProtocol
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | libpetsc4py.pyx | 636 83 : 'getVecs', # FIXME -> createVecs 958 cdef createVecs = PyMat(mat).createVecs 959 if createVecs is None: 967 u, v = createVecs(Mat_(mat))
|
| H A D | Mat.pyx | 650 Vector type used when creating vectors with `createVecs`. 683 Vector type used when creating vectors with `createVecs`. 3517 def createVecs( member in Mat 3563 createVecs, createVecLeft, petsc.MatCreateVecs 3577 createVecs, createVecRight, petsc.MatCreateVecs 3584 getVecs = createVecs
|