Lines Matching full:libceed

1 # LibCEED.jl Docs
3 Documentation for the LibCEED.jl Julia interface to the
4 [libCEED](https://github.com/ceed/libceed) library.
6 For further information, see also the [libCEED
7 documentation](https://libceed.org/).
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
16 libCEED library. If you require features of a specific build of libCEED (e.g.
18 own version of the libCEED library, and configure LibCEED.jl to use this binary
19 as described in the [Configuring LibCEED.jl](@ref) section.
21 !!! warning "The pre-built libCEED binaries do not support CUDA backends"
22 The pre-built binaries automatically installed by LibCEED.jl (through the
24 are not built with CUDA support. If you want to run libCEED on the GPU, you
25 will have to build libCEED from source and configure LibCEED.jl as described
26 in the [Configuring LibCEED.jl](@ref) section.
28 #### Configuring LibCEED.jl
30 By default, LibCEED.jl will use the pre-built libCEED binaries provided by the
32 you wish to use a different libCEED binary (e.g. one built from source),
33 LibCEED.jl can be configured using Julia's _preferences_ mechanism. Note that
39 julia> using LibCEED
40 julia> set_libceed_path!("/path/to/libceed.so")
41 [ Info: Setting the libCEED library path to /path/to/libceed.so.
45 See the [library configuration documentation](LibCEED.md) for more details. For
49 ### Features of the high-level interface for libCEED
53 With LibCEED.jl, it is much easier to write dimension-independent user-defined
67 In LibCEED.jl, this difficulty is mitigated using the [`witharray`](@ref)
118 "LibCEED.md",