Lines Matching +full:- +full:- +full:package
14 The LibCEED.jl package can be installed with Julia's package manager by running
15 `] add LibCEED`. This will automatically install a pre-built binary of the
21 !!! warning "The pre-built libCEED binaries do not support CUDA backends"
22 The pre-built binaries automatically installed by LibCEED.jl (through the
23 [libCEED_jll](https://juliahub.com/ui/Packages/libCEED_jll/LB2fn) package)
30 By default, LibCEED.jl will use the pre-built libCEED binaries provided by the
31 [libCEED_jll](https://juliahub.com/ui/Packages/libCEED_jll/LB2fn) package. If
49 ### Features of the high-level interface for libCEED
51 #### User Q-functions
53 With LibCEED.jl, it is much easier to write dimension-independent user-defined
54 Q-functions that automatically work on the GPU. See the [related
61 the user wants read-only access, then the user must call
63 possibly be bug-prone, because the user may forget to restore the array, or may
64 match the `Read` version to get the array with non-`Read` version to restore the
68 function and [`@witharray`](@ref) macro. There are also read-only versions,
73 For example, in `ex1-volume`, the following C code
90 In `ex2-surface`, the following C code