Home
last modified time | relevance | path

Searched refs:func (Results 1 – 9 of 9) sorted by relevance

/libCEED/doc/sphinx/source/
H A Dreleasenotes.md54 - Added {c:func}`CeedOperatorGetFieldByName` to access a specific `CeedOperatorField` by its name.
56 - Update {c:func}`CeedOperatorLinearAssembleDiagonal` to provide default implementation that suppor…
58 - Added {c:func}`CeedBasisApplyAtPoints` for evaluation of values and derivatives at arbitrary poin…
59 - Added support for non-tensor $H(\text{curl})$ finite element spaces with {c:func}`CeedBasisCreate…
60 - Added {c:func}`CeedElemRestrictionCreateCurlOriented`, similar to {c:func}`CeedElemRestrictionCre…
61 - Added {c:func}`CeedOperatorLinearAssemblePointBlockDiagonalSymbolic` to create COO mapping for ma…
90 - Added {c:func}`CeedOperatorSetName` for more readable {c:func}`CeedOperatorView` output.
91 - Added {c:func}`CeedBasisCreateProjection` to facilitate interpolation between nodes for separate …
92 - Rename and move {c:func}`CeedCompositeOperatorGetNumSub` and {c:func}`CeedCompositeOperatorGetSub…
110 - Fix `CeedElemRestriction` sizing for {c:func}`CeedOperatorAssemblePointBlockDiagonal`.
[all …]
H A DlibCEEDdev.md13 …er creates the backend implementation of the specific method and calls {c:func}`CeedSetBackendFunc…
27 1. Delegation - Developers may use {c:func}`CeedSetDelegate` to set a general delegate {ref}`Ceed` …
31 2. Object delegation - Developers may use {c:func}`CeedSetObjectDelegate` to set a delegate {ref}`…
35func}`CeedSetOperatorFallbackCeed` to set a {ref}`Ceed` object to provide any unimplemented {ref}`…
103 …- If possible, backends should use {c:func}`CeedElemRestrictionSetELayout()` to use the `t2**` tes…
121 If the user calls {c:func}`CeedVectorTakeArray` on the only memory location that contains valid dat…
122 …the user must set valid data by calling {c:func}`CeedVectorSetValue`, {c:func}`CeedVectorSetArray`…
129 …o borrowed memory is set with {c:func}`CeedVectorSetArray` with `copy_mode = CEED_USE_POINTER` and…
130 …st call {c:func}`CeedVectorSetArray` with `copy_mode = CEED_USE_POINTER` for the appropriate preci…
131 - {c:func}`CeedVectorTakeArray` cannot be called on a vector in a *invalid state*.
[all …]
H A Dgpu.md8 The filepath to the user source code is passed in {c:func}`CeedQFunctionCreateInterior` as the `sou…
10 The filepath may also be a relative path with respect to a root directory set with {c:func}`CeedAdd…
28 …onUser` have read-write access for `CeedQFunctionContext` data, unless {c:func}`CeedQFunctionSetCo…
H A DlibCEEDapi.md217 …iable of type {ref}`CeedOperator` and its action is accessible through {c:func}`CeedOperatorApply(…
248 …nto the {ref}`CeedQFunction` variables `qf_setup` and `qf_mass` in the {c:func}`CeedQFunctionCreat…
288 …the unknown field, `basis_u`, are defined in the calls to the function {c:func}`CeedBasisCreateTen…
298 …luate values and gradients at quadrature points in one dimension using {c:func}`CeedBasisCreateTen…
301 …_restr_x`, and the unknown field, `elem_restr_u`, are specified in the {c:func}`CeedElemRestrictio…
319 …m{P}$), the element restriction $\bm{\mathcal{E}}$ is the identity and {c:func}`CeedElemRestrictio…
327 …ctor corresponding to that field will be provided to the operator when {c:func}`CeedOperatorApply(…
332 Note that the corresponding {c:func}`CeedOperatorApply()` has no basis evaluation on the output, as…
352 The action of the operator is then represented by operator `op_mass` and its {c:func}`CeedOperatorA…
372 A number of function calls in the interface, such as {c:func}`CeedOperatorApply()`, are intended to…
H A Dprecision.md25 … The {c:func}`scalar_type()` function has been added to the {code}`Ceed` class for convenience.
/libCEED/julia/LibCEED.jl/src/
H A DCeed.jl4 func::String field
11 println(io, "libCEED error code ", e.ecode, " in ", e.func)
35 func = unsafe_string(c_func)
37 throw(CeedError(fname, lineno, func, ecode, message))
/libCEED/interface/
H A Dceed.c1711 int CeedErrorImpl(Ceed ceed, const char *filename, int lineno, const char *func, int ecode, const c… in CeedErrorImpl() argument
1717 ret_val = ceed->Error(ceed, filename, lineno, func, ecode, format, &args); in CeedErrorImpl()
1723 ret_val = CeedErrorReturn(ceed, filename, lineno, func, ecode, format, &args); in CeedErrorImpl()
1726 ret_val = CeedErrorAbort(ceed, filename, lineno, func, ecode, format, &args); in CeedErrorImpl()
1744 int CeedErrorReturn(Ceed ceed, const char *filename, int line_no, const char *func, int err_code, c… in CeedErrorReturn() argument
1759 int CeedErrorStore(Ceed ceed, const char *filename, int line_no, const char *func, int err_code, co… in CeedErrorStore() argument
1760 …if (ceed->parent) return CeedErrorStore(ceed->parent, filename, line_no, func, err_code, format, a… in CeedErrorStore()
1763 …t len = snprintf(ceed->err_msg, CEED_MAX_RESOURCE_LEN, "%s:%d in %s(): ", filename, line_no, func); in CeedErrorStore()
1780 int CeedErrorAbort(Ceed ceed, const char *filename, int line_no, const char *func, int err_code, co… in CeedErrorAbort() argument
1781 fprintf(stderr, "%s:%d in %s(): ", filename, line_no, func); in CeedErrorAbort()
[all …]
/libCEED/include/ceed/
H A Dceed.h126 CEED_EXTERN int CeedErrorImpl(Ceed ceed, const char *filename, int lineno, const char *func, int ec…
143 CEED_EXTERN int CeedErrorReturn(Ceed ceed, const char *filename, int line_no, const char *func, int…
144 CEED_EXTERN int CeedErrorStore(Ceed ceed, const char *filename, int line_no, const char *func, int …
145 CEED_EXTERN int CeedErrorAbort(Ceed ceed, const char *filename, int line_no, const char *func, int …
146 CEED_EXTERN int CeedErrorExit(Ceed ceed, const char *filename, int line_no, const char *func, int e…
/libCEED/
H A DDoxyfile378 # definitions whose arguments contain STL classes (e.g. func(std::string);
379 # versus func(std::string) {}). This also make the inheritance and collaboration