Home
last modified time | relevance | path

Searched refs:parent (Results 1 – 13 of 13) sorted by relevance

/libCEED/interface/
H A Dceed.c552 int CeedGetParent(Ceed ceed, Ceed *parent) { in CeedGetParent() argument
553 if (ceed->parent) { in CeedGetParent()
554 CeedCall(CeedGetParent(ceed->parent, parent)); in CeedGetParent()
557 *parent = NULL; in CeedGetParent()
558 CeedCall(CeedReferenceCopy(ceed, parent)); in CeedGetParent()
593 delegate->parent = ceed; in CeedSetDelegate()
654 delegate->parent = ceed; in CeedSetObjectDelegate()
694 fallback_ceed->parent = ceed; in CeedSetOperatorFallbackCeed()
1697 if (ceed->parent) return CeedErrorFormat(ceed->parent, format, args); in CeedErrorFormat()
1760 …if (ceed->parent) return CeedErrorStore(ceed->parent, filename, line_no, func, err_code, format, a… in CeedErrorStore()
[all …]
H A Dceed-preconditioning.c2058 int CeedOperatorGetFallbackParent(CeedOperator op, CeedOperator *parent) { in CeedOperatorGetFallbackParent() argument
2059 *parent = op->op_fallback_parent ? op->op_fallback_parent : NULL; in CeedOperatorGetFallbackParent()
2073 int CeedOperatorGetFallbackParentCeed(CeedOperator op, Ceed *parent) { in CeedOperatorGetFallbackParentCeed() argument
2074 *parent = NULL; in CeedOperatorGetFallbackParentCeed()
2075 …llback_parent) CeedCall(CeedReferenceCopy(CeedOperatorReturnCeed(op->op_fallback_parent), parent)); in CeedOperatorGetFallbackParentCeed()
2076 else CeedCall(CeedReferenceCopy(CeedOperatorReturnCeed(op), parent)); in CeedOperatorGetFallbackParentCeed()
/libCEED/examples/fluids/
H A Dpytorch_pkgconfig.py24 variables['prefix'] = Path(C.library_paths()[0]).parent.as_posix()
H A Dindex.md340 We'll refer to this mesh as the *parent grid*, as for every "parent" point in the parent grid, ther…
341 …ine a function space on the parent grid as $\mathcal{V}_p^\mathrm{parent} = \{ \bm v(\bm x) \in H^…
342 We enforce that the order of the parent FEM space is equal to the full domain's order.
344 …which results in functions of degree higher than the parent FEM space, $\mathcal{V}_p^\mathrm{pare…
345 To represent these higher-order functions on the parent FEM space, we perform an $L^2$ projection.
353 The projection of a function $u$ onto the parent FEM space would look like:
356 \bm M u_N = \int_0^{L_x} \int_0^{L_y} u \psi^\mathrm{parent}_N \mathrm{d}y \mathrm{d}x
358 …l{V}_p^\mathrm{parent}$, $u_N$ the coefficients of the projected function, and $\psi^\mathrm{paren…
362 …rac{1}{L_z} \int_0^{L_z} \phi(x,y,z,t) \mathrm{d}z \right ] \psi^\mathrm{parent}_N(x,y) \mathrm{d}…
368 \bm M [\langle \phi \rangle_z]_N = \frac{1}{L_z} \int_\Omega \phi(x,y,z,t) \psi^\mathrm{parent}_N(x…
[all …]
/libCEED/tests/
H A Djunit_common.py19 sys.path.insert(0, str(Path(__file__).parent / "junit-xml"))
634 classname=source_path.parent,
692 ref_csv = (ref_csv.parent / ref_csv.name.rsplit('_', 1)[0]).with_suffix('.csv')
719 ref_cgn = (ref_cgn.parent / ref_cgn.name.rsplit('_', 1)[0]).with_suffix('.cgns')
739 … ref_file = (ref_file.parent / ref_file.name.rsplit('_', 1)[0]).with_suffix(ref_file.suffix)
/libCEED/include/ceed/
H A Dbackend.h253 CEED_EXTERN int CeedGetParent(Ceed ceed, Ceed *parent);
473 CEED_EXTERN int CeedOperatorGetFallbackParent(CeedOperator op, CeedOperator *parent);
474 CEED_EXTERN int CeedOperatorGetFallbackParentCeed(CeedOperator op, Ceed *parent);
/libCEED/doc/sphinx/source/
H A DlibCEEDdev.md28 …This delegate {ref}`Ceed` will provide the implementation of any libCeed objects that parent backe…
32 …`Ceed` will only provide the implementation of that specific libCeed object for the parent backend.
36 The parent backend must implement the basic {ref}`CeedOperator` functionality.
38 …In order to use operator fallback, the parent backend and fallback backend must use compatible E-v…
40 …If an unimplemented method is called, then the parent `/gpu/cuda/gen` {ref}`Ceed` object uses its …
H A Dreleasenotes.md25 - Add `CeedVectorReturnCeed` and similar when parent `Ceed` context for a libCEED object is only ne…
/libCEED/julia/LibCEED.jl/.style/
H A Dceed_style.jl26 if CSTParser.iscurly(cst.parent) &&
/libCEED/include/
H A Dceed-impl.h105 Ceed parent; member
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl936 function CeedGetParent(ceed, parent) argument
937 ccall((:CeedGetParent, libceed), Cint, (Ceed, Ptr{Ceed}), ceed, parent)
1442 function CeedOperatorGetFallbackParent(op, parent) argument
1443 …all((:CeedOperatorGetFallbackParent, libceed), Cint, (CeedOperator, Ptr{CeedOperator}), op, parent)
1446 function CeedOperatorGetFallbackParentCeed(op, parent) argument
1447 … ccall((:CeedOperatorGetFallbackParentCeed, libceed), Cint, (CeedOperator, Ptr{Ceed}), op, parent)
/libCEED/
H A DRELEASING.md21 Use `git log --first-parent v0.7..` to get a sense of the pull requests that have been merged and t…
H A DREADME.md216 …A installation located elsewhere, create a link to `magma/` in libCEED's parent directory, or set …