Searched refs:VecTDot (Results 1 – 13 of 13) sorted by relevance
| /petsc/src/vec/vec/tests/ |
| H A D | ex43.c | 41 PetscCall(VecTDot(t, V[j], &tval_dot[j])); in main()
|
| /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()
|
| /petsc/src/tao/constrained/impls/admm/ |
| H A D | admm.c | 187 PetscCall(VecTDot(am->residual, am->y, &temp)); in SubObjGradUpdate() 188 PetscCall(VecTDot(am->residual, am->residual, &temp2)); in SubObjGradUpdate() 215 PetscCall(VecTDot(am->residual, am->y, &temp)); in RegObjGradUpdate() 216 PetscCall(VecTDot(am->residual, am->residual, &temp2)); in RegObjGradUpdate()
|
| /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() 268 #define VecXDot(x, y, a) (pipefcg->type == KSP_CG_HERMITIAN ? VecDot(x, y, a) : VecTDot(x, y, a)) in KSPSolve_PIPEFCG()
|
| /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()
|
| /petsc/src/vec/vec/utils/ |
| H A D | comb.c | 432 PetscCall(VecTDot(x, y, result)); in VecTDotBegin()
|
| /petsc/src/vec/vec/impls/nest/ |
| H A D | vecnest.c | 109 PetscCall(VecTDot(bx->v[i], by->v[i], &x_dot_y)); in VecTDot_Nest() 293 for (PetscInt j = 0; j < nv; j++) PetscCall(VecTDot(x, y[j], &val[j])); in VecMTDot_Nest()
|
| /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))
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | petscvec.pxi | 111 PetscErrorCode VecTDot(PetscVec, PetscVec, PetscScalar*)
|
| H A D | Vec.pyx | 1861 tDotBegin, tDotEnd, dot, petsc.VecTDot 1865 CHKERR(VecTDot(self.vec, vec.vec, &sval))
|
| /petsc/include/ |
| H A D | petscvec.h | 155 PETSC_EXTERN PetscErrorCode VecTDot(Vec, Vec, PetscScalar *);
|
| /petsc/src/vec/vec/interface/ |
| H A D | rvector.c | 421 PetscErrorCode VecTDot(Vec x, Vec y, PetscScalar *val) in VecTDot() function
|
| /petsc/doc/manual/ |
| H A D | vec.md | 670 …| ``VecTDot(Vec x, Vec y, PetscScalar *r);`` | :math:`r = x'*y` …
|