xref: /libCEED/interface/ceed.c (revision e15f9bd09af0280c89b79924fa9af7dd2e3e30be)
1d7b241e6Sjeremylt // Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at
2d7b241e6Sjeremylt // the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
3d7b241e6Sjeremylt // reserved. See files LICENSE and NOTICE for details.
4d7b241e6Sjeremylt //
5d7b241e6Sjeremylt // This file is part of CEED, a collection of benchmarks, miniapps, software
6d7b241e6Sjeremylt // libraries and APIs for efficient high-order finite element and spectral
7d7b241e6Sjeremylt // element discretizations for exascale applications. For more information and
8d7b241e6Sjeremylt // source code availability see http://github.com/ceed.
9d7b241e6Sjeremylt //
10d7b241e6Sjeremylt // The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
11d7b241e6Sjeremylt // a collaborative effort of two U.S. Department of Energy organizations (Office
12d7b241e6Sjeremylt // of Science and the National Nuclear Security Administration) responsible for
13d7b241e6Sjeremylt // the planning and preparation of a capable exascale ecosystem, including
14d7b241e6Sjeremylt // software, applications, hardware, advanced system engineering and early
15d7b241e6Sjeremylt // testbed platforms, in support of the nation's exascale computing imperative.
16d7b241e6Sjeremylt 
17d7b241e6Sjeremylt #define _POSIX_C_SOURCE 200112
183d576824SJeremy L Thompson #include <ceed.h>
19d863ab9bSjeremylt #include <ceed-backend.h>
203d576824SJeremy L Thompson #include <ceed-impl.h>
21aedaa0e5Sjeremylt #include <limits.h>
22d7b241e6Sjeremylt #include <stdarg.h>
236e79d475Sjeremylt #include <stddef.h>
24d7b241e6Sjeremylt #include <stdio.h>
25d7b241e6Sjeremylt #include <stdlib.h>
26d7b241e6Sjeremylt #include <string.h>
27d7b241e6Sjeremylt 
28d7b241e6Sjeremylt /// @cond DOXYGEN_SKIP
29d7b241e6Sjeremylt static CeedRequest ceed_request_immediate;
30d7b241e6Sjeremylt static CeedRequest ceed_request_ordered;
31d7b241e6Sjeremylt 
32d7b241e6Sjeremylt static struct {
33d7b241e6Sjeremylt   char prefix[CEED_MAX_RESOURCE_LEN];
34d7b241e6Sjeremylt   int (*init)(const char *resource, Ceed f);
35d7b241e6Sjeremylt   unsigned int priority;
36d7b241e6Sjeremylt } backends[32];
37d7b241e6Sjeremylt static size_t num_backends;
38fe2413ffSjeremylt 
396e79d475Sjeremylt #define CEED_FTABLE_ENTRY(class, method) \
406e79d475Sjeremylt   {#class #method, offsetof(struct class ##_private, method)}
41d7b241e6Sjeremylt /// @endcond
42d7b241e6Sjeremylt 
43d7b241e6Sjeremylt /// @file
44d7b241e6Sjeremylt /// Implementation of core components of Ceed library
457a982d89SJeremy L. Thompson 
467a982d89SJeremy L. Thompson /// @addtogroup CeedUser
47d7b241e6Sjeremylt /// @{
48d7b241e6Sjeremylt 
49dfdf5a53Sjeremylt /**
50dfdf5a53Sjeremylt   @brief Request immediate completion
51dfdf5a53Sjeremylt 
52dfdf5a53Sjeremylt   This predefined constant is passed as the \ref CeedRequest argument to
53dfdf5a53Sjeremylt   interfaces when the caller wishes for the operation to be performed
54dfdf5a53Sjeremylt   immediately.  The code
55dfdf5a53Sjeremylt 
56dfdf5a53Sjeremylt   @code
57dfdf5a53Sjeremylt     CeedOperatorApply(op, ..., CEED_REQUEST_IMMEDIATE);
58dfdf5a53Sjeremylt   @endcode
59dfdf5a53Sjeremylt 
60dfdf5a53Sjeremylt   is semantically equivalent to
61dfdf5a53Sjeremylt 
62dfdf5a53Sjeremylt   @code
63dfdf5a53Sjeremylt     CeedRequest request;
64dfdf5a53Sjeremylt     CeedOperatorApply(op, ..., &request);
65dfdf5a53Sjeremylt     CeedRequestWait(&request);
66dfdf5a53Sjeremylt   @endcode
67dfdf5a53Sjeremylt 
68dfdf5a53Sjeremylt   @sa CEED_REQUEST_ORDERED
69dfdf5a53Sjeremylt **/
70d7b241e6Sjeremylt CeedRequest *const CEED_REQUEST_IMMEDIATE = &ceed_request_immediate;
71d7b241e6Sjeremylt 
72d7b241e6Sjeremylt /**
73b11c1e72Sjeremylt   @brief Request ordered completion
74d7b241e6Sjeremylt 
75d7b241e6Sjeremylt   This predefined constant is passed as the \ref CeedRequest argument to
76d7b241e6Sjeremylt   interfaces when the caller wishes for the operation to be completed in the
77d7b241e6Sjeremylt   order that it is submitted to the device.  It is typically used in a construct
78d7b241e6Sjeremylt   such as
79d7b241e6Sjeremylt 
80d7b241e6Sjeremylt   @code
81d7b241e6Sjeremylt     CeedRequest request;
82d7b241e6Sjeremylt     CeedOperatorApply(op1, ..., CEED_REQUEST_ORDERED);
83d7b241e6Sjeremylt     CeedOperatorApply(op2, ..., &request);
84d7b241e6Sjeremylt     // other optional work
85d7b241e6Sjeremylt     CeedWait(&request);
86d7b241e6Sjeremylt   @endcode
87d7b241e6Sjeremylt 
88d7b241e6Sjeremylt   which allows the sequence to complete asynchronously but does not start
89d7b241e6Sjeremylt   `op2` until `op1` has completed.
90d7b241e6Sjeremylt 
91288c0443SJeremy L Thompson   @todo The current implementation is overly strict, offering equivalent
924cc79fe7SJed Brown   semantics to @ref CEED_REQUEST_IMMEDIATE.
93d7b241e6Sjeremylt 
94d7b241e6Sjeremylt   @sa CEED_REQUEST_IMMEDIATE
95d7b241e6Sjeremylt  */
96d7b241e6Sjeremylt CeedRequest *const CEED_REQUEST_ORDERED = &ceed_request_ordered;
97d7b241e6Sjeremylt 
98b11c1e72Sjeremylt /**
997a982d89SJeremy L. Thompson   @brief Wait for a CeedRequest to complete.
100dfdf5a53Sjeremylt 
1017a982d89SJeremy L. Thompson   Calling CeedRequestWait on a NULL request is a no-op.
1027a982d89SJeremy L. Thompson 
1037a982d89SJeremy L. Thompson   @param req Address of CeedRequest to wait for; zeroed on completion.
1047a982d89SJeremy L. Thompson 
1057a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
1067a982d89SJeremy L. Thompson 
1077a982d89SJeremy L. Thompson   @ref User
108b11c1e72Sjeremylt **/
1097a982d89SJeremy L. Thompson int CeedRequestWait(CeedRequest *req) {
1107a982d89SJeremy L. Thompson   if (!*req)
111*e15f9bd0SJeremy L Thompson     return CEED_ERROR_SUCCESS;
112*e15f9bd0SJeremy L Thompson   return CeedError(NULL, CEED_ERROR_UNSUPPORTED,
113*e15f9bd0SJeremy L Thompson                    "CeedRequestWait not implemented");
114683faae0SJed Brown }
1157a982d89SJeremy L. Thompson 
1167a982d89SJeremy L. Thompson /// @}
1177a982d89SJeremy L. Thompson 
1187a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1197a982d89SJeremy L. Thompson /// Ceed Library Internal Functions
1207a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1217a982d89SJeremy L. Thompson /// @addtogroup CeedDeveloper
1227a982d89SJeremy L. Thompson /// @{
123d7b241e6Sjeremylt 
1247a982d89SJeremy L. Thompson /// @}
125d7b241e6Sjeremylt 
1267a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1277a982d89SJeremy L. Thompson /// Ceed Backend API
1287a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1297a982d89SJeremy L. Thompson /// @addtogroup CeedBackend
1307a982d89SJeremy L. Thompson /// @{
131d7b241e6Sjeremylt 
132b11c1e72Sjeremylt /**
13360f9e2d6SJeremy L Thompson   @brief Print Ceed debugging information
13460f9e2d6SJeremy L Thompson 
13560f9e2d6SJeremy L Thompson   @param ceed    Ceed context
13660f9e2d6SJeremy L Thompson   @param format  Printing format
13760f9e2d6SJeremy L Thompson 
13860f9e2d6SJeremy L Thompson   @return None
13960f9e2d6SJeremy L Thompson 
14060f9e2d6SJeremy L Thompson   @ref Backend
14160f9e2d6SJeremy L Thompson **/
142fc6bbcedSJeremy L Thompson // LCOV_EXCL_START
14360f9e2d6SJeremy L Thompson void CeedDebugImpl(const Ceed ceed, const char *format,...) {
14460f9e2d6SJeremy L Thompson   if (!ceed->debug) return;
14560f9e2d6SJeremy L Thompson   va_list args;
14660f9e2d6SJeremy L Thompson   va_start(args, format);
14760f9e2d6SJeremy L Thompson   CeedDebugImpl256(ceed, 0, format, args);
14860f9e2d6SJeremy L Thompson   va_end(args);
14960f9e2d6SJeremy L Thompson }
150fc6bbcedSJeremy L Thompson // LCOV_EXCL_STOP
15160f9e2d6SJeremy L Thompson 
15260f9e2d6SJeremy L Thompson /**
15360f9e2d6SJeremy L Thompson   @brief Print Ceed debugging information in color
15460f9e2d6SJeremy L Thompson 
15560f9e2d6SJeremy L Thompson   @param ceed    Ceed context
15660f9e2d6SJeremy L Thompson   @param color   Color to print
15760f9e2d6SJeremy L Thompson   @param format  Printing format
15860f9e2d6SJeremy L Thompson 
15960f9e2d6SJeremy L Thompson   @return None
16060f9e2d6SJeremy L Thompson 
16160f9e2d6SJeremy L Thompson   @ref Backend
16260f9e2d6SJeremy L Thompson **/
163fc6bbcedSJeremy L Thompson // LCOV_EXCL_START
16460f9e2d6SJeremy L Thompson void CeedDebugImpl256(const Ceed ceed, const unsigned char color,
16560f9e2d6SJeremy L Thompson                       const char *format,...) {
16660f9e2d6SJeremy L Thompson   if (!ceed->debug) return;
16760f9e2d6SJeremy L Thompson   va_list args;
16860f9e2d6SJeremy L Thompson   va_start(args, format);
16960f9e2d6SJeremy L Thompson   fflush(stdout);
17060f9e2d6SJeremy L Thompson   fprintf(stdout, "\033[38;5;%dm", color);
17160f9e2d6SJeremy L Thompson   vfprintf(stdout, format, args);
17260f9e2d6SJeremy L Thompson   fprintf(stdout, "\033[m");
17360f9e2d6SJeremy L Thompson   fprintf(stdout, "\n");
17460f9e2d6SJeremy L Thompson   fflush(stdout);
17560f9e2d6SJeremy L Thompson   va_end(args);
17660f9e2d6SJeremy L Thompson }
177fc6bbcedSJeremy L Thompson // LCOV_EXCL_STOP
17860f9e2d6SJeremy L Thompson 
17960f9e2d6SJeremy L Thompson /**
180b11c1e72Sjeremylt   @brief Allocate an array on the host; use CeedMalloc()
181b11c1e72Sjeremylt 
182b11c1e72Sjeremylt   Memory usage can be tracked by the library.  This ensures sufficient
183b11c1e72Sjeremylt     alignment for vectorization and should be used for large allocations.
184b11c1e72Sjeremylt 
185b11c1e72Sjeremylt   @param n Number of units to allocate
186b11c1e72Sjeremylt   @param unit Size of each unit
187b11c1e72Sjeremylt   @param p Address of pointer to hold the result.
188b11c1e72Sjeremylt 
189b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
190b11c1e72Sjeremylt 
191b11c1e72Sjeremylt   @sa CeedFree()
192dfdf5a53Sjeremylt 
1937a982d89SJeremy L. Thompson   @ref Backend
194b11c1e72Sjeremylt **/
195d7b241e6Sjeremylt int CeedMallocArray(size_t n, size_t unit, void *p) {
196d7b241e6Sjeremylt   int ierr = posix_memalign((void **)p, CEED_ALIGN, n*unit);
197d7b241e6Sjeremylt   if (ierr)
198c042f62fSJeremy L Thompson     // LCOV_EXCL_START
199*e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR,
200*e15f9bd0SJeremy L Thompson                      "posix_memalign failed to allocate %zd "
2011d102b48SJeremy L Thompson                      "members of size %zd\n", n, unit);
202c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
203*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
204d7b241e6Sjeremylt }
205d7b241e6Sjeremylt 
206b11c1e72Sjeremylt /**
207b11c1e72Sjeremylt   @brief Allocate a cleared (zeroed) array on the host; use CeedCalloc()
208b11c1e72Sjeremylt 
209b11c1e72Sjeremylt   Memory usage can be tracked by the library.
210b11c1e72Sjeremylt 
211b11c1e72Sjeremylt   @param n    Number of units to allocate
212b11c1e72Sjeremylt   @param unit Size of each unit
213b11c1e72Sjeremylt   @param p    Address of pointer to hold the result.
214b11c1e72Sjeremylt 
215b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
216b11c1e72Sjeremylt 
217b11c1e72Sjeremylt   @sa CeedFree()
218dfdf5a53Sjeremylt 
2197a982d89SJeremy L. Thompson   @ref Backend
220b11c1e72Sjeremylt **/
221d7b241e6Sjeremylt int CeedCallocArray(size_t n, size_t unit, void *p) {
222d7b241e6Sjeremylt   *(void **)p = calloc(n, unit);
223d7b241e6Sjeremylt   if (n && unit && !*(void **)p)
224c042f62fSJeremy L Thompson     // LCOV_EXCL_START
225*e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR,
226*e15f9bd0SJeremy L Thompson                      "calloc failed to allocate %zd members of size "
2271d102b48SJeremy L Thompson                      "%zd\n", n, unit);
228c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
229*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
230d7b241e6Sjeremylt }
231d7b241e6Sjeremylt 
232b11c1e72Sjeremylt /**
233b11c1e72Sjeremylt   @brief Reallocate an array on the host; use CeedRealloc()
234b11c1e72Sjeremylt 
235b11c1e72Sjeremylt   Memory usage can be tracked by the library.
236b11c1e72Sjeremylt 
237b11c1e72Sjeremylt   @param n    Number of units to allocate
238b11c1e72Sjeremylt   @param unit Size of each unit
239b11c1e72Sjeremylt   @param p    Address of pointer to hold the result.
240b11c1e72Sjeremylt 
241b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
242b11c1e72Sjeremylt 
243b11c1e72Sjeremylt   @sa CeedFree()
244dfdf5a53Sjeremylt 
2457a982d89SJeremy L. Thompson   @ref Backend
246b11c1e72Sjeremylt **/
247d7b241e6Sjeremylt int CeedReallocArray(size_t n, size_t unit, void *p) {
248d7b241e6Sjeremylt   *(void **)p = realloc(*(void **)p, n*unit);
249d7b241e6Sjeremylt   if (n && unit && !*(void **)p)
250c042f62fSJeremy L Thompson     // LCOV_EXCL_START
251*e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR,
252*e15f9bd0SJeremy L Thompson                      "realloc failed to allocate %zd members of size "
2531d102b48SJeremy L Thompson                      "%zd\n", n, unit);
254c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
255*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
256d7b241e6Sjeremylt }
257d7b241e6Sjeremylt 
25834138859Sjeremylt /** Free memory allocated using CeedMalloc() or CeedCalloc()
25934138859Sjeremylt 
26034138859Sjeremylt   @param p address of pointer to memory.  This argument is of type void* to
26134138859Sjeremylt              avoid needing a cast, but is the address of the pointer (which is
26234138859Sjeremylt              zeroed) rather than the pointer.
26334138859Sjeremylt **/
264d7b241e6Sjeremylt int CeedFree(void *p) {
265d7b241e6Sjeremylt   free(*(void **)p);
266d7b241e6Sjeremylt   *(void **)p = NULL;
267*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
268d7b241e6Sjeremylt }
269d7b241e6Sjeremylt 
270d7b241e6Sjeremylt /**
2717a982d89SJeremy L. Thompson   @brief Register a Ceed backend
272d7b241e6Sjeremylt 
2737a982d89SJeremy L. Thompson   @param prefix   Prefix of resources for this backend to respond to.  For
2747a982d89SJeremy L. Thompson                     example, the reference backend responds to "/cpu/self".
2757a982d89SJeremy L. Thompson   @param init     Initialization function called by CeedInit() when the backend
2767a982d89SJeremy L. Thompson                     is selected to drive the requested resource.
2777a982d89SJeremy L. Thompson   @param priority Integer priority.  Lower values are preferred in case the
2787a982d89SJeremy L. Thompson                     resource requested by CeedInit() has non-unique best prefix
2797a982d89SJeremy L. Thompson                     match.
280b11c1e72Sjeremylt 
281b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
282dfdf5a53Sjeremylt 
2837a982d89SJeremy L. Thompson   @ref Backend
284b11c1e72Sjeremylt **/
2857a982d89SJeremy L. Thompson int CeedRegister(const char *prefix, int (*init)(const char *, Ceed),
2867a982d89SJeremy L. Thompson                  unsigned int priority) {
2877a982d89SJeremy L. Thompson   if (num_backends >= sizeof(backends) / sizeof(backends[0]))
2887a982d89SJeremy L. Thompson     // LCOV_EXCL_START
289*e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR, "Too many backends");
2907a982d89SJeremy L. Thompson   // LCOV_EXCL_STOP
2917a982d89SJeremy L. Thompson 
2927a982d89SJeremy L. Thompson   strncpy(backends[num_backends].prefix, prefix, CEED_MAX_RESOURCE_LEN);
2937a982d89SJeremy L. Thompson   backends[num_backends].prefix[CEED_MAX_RESOURCE_LEN-1] = 0;
2947a982d89SJeremy L. Thompson   backends[num_backends].init = init;
2957a982d89SJeremy L. Thompson   backends[num_backends].priority = priority;
2967a982d89SJeremy L. Thompson   num_backends++;
297*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
298d7b241e6Sjeremylt }
299d7b241e6Sjeremylt 
300b11c1e72Sjeremylt /**
30160f9e2d6SJeremy L Thompson   @brief Return debugging status flag
30260f9e2d6SJeremy L Thompson 
30360f9e2d6SJeremy L Thompson   @param ceed     Ceed context to get debugging flag
30460f9e2d6SJeremy L Thompson   @param isDebug  Variable to store debugging flag
30560f9e2d6SJeremy L Thompson 
30660f9e2d6SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
30760f9e2d6SJeremy L Thompson 
30860f9e2d6SJeremy L Thompson   @ref Bcakend
30960f9e2d6SJeremy L Thompson **/
31060f9e2d6SJeremy L Thompson int CeedIsDebug(Ceed ceed, bool *isDebug) {
31160f9e2d6SJeremy L Thompson   *isDebug = ceed->debug;
312*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
31360f9e2d6SJeremy L Thompson }
31460f9e2d6SJeremy L Thompson 
31560f9e2d6SJeremy L Thompson /**
3167a982d89SJeremy L. Thompson   @brief Retrieve a parent Ceed context
3177a982d89SJeremy L. Thompson 
3187a982d89SJeremy L. Thompson   @param ceed        Ceed context to retrieve parent of
3197a982d89SJeremy L. Thompson   @param[out] parent Address to save the parent to
3207a982d89SJeremy L. Thompson 
3217a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
3227a982d89SJeremy L. Thompson 
3237a982d89SJeremy L. Thompson   @ref Backend
3247a982d89SJeremy L. Thompson **/
3257a982d89SJeremy L. Thompson int CeedGetParent(Ceed ceed, Ceed *parent) {
3267a982d89SJeremy L. Thompson   int ierr;
3277a982d89SJeremy L. Thompson   if (ceed->parent) {
3287a982d89SJeremy L. Thompson     ierr = CeedGetParent(ceed->parent, parent); CeedChk(ierr);
329*e15f9bd0SJeremy L Thompson     return CEED_ERROR_SUCCESS;
3307a982d89SJeremy L. Thompson   }
3317a982d89SJeremy L. Thompson   *parent = ceed;
332*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3337a982d89SJeremy L. Thompson }
3347a982d89SJeremy L. Thompson 
3357a982d89SJeremy L. Thompson /**
3367a982d89SJeremy L. Thompson   @brief Retrieve a delegate Ceed context
3377a982d89SJeremy L. Thompson 
3387a982d89SJeremy L. Thompson   @param ceed          Ceed context to retrieve delegate of
3397a982d89SJeremy L. Thompson   @param[out] delegate Address to save the delegate to
3407a982d89SJeremy L. Thompson 
3417a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
3427a982d89SJeremy L. Thompson 
3437a982d89SJeremy L. Thompson   @ref Backend
3447a982d89SJeremy L. Thompson **/
3457a982d89SJeremy L. Thompson int CeedGetDelegate(Ceed ceed, Ceed *delegate) {
3467a982d89SJeremy L. Thompson   *delegate = ceed->delegate;
347*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3487a982d89SJeremy L. Thompson }
3497a982d89SJeremy L. Thompson 
3507a982d89SJeremy L. Thompson /**
3517a982d89SJeremy L. Thompson   @brief Set a delegate Ceed context
3527a982d89SJeremy L. Thompson 
3537a982d89SJeremy L. Thompson   This function allows a Ceed context to set a delegate Ceed context. All
3547a982d89SJeremy L. Thompson     backend implementations default to the delegate Ceed context, unless
3557a982d89SJeremy L. Thompson     overridden.
3567a982d89SJeremy L. Thompson 
3577a982d89SJeremy L. Thompson   @param ceed           Ceed context to set delegate of
3587a982d89SJeremy L. Thompson   @param[out] delegate  Address to set the delegate to
3597a982d89SJeremy L. Thompson 
3607a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
3617a982d89SJeremy L. Thompson 
3627a982d89SJeremy L. Thompson   @ref Backend
3637a982d89SJeremy L. Thompson **/
3647a982d89SJeremy L. Thompson int CeedSetDelegate(Ceed ceed, Ceed delegate) {
3657a982d89SJeremy L. Thompson   ceed->delegate = delegate;
3667a982d89SJeremy L. Thompson   delegate->parent = ceed;
367*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3687a982d89SJeremy L. Thompson }
3697a982d89SJeremy L. Thompson 
3707a982d89SJeremy L. Thompson /**
3717a982d89SJeremy L. Thompson   @brief Retrieve a delegate Ceed context for a specific object type
3727a982d89SJeremy L. Thompson 
3737a982d89SJeremy L. Thompson   @param ceed           Ceed context to retrieve delegate of
3747a982d89SJeremy L. Thompson   @param[out] delegate  Address to save the delegate to
3757a982d89SJeremy L. Thompson   @param[in] objname    Name of the object type to retrieve delegate for
3767a982d89SJeremy L. Thompson 
3777a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
3787a982d89SJeremy L. Thompson 
3797a982d89SJeremy L. Thompson   @ref Backend
3807a982d89SJeremy L. Thompson **/
3817a982d89SJeremy L. Thompson int CeedGetObjectDelegate(Ceed ceed, Ceed *delegate, const char *objname) {
3827a982d89SJeremy L. Thompson   CeedInt ierr;
3837a982d89SJeremy L. Thompson 
3847a982d89SJeremy L. Thompson   // Check for object delegate
3857a982d89SJeremy L. Thompson   for (CeedInt i=0; i<ceed->objdelegatecount; i++)
3867a982d89SJeremy L. Thompson     if (!strcmp(objname, ceed->objdelegates->objname)) {
3877a982d89SJeremy L. Thompson       *delegate = ceed->objdelegates->delegate;
388*e15f9bd0SJeremy L Thompson       return CEED_ERROR_SUCCESS;
3897a982d89SJeremy L. Thompson     }
3907a982d89SJeremy L. Thompson 
3917a982d89SJeremy L. Thompson   // Use default delegate if no object delegate
3927a982d89SJeremy L. Thompson   ierr = CeedGetDelegate(ceed, delegate); CeedChk(ierr);
393*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3947a982d89SJeremy L. Thompson }
3957a982d89SJeremy L. Thompson 
3967a982d89SJeremy L. Thompson /**
3977a982d89SJeremy L. Thompson   @brief Set a delegate Ceed context for a specific object type
3987a982d89SJeremy L. Thompson 
3997a982d89SJeremy L. Thompson   This function allows a Ceed context to set a delegate Ceed context for a
4007a982d89SJeremy L. Thompson     given type of Ceed object. All backend implementations default to the
4017a982d89SJeremy L. Thompson     delegate Ceed context for this object. For example,
4027a982d89SJeremy L. Thompson     CeedSetObjectDelegate(ceed, refceed, "Basis")
4037a982d89SJeremy L. Thompson   uses refceed implementations for all CeedBasis backend functions.
4047a982d89SJeremy L. Thompson 
4057a982d89SJeremy L. Thompson   @param ceed          Ceed context to set delegate of
4067a982d89SJeremy L. Thompson   @param[out] delegate Address to set the delegate to
4077a982d89SJeremy L. Thompson   @param[in] objname   Name of the object type to set delegate for
4087a982d89SJeremy L. Thompson 
4097a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4107a982d89SJeremy L. Thompson 
4117a982d89SJeremy L. Thompson   @ref Backend
4127a982d89SJeremy L. Thompson **/
4137a982d89SJeremy L. Thompson int CeedSetObjectDelegate(Ceed ceed, Ceed delegate, const char *objname) {
4147a982d89SJeremy L. Thompson   CeedInt ierr;
4157a982d89SJeremy L. Thompson   CeedInt count = ceed->objdelegatecount;
4167a982d89SJeremy L. Thompson 
4177a982d89SJeremy L. Thompson   // Malloc or Realloc
4187a982d89SJeremy L. Thompson   if (count) {
4197a982d89SJeremy L. Thompson     ierr = CeedRealloc(count+1, &ceed->objdelegates); CeedChk(ierr);
4207a982d89SJeremy L. Thompson   } else {
4217a982d89SJeremy L. Thompson     ierr = CeedCalloc(1, &ceed->objdelegates); CeedChk(ierr);
4227a982d89SJeremy L. Thompson   }
4237a982d89SJeremy L. Thompson   ceed->objdelegatecount++;
4247a982d89SJeremy L. Thompson 
4257a982d89SJeremy L. Thompson   // Set object delegate
4267a982d89SJeremy L. Thompson   ceed->objdelegates[count].delegate = delegate;
4277a982d89SJeremy L. Thompson   size_t slen = strlen(objname) + 1;
4287a982d89SJeremy L. Thompson   ierr = CeedMalloc(slen, &ceed->objdelegates[count].objname); CeedChk(ierr);
4297a982d89SJeremy L. Thompson   memcpy(ceed->objdelegates[count].objname, objname, slen);
4307a982d89SJeremy L. Thompson 
4317a982d89SJeremy L. Thompson   // Set delegate parent
4327a982d89SJeremy L. Thompson   delegate->parent = ceed;
433*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4347a982d89SJeremy L. Thompson }
4357a982d89SJeremy L. Thompson 
4367a982d89SJeremy L. Thompson /**
4377a982d89SJeremy L. Thompson   @brief Get the fallback resource for CeedOperators
4387a982d89SJeremy L. Thompson 
4397a982d89SJeremy L. Thompson   @param ceed          Ceed context
4407a982d89SJeremy L. Thompson   @param[out] resource Variable to store fallback resource
4417a982d89SJeremy L. Thompson 
4427a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4437a982d89SJeremy L. Thompson 
4447a982d89SJeremy L. Thompson   @ref Backend
4457a982d89SJeremy L. Thompson **/
4467a982d89SJeremy L. Thompson 
4477a982d89SJeremy L. Thompson int CeedGetOperatorFallbackResource(Ceed ceed, const char **resource) {
4487a982d89SJeremy L. Thompson   *resource = (const char *)ceed->opfallbackresource;
449*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4507a982d89SJeremy L. Thompson }
4517a982d89SJeremy L. Thompson 
4527a982d89SJeremy L. Thompson /**
4537a982d89SJeremy L. Thompson   @brief Set the fallback resource for CeedOperators. The current resource, if
4547a982d89SJeremy L. Thompson            any, is freed by calling this function. This string is freed upon the
4557a982d89SJeremy L. Thompson            destruction of the Ceed context.
4567a982d89SJeremy L. Thompson 
4577a982d89SJeremy L. Thompson   @param[out] ceed Ceed context
4587a982d89SJeremy L. Thompson   @param resource  Fallback resource to set
4597a982d89SJeremy L. Thompson 
4607a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4617a982d89SJeremy L. Thompson 
4627a982d89SJeremy L. Thompson   @ref Backend
4637a982d89SJeremy L. Thompson **/
4647a982d89SJeremy L. Thompson 
4657a982d89SJeremy L. Thompson int CeedSetOperatorFallbackResource(Ceed ceed, const char *resource) {
4667a982d89SJeremy L. Thompson   int ierr;
4677a982d89SJeremy L. Thompson 
4687a982d89SJeremy L. Thompson   // Free old
4697a982d89SJeremy L. Thompson   ierr = CeedFree(&ceed->opfallbackresource); CeedChk(ierr);
4707a982d89SJeremy L. Thompson 
4717a982d89SJeremy L. Thompson   // Set new
4727a982d89SJeremy L. Thompson   size_t len = strlen(resource);
4737a982d89SJeremy L. Thompson   char *tmp;
4747a982d89SJeremy L. Thompson   ierr = CeedCalloc(len+1, &tmp); CeedChk(ierr);
4757a982d89SJeremy L. Thompson   memcpy(tmp, resource, len+1);
4767a982d89SJeremy L. Thompson   ceed->opfallbackresource = tmp;
477*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4787a982d89SJeremy L. Thompson }
4797a982d89SJeremy L. Thompson 
4807a982d89SJeremy L. Thompson /**
4817a982d89SJeremy L. Thompson   @brief Get the parent Ceed context associated with a fallback Ceed context
4827a982d89SJeremy L. Thompson            for a CeedOperator
4837a982d89SJeremy L. Thompson 
4847a982d89SJeremy L. Thompson   @param ceed         Ceed context
4857a982d89SJeremy L. Thompson   @param[out] parent  Variable to store parent Ceed context
4867a982d89SJeremy L. Thompson 
4877a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4887a982d89SJeremy L. Thompson 
4897a982d89SJeremy L. Thompson   @ref Backend
4907a982d89SJeremy L. Thompson **/
4917a982d89SJeremy L. Thompson 
4927a982d89SJeremy L. Thompson int CeedGetOperatorFallbackParentCeed(Ceed ceed, Ceed *parent) {
4937a982d89SJeremy L. Thompson   *parent = ceed->opfallbackparent;
494*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4957a982d89SJeremy L. Thompson }
4967a982d89SJeremy L. Thompson 
4977a982d89SJeremy L. Thompson /**
4989525855cSJeremy L Thompson   @brief Flag Ceed context as deterministic
4999525855cSJeremy L Thompson 
5009525855cSJeremy L Thompson   @param ceed     Ceed to flag as deterministic
5019525855cSJeremy L Thompson 
5029525855cSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
5039525855cSJeremy L Thompson 
5049525855cSJeremy L Thompson   @ref Backend
5059525855cSJeremy L Thompson **/
5069525855cSJeremy L Thompson 
5079525855cSJeremy L Thompson int CeedSetDeterministic(Ceed ceed, bool isDeterministic) {
5089525855cSJeremy L Thompson   ceed->isDeterministic = isDeterministic;
509*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5109525855cSJeremy L Thompson }
5119525855cSJeremy L Thompson 
5129525855cSJeremy L Thompson /**
5137a982d89SJeremy L. Thompson   @brief Set a backend function
5147a982d89SJeremy L. Thompson 
5157a982d89SJeremy L. Thompson   This function is used for a backend to set the function associated with
5167a982d89SJeremy L. Thompson   the Ceed objects. For example,
5177a982d89SJeremy L. Thompson     CeedSetBackendFunction(ceed, "Ceed", ceed, "VectorCreate", BackendVectorCreate)
5187a982d89SJeremy L. Thompson   sets the backend implementation of 'CeedVectorCreate' and
5197a982d89SJeremy L. Thompson     CeedSetBackendFunction(ceed, "Basis", basis, "Apply", BackendBasisApply)
5207a982d89SJeremy L. Thompson   sets the backend implementation of 'CeedBasisApply'. Note, the prefix 'Ceed'
5217a982d89SJeremy L. Thompson   is not required for the object type ("Basis" vs "CeedBasis").
5227a982d89SJeremy L. Thompson 
5237a982d89SJeremy L. Thompson   @param ceed           Ceed context for error handling
5247a982d89SJeremy L. Thompson   @param type           Type of Ceed object to set function for
5257a982d89SJeremy L. Thompson   @param[out] object    Ceed object to set function for
5267a982d89SJeremy L. Thompson   @param fname          Name of function to set
5277a982d89SJeremy L. Thompson   @param f              Function to set
5287a982d89SJeremy L. Thompson 
5297a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5307a982d89SJeremy L. Thompson 
5317a982d89SJeremy L. Thompson   @ref Backend
5327a982d89SJeremy L. Thompson **/
5337a982d89SJeremy L. Thompson int CeedSetBackendFunction(Ceed ceed, const char *type, void *object,
5347a982d89SJeremy L. Thompson                            const char *fname, int (*f)()) {
5357a982d89SJeremy L. Thompson   char lookupname[CEED_MAX_RESOURCE_LEN+1] = "";
5367a982d89SJeremy L. Thompson 
5377a982d89SJeremy L. Thompson   // Build lookup name
5387a982d89SJeremy L. Thompson   if (strcmp(type, "Ceed"))
5397a982d89SJeremy L. Thompson     strncat (lookupname, "Ceed", CEED_MAX_RESOURCE_LEN);
5407a982d89SJeremy L. Thompson   strncat(lookupname, type, CEED_MAX_RESOURCE_LEN);
5417a982d89SJeremy L. Thompson   strncat(lookupname, fname, CEED_MAX_RESOURCE_LEN);
5427a982d89SJeremy L. Thompson 
5437a982d89SJeremy L. Thompson   // Find and use offset
5447a982d89SJeremy L. Thompson   for (CeedInt i = 0; ceed->foffsets[i].fname; i++)
5457a982d89SJeremy L. Thompson     if (!strcmp(ceed->foffsets[i].fname, lookupname)) {
5467a982d89SJeremy L. Thompson       size_t offset = ceed->foffsets[i].offset;
5477a982d89SJeremy L. Thompson       int (**fpointer)(void) = (int (**)(void))((char *)object + offset); // *NOPAD*
5487a982d89SJeremy L. Thompson       *fpointer = f;
549*e15f9bd0SJeremy L Thompson       return CEED_ERROR_SUCCESS;
5507a982d89SJeremy L. Thompson     }
5517a982d89SJeremy L. Thompson 
5527a982d89SJeremy L. Thompson   // LCOV_EXCL_START
553*e15f9bd0SJeremy L Thompson   return CeedError(ceed, CEED_ERROR_UNSUPPORTED,
554*e15f9bd0SJeremy L Thompson                    "Requested function '%s' was not found for CEED "
5557a982d89SJeremy L. Thompson                    "object '%s'", fname, type);
5567a982d89SJeremy L. Thompson   // LCOV_EXCL_STOP
5577a982d89SJeremy L. Thompson }
5587a982d89SJeremy L. Thompson 
5597a982d89SJeremy L. Thompson /**
5607a982d89SJeremy L. Thompson   @brief Retrieve backend data for a Ceed context
5617a982d89SJeremy L. Thompson 
5627a982d89SJeremy L. Thompson   @param ceed      Ceed context to retrieve data of
5637a982d89SJeremy L. Thompson   @param[out] data Address to save data to
5647a982d89SJeremy L. Thompson 
5657a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5667a982d89SJeremy L. Thompson 
5677a982d89SJeremy L. Thompson   @ref Backend
5687a982d89SJeremy L. Thompson **/
569777ff853SJeremy L Thompson int CeedGetData(Ceed ceed, void *data) {
570777ff853SJeremy L Thompson   *(void **)data = ceed->data;
571*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5727a982d89SJeremy L. Thompson }
5737a982d89SJeremy L. Thompson 
5747a982d89SJeremy L. Thompson /**
5757a982d89SJeremy L. Thompson   @brief Set backend data for a Ceed context
5767a982d89SJeremy L. Thompson 
5777a982d89SJeremy L. Thompson   @param ceed           Ceed context to set data of
5787a982d89SJeremy L. Thompson   @param data           Address of data to set
5797a982d89SJeremy L. Thompson 
5807a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5817a982d89SJeremy L. Thompson 
5827a982d89SJeremy L. Thompson   @ref Backend
5837a982d89SJeremy L. Thompson **/
584777ff853SJeremy L Thompson int CeedSetData(Ceed ceed, void *data) {
585777ff853SJeremy L Thompson   ceed->data = data;
586*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5877a982d89SJeremy L. Thompson }
5887a982d89SJeremy L. Thompson 
5897a982d89SJeremy L. Thompson /// @}
5907a982d89SJeremy L. Thompson 
5917a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
5927a982d89SJeremy L. Thompson /// Ceed Public API
5937a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
5947a982d89SJeremy L. Thompson /// @addtogroup CeedUser
5957a982d89SJeremy L. Thompson /// @{
5967a982d89SJeremy L. Thompson 
5977a982d89SJeremy L. Thompson /**
598d79b80ecSjeremylt   @brief Initialize a \ref Ceed context to use the specified resource.
599b11c1e72Sjeremylt 
600b11c1e72Sjeremylt   @param resource  Resource to use, e.g., "/cpu/self"
601b11c1e72Sjeremylt   @param ceed      The library context
602b11c1e72Sjeremylt   @sa CeedRegister() CeedDestroy()
603b11c1e72Sjeremylt 
604b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
605dfdf5a53Sjeremylt 
6067a982d89SJeremy L. Thompson   @ref User
607b11c1e72Sjeremylt **/
608d7b241e6Sjeremylt int CeedInit(const char *resource, Ceed *ceed) {
609d7b241e6Sjeremylt   int ierr;
610aedaa0e5Sjeremylt   size_t matchlen = 0, matchidx = UINT_MAX, matchpriority = UINT_MAX, priority;
611d7b241e6Sjeremylt 
612fe2413ffSjeremylt   // Find matching backend
6131d102b48SJeremy L Thompson   if (!resource)
61413873f79Sjeremylt     // LCOV_EXCL_START
615*e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR, "No resource provided");
61613873f79Sjeremylt   // LCOV_EXCL_STOP
6171d013790SJed Brown   ierr = CeedRegisterAll(); CeedChk(ierr);
61813873f79Sjeremylt 
619d7b241e6Sjeremylt   for (size_t i=0; i<num_backends; i++) {
620d7b241e6Sjeremylt     size_t n;
621d7b241e6Sjeremylt     const char *prefix = backends[i].prefix;
622d7b241e6Sjeremylt     for (n = 0; prefix[n] && prefix[n] == resource[n]; n++) {}
623d7b241e6Sjeremylt     priority = backends[i].priority;
624d7b241e6Sjeremylt     if (n > matchlen || (n == matchlen && matchpriority > priority)) {
625d7b241e6Sjeremylt       matchlen = n;
626d7b241e6Sjeremylt       matchpriority = priority;
627d7b241e6Sjeremylt       matchidx = i;
628d7b241e6Sjeremylt     }
629d7b241e6Sjeremylt   }
6308f7c06a6Sjeremylt   if (matchlen <= 1)
63113873f79Sjeremylt     // LCOV_EXCL_START
632*e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR, "No suitable backend: %s",
633*e15f9bd0SJeremy L Thompson                      resource);
63413873f79Sjeremylt   // LCOV_EXCL_STOP
635fe2413ffSjeremylt 
636fe2413ffSjeremylt   // Setup Ceed
637d7b241e6Sjeremylt   ierr = CeedCalloc(1, ceed); CeedChk(ierr);
638bc81ce41Sjeremylt   const char *ceed_error_handler = getenv("CEED_ERROR_HANDLER");
6391d102b48SJeremy L Thompson   if (!ceed_error_handler)
6401d102b48SJeremy L Thompson     ceed_error_handler = "abort";
641bc81ce41Sjeremylt   if (!strcmp(ceed_error_handler, "exit"))
64256e866f4SJed Brown     (*ceed)->Error = CeedErrorExit;
643477729cfSJeremy L Thompson   else if (!strcmp(ceed_error_handler, "store"))
644477729cfSJeremy L Thompson     (*ceed)->Error = CeedErrorStore;
64556e866f4SJed Brown   else
646d7b241e6Sjeremylt     (*ceed)->Error = CeedErrorAbort;
647477729cfSJeremy L Thompson   memcpy((*ceed)->errmsg, "No error message stored", 24);
648d7b241e6Sjeremylt   (*ceed)->refcount = 1;
649d7b241e6Sjeremylt   (*ceed)->data = NULL;
650fe2413ffSjeremylt 
651fe2413ffSjeremylt   // Set lookup table
6526e79d475Sjeremylt   foffset foffsets[] = {
6536e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, Error),
6546e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, GetPreferredMemType),
6556e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, Destroy),
656f8902d9eSjeremylt     CEED_FTABLE_ENTRY(Ceed, VectorCreate),
6576e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, ElemRestrictionCreate),
6586e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, ElemRestrictionCreateBlocked),
6596e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, BasisCreateTensorH1),
6606e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, BasisCreateH1),
6616e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, TensorContractCreate),
6626e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, QFunctionCreate),
663777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(Ceed, QFunctionContextCreate),
6646e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, OperatorCreate),
6656e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, CompositeOperatorCreate),
6666e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, SetArray),
6676a6c615bSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, TakeArray),
6686e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, SetValue),
6696e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, GetArray),
6706e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, GetArrayRead),
6716e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, RestoreArray),
6726e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, RestoreArrayRead),
673547d9b97Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, Norm),
674d99fa3c5SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, Reciprocal),
6756e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, Destroy),
6766e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, Apply),
6776e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, ApplyBlock),
678bd33150aSjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, GetOffsets),
6796e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, Destroy),
6806e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedBasis, Apply),
6816e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedBasis, Destroy),
6826e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedTensorContract, Apply),
6836e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedTensorContract, Destroy),
6846e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, Apply),
6858c84ac63Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, SetCUDAUserFunction),
6868c84ac63Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, SetHIPUserFunction),
6876e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, Destroy),
688777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, SetData),
689777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, GetData),
690777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, RestoreData),
691777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, Destroy),
69280ac2e43SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleQFunction),
69380ac2e43SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleDiagonal),
6949e9210b8SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleAddDiagonal),
69580ac2e43SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssemblePointBlockDiagonal),
6969e9210b8SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleAddPointBlockDiagonal),
697713f43c3Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, CreateFDMElementInverse),
6986e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, Apply),
699250756a7Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyComposite),
700cae8b89aSjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyAdd),
701250756a7Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyAddComposite),
7026e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyJacobian),
7036e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, Destroy),
7046e79d475Sjeremylt     {NULL, 0} // End of lookup table - used in SetBackendFunction loop
7051dfeef1dSjeremylt   };
706fe2413ffSjeremylt 
7076e79d475Sjeremylt   ierr = CeedCalloc(sizeof(foffsets), &(*ceed)->foffsets); CeedChk(ierr);
7086e79d475Sjeremylt   memcpy((*ceed)->foffsets, foffsets, sizeof(foffsets));
709fe2413ffSjeremylt 
7105107b09fSJeremy L Thompson   // Set fallback for advanced CeedOperator functions
7115107b09fSJeremy L Thompson   const char fallbackresource[] = "/cpu/self/ref/serial";
7125107b09fSJeremy L Thompson   ierr = CeedSetOperatorFallbackResource(*ceed, fallbackresource);
7135107b09fSJeremy L Thompson   CeedChk(ierr);
7145107b09fSJeremy L Thompson 
71560f9e2d6SJeremy L Thompson   // Record env variables CEED_DEBUG or DBG
71660f9e2d6SJeremy L Thompson   (*ceed)->debug = !!getenv("CEED_DEBUG") || !!getenv("DBG");
71760f9e2d6SJeremy L Thompson 
718fe2413ffSjeremylt   // Backend specific setup
719d7b241e6Sjeremylt   ierr = backends[matchidx].init(resource, *ceed); CeedChk(ierr);
720fe2413ffSjeremylt 
721e07206deSjeremylt   // Copy resource prefix, if backend setup sucessful
722e07206deSjeremylt   size_t len = strlen(backends[matchidx].prefix);
723e07206deSjeremylt   char *tmp;
724e07206deSjeremylt   ierr = CeedCalloc(len+1, &tmp); CeedChk(ierr);
725e07206deSjeremylt   memcpy(tmp, backends[matchidx].prefix, len+1);
726e07206deSjeremylt   (*ceed)->resource = tmp;
727*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
728d7b241e6Sjeremylt }
729d7b241e6Sjeremylt 
730d7b241e6Sjeremylt /**
7317a982d89SJeremy L. Thompson   @brief Get the full resource name for a Ceed context
7322f86a920SJeremy L Thompson 
7337a982d89SJeremy L. Thompson   @param ceed            Ceed context to get resource name of
7347a982d89SJeremy L. Thompson   @param[out] resource   Variable to store resource name
7352f86a920SJeremy L Thompson 
7362f86a920SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
7372f86a920SJeremy L Thompson 
7387a982d89SJeremy L. Thompson   @ref User
7395107b09fSJeremy L Thompson **/
7405107b09fSJeremy L Thompson 
7417a982d89SJeremy L. Thompson int CeedGetResource(Ceed ceed, const char **resource) {
7427a982d89SJeremy L. Thompson   *resource = (const char *)ceed->resource;
743*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
7445107b09fSJeremy L Thompson }
7455107b09fSJeremy L Thompson 
7465107b09fSJeremy L Thompson /**
747d79b80ecSjeremylt   @brief Return Ceed context preferred memory type
748c907536fSjeremylt 
749d79b80ecSjeremylt   @param ceed      Ceed context to get preferred memory type of
750288c0443SJeremy L Thompson   @param[out] type Address to save preferred memory type to
751c907536fSjeremylt 
752c907536fSjeremylt   @return An error code: 0 - success, otherwise - failure
753c907536fSjeremylt 
7547a982d89SJeremy L. Thompson   @ref User
755c907536fSjeremylt **/
756c907536fSjeremylt int CeedGetPreferredMemType(Ceed ceed, CeedMemType *type) {
757c907536fSjeremylt   int ierr;
758c263cd57Sjeremylt 
759c907536fSjeremylt   if (ceed->GetPreferredMemType) {
760c907536fSjeremylt     ierr = ceed->GetPreferredMemType(type); CeedChk(ierr);
761c907536fSjeremylt   } else {
762c263cd57Sjeremylt     Ceed delegate;
763c263cd57Sjeremylt     ierr = CeedGetDelegate(ceed, &delegate); CeedChk(ierr);
764c263cd57Sjeremylt 
765c263cd57Sjeremylt     if (delegate) {
766c263cd57Sjeremylt       ierr = CeedGetPreferredMemType(delegate, type); CeedChk(ierr);
767c263cd57Sjeremylt     } else {
768c907536fSjeremylt       *type = CEED_MEM_HOST;
769c907536fSjeremylt     }
770c263cd57Sjeremylt   }
771*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
772c907536fSjeremylt }
773c907536fSjeremylt 
774c907536fSjeremylt /**
7759525855cSJeremy L Thompson   @brief Get deterministic status of Ceed
7769525855cSJeremy L Thompson 
7779525855cSJeremy L Thompson   @param[in] ceed              Ceed
7789525855cSJeremy L Thompson   @param[out] isDeterministic  Variable to store deterministic status
7799525855cSJeremy L Thompson 
7809525855cSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
7819525855cSJeremy L Thompson 
7829525855cSJeremy L Thompson   @ref User
7839525855cSJeremy L Thompson **/
7849525855cSJeremy L Thompson int CeedIsDeterministic(Ceed ceed, bool *isDeterministic) {
7859525855cSJeremy L Thompson   *isDeterministic = ceed->isDeterministic;
786*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
7879525855cSJeremy L Thompson }
7889525855cSJeremy L Thompson 
7899525855cSJeremy L Thompson /**
7900a0da059Sjeremylt   @brief View a Ceed
7910a0da059Sjeremylt 
7920a0da059Sjeremylt   @param[in] ceed          Ceed to view
7930a0da059Sjeremylt   @param[in] stream        Filestream to write to
7940a0da059Sjeremylt 
7950a0da059Sjeremylt   @return An error code: 0 - success, otherwise - failure
7960a0da059Sjeremylt 
7970a0da059Sjeremylt   @ref User
7980a0da059Sjeremylt **/
7990a0da059Sjeremylt int CeedView(Ceed ceed, FILE *stream) {
8000a0da059Sjeremylt   int ierr;
8010a0da059Sjeremylt   CeedMemType memtype;
8020a0da059Sjeremylt 
8030a0da059Sjeremylt   ierr = CeedGetPreferredMemType(ceed, &memtype); CeedChk(ierr);
8040a0da059Sjeremylt 
8050a0da059Sjeremylt   fprintf(stream, "Ceed\n"
8060a0da059Sjeremylt           "  Ceed Resource: %s\n"
8070a0da059Sjeremylt           "  Preferred MemType: %s\n",
8080a0da059Sjeremylt           ceed->resource, CeedMemTypes[memtype]);
809*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
8100a0da059Sjeremylt }
8110a0da059Sjeremylt 
8120a0da059Sjeremylt /**
813b11c1e72Sjeremylt   @brief Destroy a Ceed context
814d7b241e6Sjeremylt 
815d7b241e6Sjeremylt   @param ceed Address of Ceed context to destroy
816b11c1e72Sjeremylt 
817b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
818dfdf5a53Sjeremylt 
8197a982d89SJeremy L. Thompson   @ref User
820b11c1e72Sjeremylt **/
821d7b241e6Sjeremylt int CeedDestroy(Ceed *ceed) {
822d7b241e6Sjeremylt   int ierr;
823*e15f9bd0SJeremy L Thompson   if (!*ceed || --(*ceed)->refcount > 0) return CEED_ERROR_SUCCESS;
8245fe0d4faSjeremylt   if ((*ceed)->delegate) {
8255fe0d4faSjeremylt     ierr = CeedDestroy(&(*ceed)->delegate); CeedChk(ierr);
8265fe0d4faSjeremylt   }
8270ace9bf2Sjeremylt 
828aefd8378Sjeremylt   if ((*ceed)->objdelegatecount > 0) {
829aefd8378Sjeremylt     for (int i=0; i<(*ceed)->objdelegatecount; i++) {
830aefd8378Sjeremylt       ierr = CeedDestroy(&((*ceed)->objdelegates[i].delegate)); CeedChk(ierr);
831aefd8378Sjeremylt       ierr = CeedFree(&(*ceed)->objdelegates[i].objname); CeedChk(ierr);
832aefd8378Sjeremylt     }
833aefd8378Sjeremylt     ierr = CeedFree(&(*ceed)->objdelegates); CeedChk(ierr);
834aefd8378Sjeremylt   }
8350ace9bf2Sjeremylt 
836d7b241e6Sjeremylt   if ((*ceed)->Destroy) {
837d7b241e6Sjeremylt     ierr = (*ceed)->Destroy(*ceed); CeedChk(ierr);
838d7b241e6Sjeremylt   }
8390ace9bf2Sjeremylt 
8406e79d475Sjeremylt   ierr = CeedFree(&(*ceed)->foffsets); CeedChk(ierr);
841e07206deSjeremylt   ierr = CeedFree(&(*ceed)->resource); CeedChk(ierr);
8425107b09fSJeremy L Thompson   ierr = CeedDestroy(&(*ceed)->opfallbackceed); CeedChk(ierr);
8435107b09fSJeremy L Thompson   ierr = CeedFree(&(*ceed)->opfallbackresource); CeedChk(ierr);
844d7b241e6Sjeremylt   ierr = CeedFree(ceed); CeedChk(ierr);
845*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
846d7b241e6Sjeremylt }
847d7b241e6Sjeremylt 
848f9982c62SWill Pazner // LCOV_EXCL_START
849f9982c62SWill Pazner const char *CeedErrorFormat(Ceed ceed, const char *format, va_list *args) {
8503f4a9821SAndrew T. Barker   if (ceed->parent)
8513f4a9821SAndrew T. Barker     return CeedErrorFormat(ceed->parent, format, args);
8523f4a9821SAndrew T. Barker   if (ceed->opfallbackparent)
8533f4a9821SAndrew T. Barker     return CeedErrorFormat(ceed->opfallbackparent, format, args);
854f9982c62SWill Pazner   vsnprintf(ceed->errmsg, CEED_MAX_RESOURCE_LEN, format, *args);
855f9982c62SWill Pazner   return ceed->errmsg;
856f9982c62SWill Pazner }
857f9982c62SWill Pazner // LCOV_EXCL_STOP
858f9982c62SWill Pazner 
8597a982d89SJeremy L. Thompson /**
8607a982d89SJeremy L. Thompson   @brief Error handling implementation; use \ref CeedError instead.
8617a982d89SJeremy L. Thompson 
8627a982d89SJeremy L. Thompson   @ref Developer
8637a982d89SJeremy L. Thompson **/
8647a982d89SJeremy L. Thompson int CeedErrorImpl(Ceed ceed, const char *filename, int lineno, const char *func,
8657a982d89SJeremy L. Thompson                   int ecode, const char *format, ...) {
8667a982d89SJeremy L. Thompson   va_list args;
8677a982d89SJeremy L. Thompson   int retval;
8687a982d89SJeremy L. Thompson   va_start(args, format);
8697a982d89SJeremy L. Thompson   if (ceed) {
870f9982c62SWill Pazner     retval = ceed->Error(ceed, filename, lineno, func, ecode, format, &args);
8717a982d89SJeremy L. Thompson   } else {
872b0d62198Sjeremylt     // LCOV_EXCL_START
873477729cfSJeremy L Thompson     const char *ceed_error_handler = getenv("CEED_ERROR_HANDLER");
874477729cfSJeremy L Thompson     if (!ceed_error_handler)
875477729cfSJeremy L Thompson       ceed_error_handler = "abort";
876477729cfSJeremy L Thompson     if (!strcmp(ceed_error_handler, "return"))
877f9982c62SWill Pazner       retval = CeedErrorReturn(ceed, filename, lineno, func, ecode, format, &args);
878477729cfSJeremy L Thompson     else
879477729cfSJeremy L Thompson       // This function will not return
880f9982c62SWill Pazner       retval = CeedErrorAbort(ceed, filename, lineno, func, ecode, format, &args);
8817a982d89SJeremy L. Thompson   }
8827a982d89SJeremy L. Thompson   va_end(args);
8837a982d89SJeremy L. Thompson   return retval;
884b0d62198Sjeremylt   // LCOV_EXCL_STOP
8857a982d89SJeremy L. Thompson }
8867a982d89SJeremy L. Thompson 
887477729cfSJeremy L Thompson /**
888477729cfSJeremy L Thompson   @brief Error handler that returns without printing anything.
889477729cfSJeremy L Thompson 
890477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
891477729cfSJeremy L Thompson 
892477729cfSJeremy L Thompson   @ref Developer
893477729cfSJeremy L Thompson **/
894477729cfSJeremy L Thompson // LCOV_EXCL_START
895477729cfSJeremy L Thompson int CeedErrorReturn(Ceed ceed, const char *filename, int lineno,
896477729cfSJeremy L Thompson                     const char *func, int ecode, const char *format,
897f9982c62SWill Pazner                     va_list *args) {
898477729cfSJeremy L Thompson   return ecode;
899477729cfSJeremy L Thompson }
900477729cfSJeremy L Thompson // LCOV_EXCL_STOP
901477729cfSJeremy L Thompson 
902477729cfSJeremy L Thompson /**
903477729cfSJeremy L Thompson   @brief Error handler that stores the error message for future use and returns
904477729cfSJeremy L Thompson            the error.
905477729cfSJeremy L Thompson 
906477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
907477729cfSJeremy L Thompson 
908477729cfSJeremy L Thompson   @ref Developer
909477729cfSJeremy L Thompson **/
910477729cfSJeremy L Thompson // LCOV_EXCL_START
911477729cfSJeremy L Thompson int CeedErrorStore(Ceed ceed, const char *filename, int lineno,
912477729cfSJeremy L Thompson                    const char *func, int ecode, const char *format,
913f9982c62SWill Pazner                    va_list *args) {
914477729cfSJeremy L Thompson   if (ceed->parent)
915187168c7SJeremy L Thompson     return CeedErrorStore(ceed->parent, filename, lineno, func, ecode, format,
916187168c7SJeremy L Thompson                           args);
917fc164cf7SWill Pazner   if (ceed->opfallbackparent)
918fc164cf7SWill Pazner     return CeedErrorStore(ceed->opfallbackparent, filename, lineno, func, ecode,
919fc164cf7SWill Pazner                           format, args);
920477729cfSJeremy L Thompson 
921477729cfSJeremy L Thompson   // Build message
922477729cfSJeremy L Thompson   CeedInt len;
923477729cfSJeremy L Thompson   len = snprintf(ceed->errmsg, CEED_MAX_RESOURCE_LEN, "%s:%d in %s(): ",
924477729cfSJeremy L Thompson                  filename, lineno, func);
925f9982c62SWill Pazner   vsnprintf(ceed->errmsg + len, CEED_MAX_RESOURCE_LEN - len, format, *args);
926477729cfSJeremy L Thompson   return ecode;
927477729cfSJeremy L Thompson }
928477729cfSJeremy L Thompson // LCOV_EXCL_STOP
929477729cfSJeremy L Thompson 
930477729cfSJeremy L Thompson /**
931477729cfSJeremy L Thompson   @brief Error handler that prints to stderr and aborts
932477729cfSJeremy L Thompson 
933477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
934477729cfSJeremy L Thompson 
935477729cfSJeremy L Thompson   @ref Developer
936477729cfSJeremy L Thompson **/
937477729cfSJeremy L Thompson // LCOV_EXCL_START
938477729cfSJeremy L Thompson int CeedErrorAbort(Ceed ceed, const char *filename, int lineno,
939477729cfSJeremy L Thompson                    const char *func, int ecode, const char *format,
940f9982c62SWill Pazner                    va_list *args) {
941477729cfSJeremy L Thompson   fprintf(stderr, "%s:%d in %s(): ", filename, lineno, func);
942f9982c62SWill Pazner   vfprintf(stderr, format, *args);
943477729cfSJeremy L Thompson   fprintf(stderr, "\n");
944477729cfSJeremy L Thompson   abort();
945477729cfSJeremy L Thompson   return ecode;
946477729cfSJeremy L Thompson }
947477729cfSJeremy L Thompson // LCOV_EXCL_STOP
948477729cfSJeremy L Thompson 
949477729cfSJeremy L Thompson /**
950477729cfSJeremy L Thompson   @brief Error handler that prints to stderr and exits
951477729cfSJeremy L Thompson 
952477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
953477729cfSJeremy L Thompson 
954477729cfSJeremy L Thompson   In contrast to CeedErrorAbort(), this exits without a signal, so atexit()
955477729cfSJeremy L Thompson   handlers (e.g., as used by gcov) are run.
956477729cfSJeremy L Thompson 
957477729cfSJeremy L Thompson   @ref Developer
958477729cfSJeremy L Thompson **/
959477729cfSJeremy L Thompson int CeedErrorExit(Ceed ceed, const char *filename, int lineno, const char *func,
960f9982c62SWill Pazner                   int ecode, const char *format, va_list *args) {
961477729cfSJeremy L Thompson   fprintf(stderr, "%s:%d in %s(): ", filename, lineno, func);
962f9982c62SWill Pazner   vfprintf(stderr, format, *args);
963477729cfSJeremy L Thompson   fprintf(stderr, "\n");
964477729cfSJeremy L Thompson   exit(ecode);
965477729cfSJeremy L Thompson   return ecode;
966477729cfSJeremy L Thompson }
967477729cfSJeremy L Thompson 
968477729cfSJeremy L Thompson /**
969477729cfSJeremy L Thompson   @brief Set error handler
970477729cfSJeremy L Thompson 
971477729cfSJeremy L Thompson   A default error handler is set in CeedInit().  Use this function to change
972477729cfSJeremy L Thompson   the error handler to CeedErrorReturn(), CeedErrorAbort(), or a user-defined
973477729cfSJeremy L Thompson   error handler.
974477729cfSJeremy L Thompson 
975477729cfSJeremy L Thompson   @ref Developer
976477729cfSJeremy L Thompson **/
977*e15f9bd0SJeremy L Thompson int CeedSetErrorHandler(Ceed ceed, CeedErrorHandler eh) {
978477729cfSJeremy L Thompson   ceed->Error = eh;
979477729cfSJeremy L Thompson   if (ceed->delegate) CeedSetErrorHandler(ceed->delegate, eh);
980477729cfSJeremy L Thompson   for (int i=0; i<ceed->objdelegatecount; i++)
981477729cfSJeremy L Thompson     CeedSetErrorHandler(ceed->objdelegates[i].delegate, eh);
982*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
983477729cfSJeremy L Thompson }
984477729cfSJeremy L Thompson 
985477729cfSJeremy L Thompson /**
986477729cfSJeremy L Thompson   @brief Get error message
987477729cfSJeremy L Thompson 
988477729cfSJeremy L Thompson   The error message is only stored when using the error handler
989477729cfSJeremy L Thompson     CeedErrorStore()
990477729cfSJeremy L Thompson 
991477729cfSJeremy L Thompson   @param[in] ceed     Ceed contex to retrieve error message
992477729cfSJeremy L Thompson   @param[out] errmsg  Char pointer to hold error message
993477729cfSJeremy L Thompson 
994477729cfSJeremy L Thompson   @ref Developer
995477729cfSJeremy L Thompson **/
996477729cfSJeremy L Thompson int CeedGetErrorMessage(Ceed ceed, const char **errmsg) {
9973f4a9821SAndrew T. Barker   if (ceed->parent)
9983f4a9821SAndrew T. Barker     return CeedGetErrorMessage(ceed->parent, errmsg);
9993f4a9821SAndrew T. Barker   if (ceed->opfallbackparent)
10003f4a9821SAndrew T. Barker     return CeedGetErrorMessage(ceed->opfallbackparent, errmsg);
1001477729cfSJeremy L Thompson   *errmsg = ceed->errmsg;
1002*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1003477729cfSJeremy L Thompson }
1004477729cfSJeremy L Thompson 
1005477729cfSJeremy L Thompson /**
1006477729cfSJeremy L Thompson   @brief Restore error message
1007477729cfSJeremy L Thompson 
1008477729cfSJeremy L Thompson   The error message is only stored when using the error handler
1009477729cfSJeremy L Thompson     CeedErrorStore()
1010477729cfSJeremy L Thompson 
1011477729cfSJeremy L Thompson   @param[in] ceed     Ceed contex to restore error message
1012477729cfSJeremy L Thompson   @param[out] errmsg  Char pointer that holds error message
1013477729cfSJeremy L Thompson 
1014477729cfSJeremy L Thompson   @ref Developer
1015477729cfSJeremy L Thompson **/
1016477729cfSJeremy L Thompson int CeedResetErrorMessage(Ceed ceed, const char **errmsg) {
10173f4a9821SAndrew T. Barker   if (ceed->parent)
10183f4a9821SAndrew T. Barker     return CeedResetErrorMessage(ceed->parent, errmsg);
10193f4a9821SAndrew T. Barker   if (ceed->opfallbackparent)
10203f4a9821SAndrew T. Barker     return CeedResetErrorMessage(ceed->opfallbackparent, errmsg);
1021477729cfSJeremy L Thompson   *errmsg = NULL;
1022477729cfSJeremy L Thompson   memcpy(ceed->errmsg, "No error message stored", 24);
1023*e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1024477729cfSJeremy L Thompson }
1025477729cfSJeremy L Thompson 
10261070991dSJed Brown /**
10271070991dSJed Brown   @brief Get libCEED library version info
10281070991dSJed Brown 
10291070991dSJed Brown   libCEED version numbers have the form major.minor.patch. Non-release versions
10301070991dSJed Brown   may contain unstable interfaces.
10311070991dSJed Brown 
10321070991dSJed Brown   @param[out] major    Major version of the library
10331070991dSJed Brown   @param[out] minor    Minor version of the library
10341070991dSJed Brown   @param[out] patch    Patch (subminor) version of the library
10351070991dSJed Brown   @param[out] release  True for releases; false for development branches.
10361070991dSJed Brown 
10371070991dSJed Brown   The caller may pass NULL for any arguments that are not needed.
10381070991dSJed Brown 
10391070991dSJed Brown   @sa CEED_VERSION_GE()
10401070991dSJed Brown 
10411070991dSJed Brown   @ref Developer
10421070991dSJed Brown */
10431070991dSJed Brown int CeedGetVersion(int *major, int *minor, int *patch, bool *release) {
10441070991dSJed Brown   if (major) *major = CEED_VERSION_MAJOR;
10451070991dSJed Brown   if (minor) *minor = CEED_VERSION_MINOR;
10461070991dSJed Brown   if (patch) *patch = CEED_VERSION_PATCH;
10471070991dSJed Brown   if (release) *release = CEED_VERSION_RELEASE;
10481070991dSJed Brown   return 0;
10491070991dSJed Brown }
10501070991dSJed Brown 
1051d7b241e6Sjeremylt /// @}
1052