| /libCEED/python/ |
| H A D | ceed_qfunction.py | 111 def add_input(self, fieldname, size, emode): argument 125 self._pointer[0], fieldnameAscii, size, emode) 128 def add_output(self, fieldname, size, emode): argument 142 self._pointer[0], fieldnameAscii, size, emode)
|
| H A D | ceed_basis.py | 42 def apply(self, nelem, emode, u, v, tmode=NOTRANSPOSE): argument 57 err_code = lib.CeedBasisApply(self._pointer[0], nelem, tmode, emode, 441 def apply(self, nelem, emode, u, v): argument 453 self._basis.apply(nelem, emode, u, v, tmode=TRANSPOSE)
|
| /libCEED/rust/libceed/src/ |
| H A D | qfunction.rs | 737 emode: crate::EvalMode, in input() 743 let (size, emode) = ( in input() 745 emode as bind_ceed::CeedEvalMode, in input() 748 bind_ceed::CeedQFunctionAddInput(self.qf_core.ptr, name_c.as_ptr(), size, emode) in input() 786 emode: crate::EvalMode, in output() 792 let (size, emode) = ( in output() 794 emode as bind_ceed::CeedEvalMode, in output() 797 bind_ceed::CeedQFunctionAddOutput(self.qf_core.ptr, name_c.as_ptr(), size, emode) in output()
|
| H A D | basis.rs | 406 emode: EvalMode, in apply() 410 let (nelem, tmode, emode) = ( in apply() 413 emode as bind_ceed::CeedEvalMode, in apply() 416 bind_ceed::CeedBasisApply(self.ptr, nelem, tmode, emode, u.ptr, v.ptr) in apply()
|
| /libCEED/julia/LibCEED.jl/docs/src/ |
| H A D | Basis.md | 19 apply!(b::Basis, nelem, tmode::TransposeMode, emode::EvalMode, u::LibCEED.AbstractCeedVector, v::Li… 20 apply(b::Basis, u::AbstractVector; nelem=1, tmode=NOTRANSPOSE, emode=EVAL_INTERP)
|
| /libCEED/julia/LibCEED.jl/src/ |
| H A D | QFunction.jl | 93 function add_input!(qf::AbstractQFunction, name::AbstractString, size, emode) argument 94 C.CeedQFunctionAddInput(qf[], name, size, emode) 97 function add_output!(qf::AbstractQFunction, name::AbstractString, size, emode) argument 98 C.CeedQFunctionAddOutput(qf[], name, size, emode)
|
| H A D | Basis.jl | 290 …apply!(b::Basis, nelem, tmode::TransposeMode, emode::EvalMode, u::AbstractCeedVector, v::AbstractC… 301 Set the [`EvalMode`](@ref) `emode` to: 311 emode::EvalMode, 315 C.CeedBasisApply(b[], nelem, tmode, emode, u[], v[]) 319 apply(b::Basis, u::AbstractVector; nelem=1, tmode=NOTRANSPOSE, emode=EVAL_INTERP) 322 tmode::TransposeMode, emode::EvalMode, u::AbstractCeedVector, v::AbstractCeedVector)), but 327 function apply(b::Basis, u::AbstractVector; nelem=1, tmode=NOTRANSPOSE, emode=EVAL_INTERP) argument 335 C.CeedBasisGetNumQuadratureComponents(b[], emode, qcomp) 340 apply!(b, nelem, tmode, emode, u_vec, v_vec)
|
| /libCEED/doc/sphinx/source/ |
| H A D | libCEEDdev.md | 111 …- When the {ref}`CeedQFunction` field has `emode` `CEED_EVAL_GRAD`, data for quadrature point `i`,… 112 …e special care to ensure that the data in the Q-vectors for a field with `emode` `CEED_EVAL_NONE` …
|
| /libCEED/julia/LibCEED.jl/test/ |
| H A D | runtests.jl | 193 vd = apply(b3, v; emode=EVAL_GRAD)
|