Lines Matching full:user
1 # Defining User Q-Functions
3 An important feature of LibCEED.jl is the ability to define [user
5 natively in Julia. These user Q-functions work with both the CPU and CUDA
8 User Q-functions describe the action of the $D$ operator at quadrature points
16 Before describing how to define user Q-functions in Julia, we will briefly given
17 an example of a user Q-function defined in C. This is the "apply mass"
41 From this example, we see that a user Q-function is a C callback that takes a
64 We now replicate this Q-function in Julia. The main way of defining user
132 of the problem. When the user Q-function is defined, LibCEED.jl will JIT compile
187 If the `Ceed` resource uses a CUDA backend, then the user Q-functions defined
191 intended to be run on the GPU, the user should take care when defining the body
192 of the user Q-function.