Home
last modified time | relevance | path

Searched defs:b (Results 1 – 25 of 49) sorted by relevance

12

/libCEED/include/ceed/
H A Ddeprecated.h22 static inline int CeedCompositeOperatorCreate(Ceed a, CeedOperator *b) { return CeedOperatorCreateC… in CeedCompositeOperatorCreate()
24 static inline int CeedCompositeOperatorAddSub(CeedOperator a, CeedOperator b) { return CeedOperator… in CeedCompositeOperatorAddSub()
26 static inline int CeedCompositeOperatorGetNumSub(CeedOperator a, CeedInt *b) { return CeedOperatorC… in CeedCompositeOperatorGetNumSub()
28 static inline int CeedCompositeOperatorGetSubList(CeedOperator a, CeedOperator **b) { return CeedOp… in CeedCompositeOperatorGetSubList()
30 static inline int CeedCompositeOperatorGetSubByName(CeedOperator a, const char *b, CeedOperator *c)… in CeedCompositeOperatorGetSubByName()
34 static inline int CeedCompositeOperatorGetMultiplicity(CeedOperator a, CeedInt b, CeedInt *c, CeedV… in CeedCompositeOperatorGetMultiplicity()
H A Dceed.h547 static inline CeedInt CeedIntMin(CeedInt a, CeedInt b) { return a < b ? a : b; } in CeedIntMin()
559 static inline CeedInt CeedIntMax(CeedInt a, CeedInt b) { return a > b ? a : b; } in CeedIntMax()
/libCEED/backends/avx/
H A Dceed-avx-tensor.c21 #define fmadd(c, a, b) (c) = _mm256_fmadd_pd((a), (b), (c)) argument
23 #define fmadd(c, a, b) (c) += _mm256_mul_pd((a), (b)) argument
33 #define fmadd(c, a, b) (c) = _mm_fmadd_ps((a), (b), (c)) argument
35 #define fmadd(c, a, b) (c) += _mm_mul_ps((a), (b)) argument
60 for (CeedInt b = 0; b < B; b++) { in CeedTensorContract_Avx_Blocked() local
83 for (CeedInt b = 0; b < B; b++) { in CeedTensorContract_Avx_Blocked() local
124 for (CeedInt b = 0; b < B; b++) { in CeedTensorContract_Avx_Remainder() local
140 for (CeedInt b = 0; b < B; b++) { in CeedTensorContract_Avx_Remainder() local
171 for (CeedInt b = 0; b < B; b++) { in CeedTensorContract_Avx_Single() local
195 for (CeedInt b = 0; b < B; b++) { in CeedTensorContract_Avx_Single() local
[all …]
/libCEED/rust/libceed/src/
H A Doperator.rs544 qf: impl Into<QFunctionOpt<'b>>, in create()
545 dqf: impl Into<QFunctionOpt<'b>>, in create()
546 dqfT: impl Into<QFunctionOpt<'b>>, in create()
806 r: impl Into<ElemRestrictionOpt<'b>>, in field()
807 b: impl Into<BasisOpt<'b>>, in field() argument
808 v: impl Into<VectorOpt<'b>>, in field()
1713 ) -> crate::Result<(Operator<'b>, Operator<'b>, Operator<'b>)> { in create_multigrid_level()
1902 ) -> crate::Result<(Operator<'b>, Operator<'b>, Operator<'b>)> { in create_multigrid_level_tensor_H1()
2092 ) -> crate::Result<(Operator<'b>, Operator<'b>, Operator<'b>)> { in create_multigrid_level_H1()
H A Delem_restriction.rs351 pub fn create_lvector<'b>(&self) -> crate::Result<Vector<'b>> { in create_lvector()
380 pub fn create_evector<'b>(&self) -> crate::Result<Vector<'b>> { in create_evector()
410 pub fn create_vectors<'b, 'c>(&self) -> crate::Result<(Vector<'b>, Vector<'c>)> { in create_vectors()
/libCEED/tests/
H A Dt300-basis-f.f907 integer b variable
H A Dt306-basis-f.f907 integer b variable
H A Dt111-vector.c14 CeedScalar *a, b[len]; in main() local
H A Dt110-vector.c12 CeedScalar *a, *b; in main() local
H A Dt113-vector.c13 CeedScalar *b; in main() local
H A Dt102-vector.c20 const CeedScalar *a, *b; in main() local
H A Dt115-vector.c13 const CeedScalar *b; in main() local
H A Dt102-vector-f.f909 real*8 b(10) variable
H A Dt114-vector.c13 const CeedScalar *b; in main() local
H A Dt100-vector-f.f9010 real*8 b(10) variable
H A Dt104-vector-f.f909 real*8 b(10) variable
H A Dt119-vector-f.f9010 real*8 b(10) variable
H A Dt101-vector-f.f909 real*8 b(10) variable
H A Dt109-vector-f.f909 real*8 b(10) variable
H A Dt105-vector-f.f909 real*8 b(10) variable
H A Dt302-basis-f.f907 integer b,p variable
H A Dt106-vector-f.f909 real*8 b(10) variable
/libCEED/include/
H A Dceed-fortran-name.h21 #define TOKEN_PASTE_(a, b) a##b argument
22 #define TOKEN_PASTE(a, b) TOKEN_PASTE_(a, b) argument
/libCEED/include/ceed/jit-source/cuda/
H A Dcuda-ref-basis-tensor-at-points.h90 …for (CeedInt b = 0; b < P; b++) v_k += s_chebyshev_interp_1d[j * BASIS_P_1D + b] * in[(a * P + b) … in InterpAtPoints() local
115 for (CeedInt b = 0; b < Q; b++) v_k += chebyshev_x[b] * in[(a * Q + b) * post + c]; in InterpAtPoints() local
209 …for (CeedInt b = 0; b < Q; b++) v_k += s_chebyshev_interp_1d[j + b * BASIS_P_1D] * in[(a * Q + b) … in InterpTransposeAtPoints() local
270 …for (CeedInt b = 0; b < P; b++) v_k += s_chebyshev_interp_1d[j * BASIS_P_1D + b] * in[(a * P + b) … in GradAtPoints() local
299 for (CeedInt b = 0; b < Q; b++) v_k += chebyshev_x[b] * in[(a * Q + b) * post + c]; in GradAtPoints() local
400 …for (CeedInt b = 0; b < Q; b++) v_k += s_chebyshev_interp_1d[j + b * BASIS_P_1D] * in[(a * Q + b) … in GradTransposeAtPoints() local
/libCEED/include/ceed/jit-source/hip/
H A Dhip-ref-basis-tensor-at-points.h90 …for (CeedInt b = 0; b < P; b++) v_k += s_chebyshev_interp_1d[j * BASIS_P_1D + b] * in[(a * P + b) … in InterpAtPoints() local
115 for (CeedInt b = 0; b < Q; b++) v_k += chebyshev_x[b] * in[(a * Q + b) * post + c]; in InterpAtPoints() local
209 …for (CeedInt b = 0; b < Q; b++) v_k += s_chebyshev_interp_1d[j + b * BASIS_P_1D] * in[(a * Q + b) … in InterpTransposeAtPoints() local
270 …for (CeedInt b = 0; b < P; b++) v_k += s_chebyshev_interp_1d[j * BASIS_P_1D + b] * in[(a * P + b) … in GradAtPoints() local
299 for (CeedInt b = 0; b < Q; b++) v_k += chebyshev_x[b] * in[(a * Q + b) * post + c]; in GradAtPoints() local
400 …for (CeedInt b = 0; b < Q; b++) v_k += s_chebyshev_interp_1d[j + b * BASIS_P_1D] * in[(a * Q + b) … in GradTransposeAtPoints() local

12