Home
last modified time | relevance | path

Searched refs:basis_ptr (Results 1 – 6 of 6) sorted by relevance

/libCEED/include/ceed/jit-source/cuda/
H A Dcuda-ref-operator-assemble-diagonal.h21 static __device__ __inline__ void GetBasisPointer(const CeedScalar **basis_ptr, CeedEvalMode eval_m… in GetBasisPointer() argument
25 *basis_ptr = identity; in GetBasisPointer()
28 *basis_ptr = interp; in GetBasisPointer()
31 *basis_ptr = grad; in GetBasisPointer()
34 *basis_ptr = div; in GetBasisPointer()
37 *basis_ptr = curl; in GetBasisPointer()
/libCEED/include/ceed/jit-source/hip/
H A Dhip-ref-operator-assemble-diagonal.h21 static __device__ __inline__ void GetBasisPointer(const CeedScalar **basis_ptr, CeedEvalMode eval_m… in GetBasisPointer() argument
25 *basis_ptr = identity; in GetBasisPointer()
28 *basis_ptr = interp; in GetBasisPointer()
31 *basis_ptr = grad; in GetBasisPointer()
34 *basis_ptr = div; in GetBasisPointer()
37 *basis_ptr = curl; in GetBasisPointer()
/libCEED/rust/libceed/src/
H A Doperator.rs54 let mut basis_ptr = std::ptr::null_mut(); in from_raw() localVariable
55 ceed.check_error(bind_ceed::CeedOperatorFieldGetBasis(ptr, &mut basis_ptr))?; in from_raw()
56 crate::Basis::from_raw(basis_ptr)? in from_raw()
/libCEED/backends/sycl-ref/
H A Dceed-sycl-ref-operator.sycl.cpp26 void CeedOperatorGetBasisPointer_Sycl(const CeedScalar **basis_ptr, CeedEvalMode eval_mode, const C… in CeedOperatorGetBasisPointer_Sycl() argument
30 *basis_ptr = identity; in CeedOperatorGetBasisPointer_Sycl()
33 *basis_ptr = interp; in CeedOperatorGetBasisPointer_Sycl()
36 *basis_ptr = grad; in CeedOperatorGetBasisPointer_Sycl()
/libCEED/interface/
H A Dceed-preconditioning.c1327 …eedBasis basis, CeedEvalMode eval_mode, const CeedScalar *identity, const CeedScalar **basis_ptr) { in CeedOperatorGetBasisPointer() argument
1330 *basis_ptr = identity; in CeedOperatorGetBasisPointer()
1333 CeedCall(CeedBasisGetInterp(basis, basis_ptr)); in CeedOperatorGetBasisPointer()
1336 CeedCall(CeedBasisGetGrad(basis, basis_ptr)); in CeedOperatorGetBasisPointer()
1339 CeedCall(CeedBasisGetDiv(basis, basis_ptr)); in CeedOperatorGetBasisPointer()
1342 CeedCall(CeedBasisGetCurl(basis, basis_ptr)); in CeedOperatorGetBasisPointer()
1347 assert(*basis_ptr != NULL); in CeedOperatorGetBasisPointer()
/libCEED/include/ceed/
H A Dbackend.h428 …CeedBasis basis, CeedEvalMode eval_mode, const CeedScalar *identity, const CeedScalar **basis_ptr);