Lines Matching full:ref
38 In the code, the function that represents the weak form at quadrature points is called the {ref}`Ce…
39 In the {ref}`Examples` provided with the library (in the {file}`examples/` directory), we store the…
40 If equation {eq}`residual` only presents a term of the type $\bm f_0$, the {ref}`CeedQFunction` wil…
41 If equation {eq}`residual` also presents a term of the type $\bm f_1$, then the {ref}`CeedQFunction…
181 …l, where the logical devices, which in the library are represented by the {ref}`Ceed` object, are …
182 Each MPI rank can use one or more {ref}`Ceed`s, and each {ref}`Ceed`, in turn, can represent one or…
184 …ockets and 4 GPUs, one may decide to use 6 MPI ranks (each using a single {ref}`Ceed` object): 2 r…
185 Another choice could be to run 1 MPI rank on the whole node and use 5 {ref}`Ceed` objects: 1 managi…
207 [ceed-ref.c](https://github.com/CEED/libCEED/blob/main/backends/ref/ceed-ref.c).
212 - **L-**, **E-** and **Q-vector** are represented as variables of type {ref}`CeedVector`.
214 - $\bm{\mathcal{E}}$ is represented as variable of type {ref}`CeedElemRestriction`.
215 - $\bm{B}$ is represented as variable of type {ref}`CeedBasis`.
216 - the action of $\bm{D}$ is represented as variable of type {ref}`CeedQFunction`.
217 …m{B}^T \bm{D} \bm{B} \bm{\mathcal{E}}$ is represented as variable of type {ref}`CeedOperator` and …
248 These functions are turned into the {ref}`CeedQFunction` variables `qf_setup` and `qf_mass` in the …
256 A {ref}`CeedQFunction` performs independent operations at each quadrature point and the interface i…
261 In addition to the function pointers (`setup` and `mass`), {ref}`CeedQFunction` constructors take a…
263 For full support across all backends, these {ref}`CeedQFunction` source files must only contain con…
270 The evaluation mode (see {ref}`CeedBasis-Typedefs and Enumerations`) `CEED_EVAL_INTERP` for both in…
276 where $v$ are test functions (see the {ref}`theoretical-framework`).
285 For fields with derivatives, such as with the basis evaluation mode (see {ref}`CeedBasis-Typedefs a…
324 These operations, $\bm{\mathcal{E}}$, $\bm{B}$, and $\bm{D}$, are combined with a {ref}`CeedOperato…
325 As with {ref}`CeedQFunction`s, operator fields are added
379 LibCEED provides a gallery of built-in {ref}`CeedQFunction`s in the {file}`gallery/` directory.
381 … how the user can declare a {ref}`CeedQFunction` via the gallery of available QFunctions, consider…
393 ```{literalinclude} ../../../backends/ref/ceed-ref.c
404 However, user code, including libraries of {ref}`CeedQFunction`s, should be source and binary compa…