Home
last modified time | relevance | path

Searched refs:x_conj (Results 1 – 2 of 2) sorted by relevance

/petsc/src/ksp/ksp/utils/lmvm/
H A Dlmvmimpl.c228 Vec x_conj; in MatSolveTranspose_LMVM() local
229 PetscCall(VecDuplicate(x, &x_conj)); in MatSolveTranspose_LMVM()
230 PetscCall(VecCopy(x, x_conj)); in MatSolveTranspose_LMVM()
231 PetscCall(VecConjugate(x_conj)); in MatSolveTranspose_LMVM()
232 PetscCall(MatSolveHermitianTranspose_LMVM(B, x_conj, y)); in MatSolveTranspose_LMVM()
233 PetscCall(VecDestroy(&x_conj)); in MatSolveTranspose_LMVM()
/petsc/src/ksp/ksp/utils/lmvm/tests/
H A Dex1.c7 Vec x_conj = x; in MatSolveHermitianTranspose() local
11 PetscCall(VecDuplicate(x, &x_conj)); in MatSolveHermitianTranspose()
12 PetscCall(VecCopy(x, x_conj)); in MatSolveHermitianTranspose()
13 PetscCall(VecConjugate(x_conj)); in MatSolveHermitianTranspose()
15 PetscCall(MatSolveTranspose(B, x_conj, y)); in MatSolveHermitianTranspose()
17 PetscCall(VecDestroy(&x_conj)); in MatSolveHermitianTranspose()