Searched refs:KSP_CG_HERMITIAN (Results 1 – 6 of 6) sorted by relevance
| /petsc/src/ksp/ksp/impls/fcg/pipefcg/ |
| H A D | pipefcg.c | 94 #define VecXDot(x, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecDot(x, y, a) : VecTDot(x,… in KSPSolve_PIPEFCG_cycle() 95 #define VecXDotBegin(x, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecDotBegin(x, y, a) : VecTD… in KSPSolve_PIPEFCG_cycle() 96 #define VecXDotEnd(x, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecDotEnd(x, y, a) : VecTDot… in KSPSolve_PIPEFCG_cycle() 97 #define VecMXDot(x, n, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecMDot(x, n, y, a) : VecMTD… in KSPSolve_PIPEFCG_cycle() 98 #define VecMXDotBegin(x, n, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecMDotBegin(x, n, y, a) : V… in KSPSolve_PIPEFCG_cycle() 99 #define VecMXDotEnd(x, n, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecMDotEnd(x, n, y, a) : Vec… in KSPSolve_PIPEFCG_cycle() 268 #define VecXDot(x, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecDot(x, y, a) : VecTDot(x, y, a)) in KSPSolve_PIPEFCG() 605 pipefcg->type = !PetscDefined(USE_COMPLEX) ? KSP_CG_SYMMETRIC : KSP_CG_HERMITIAN; in KSPCreate_PIPEFCG()
|
| /petsc/src/ksp/ksp/impls/cg/cgne/ |
| H A D | cgne.c | 66 #define VecXDot(x, y, a) (cg->type == KSP_CG_HERMITIAN ? VecDot(x, y, a) : VecTDot(x, y, a)) in KSPSolve_CGNE() 215 cg->type = !PetscDefined(USE_COMPLEX) ? KSP_CG_SYMMETRIC : KSP_CG_HERMITIAN; in KSPCreate_CGNE()
|
| /petsc/src/ksp/ksp/impls/fcg/ |
| H A D | fcg.c | 85 #define VecXDot(x, y, a) (fcg->type == KSP_CG_HERMITIAN ? VecDot(x, y, a) : VecTDot(x, y, a)) in KSPSolve_FCG() 86 #define VecXMDot(a, b, c, d) (fcg->type == KSP_CG_HERMITIAN ? VecMDot(a, b, c, d) : VecMTDot(a, b, … in KSPSolve_FCG() 537 fcg->type = !PetscDefined(USE_COMPLEX) ? KSP_CG_SYMMETRIC : KSP_CG_HERMITIAN; in KSPCreate_FCG()
|
| /petsc/src/ksp/ksp/impls/cg/ |
| H A D | cg.c | 107 #define VecXDot(x, y, a) (cg->type == KSP_CG_HERMITIAN ? VecDot(x, y, a) : VecTDot(x, y, a)) 697 cg->type = !PetscDefined(USE_COMPLEX) ? KSP_CG_SYMMETRIC : KSP_CG_HERMITIAN; in KSPCreate_CG()
|
| /petsc/src/ksp/ksp/utils/lmvm/tests/ |
| H A D | ex1.c | 549 PetscCall(KSPCGSetType(ksp, KSP_CG_HERMITIAN)); in main()
|
| /petsc/include/ |
| H A D | petscksp.h | 1049 KSP_CG_HERMITIAN = 1 enumerator
|