Home
last modified time | relevance | path

Searched refs:VecCreateLocalVector (Results 1 – 12 of 12) sorted by relevance

/petsc/src/vec/vec/tests/
H A Dex65.c34 PetscCall(VecCreateLocalVector(global, &local)); in main()
H A Dex37.c167 PetscCall(VecCreateLocalVector(X, &lX)); in test_view()
/petsc/src/ksp/ksp/utils/lmvm/
H A Dlmproducts.c27 PetscCall(VecCreateLocalVector((*dots)->diagonal_global, &(*dots)->diagonal_local)); in LMProductsCreate()
388 if (!dots->rhs_local) PetscCall(VecCreateLocalVector(b, &dots->rhs_local)); in LMProductsSolve()
/petsc/src/ksp/ksp/guess/impls/pod/
H A Dpod.c99 PetscCall(VecCreateLocalVector(v[0], &vseq)); in KSPGuessSetUp_POD()
108 PetscCall(VecCreateLocalVector(v[0], &vseq)); in KSPGuessSetUp_POD()
/petsc/src/ksp/ksp/utils/lmvm/dense/
H A Ddenseqn.c953 if (!lbfgs->rwork2_local) PetscCall(VecCreateLocalVector(lbfgs->rwork2, &lbfgs->rwork2_local)); in MatMult_LMVMDBFGS()
954 if (!lbfgs->rwork3_local) PetscCall(VecCreateLocalVector(lbfgs->rwork3, &lbfgs->rwork3_local)); in MatMult_LMVMDBFGS()
1318 if (!ldfp->rwork2_local) PetscCall(VecCreateLocalVector(ldfp->rwork2, &ldfp->rwork2_local)); in MatSolve_LMVMDDFP()
1319 if (!ldfp->rwork3_local) PetscCall(VecCreateLocalVector(ldfp->rwork3, &ldfp->rwork3_local)); in MatSolve_LMVMDDFP()
/petsc/doc/changes/
H A D318.md171 - Add `VecCreateLocalVector()` to be used for calls involving `Vec{Get|Restore}LocalVector()`
/petsc/src/binding/petsc4py/src/petsc4py/PETSc/
H A Dpetscvec.pxi65 PetscErrorCode VecCreateLocalVector(PetscVec, PetscVec*)
H A DVec.pyx1216 getLocalVector, petsc.VecCreateLocalVector
1220 CHKERR(VecCreateLocalVector(self.vec, &lvec.vec))
/petsc/include/
H A Dpetscvec.h573 PETSC_EXTERN PetscErrorCode VecCreateLocalVector(Vec, Vec *);
/petsc/src/mat/impls/shell/
H A Dshell.c1186 PetscCall(VecCreateLocalVector(shell->left, &left)); in MatGetDiagonalBlock_Shell()
1190 PetscCall(VecCreateLocalVector(shell->right, &right)); in MatGetDiagonalBlock_Shell()
/petsc/src/vec/vec/impls/nest/
H A Dvecnest.c620 for (i = 0; i < bv->nb; i++) PetscCall(VecCreateLocalVector(bv->v[i], &ww[i])); in VecCreateLocalVector_Nest()
/petsc/src/vec/vec/interface/
H A Drvector.c1812 PetscErrorCode VecCreateLocalVector(Vec v, Vec *w) in VecCreateLocalVector() function