xref: /libCEED/interface/ceed.c (revision 990fdeb6bb8fc9af2da4472bdc0d1f57da5da0e5)
13d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3d7b241e6Sjeremylt //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5d7b241e6Sjeremylt //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7d7b241e6Sjeremylt 
8d7b241e6Sjeremylt #define _POSIX_C_SOURCE 200112
9ec3da8bcSJed Brown #include <ceed/ceed.h>
10ec3da8bcSJed Brown #include <ceed/backend.h>
113d576824SJeremy L Thompson #include <ceed-impl.h>
12aedaa0e5Sjeremylt #include <limits.h>
13d7b241e6Sjeremylt #include <stdarg.h>
146e79d475Sjeremylt #include <stddef.h>
15d7b241e6Sjeremylt #include <stdio.h>
16d7b241e6Sjeremylt #include <stdlib.h>
17d7b241e6Sjeremylt #include <string.h>
18d7b241e6Sjeremylt 
19d7b241e6Sjeremylt /// @cond DOXYGEN_SKIP
20d7b241e6Sjeremylt static CeedRequest ceed_request_immediate;
21d7b241e6Sjeremylt static CeedRequest ceed_request_ordered;
22d7b241e6Sjeremylt 
23d7b241e6Sjeremylt static struct {
24d7b241e6Sjeremylt   char prefix[CEED_MAX_RESOURCE_LEN];
25d7b241e6Sjeremylt   int (*init)(const char *resource, Ceed f);
26d7b241e6Sjeremylt   unsigned int priority;
27d7b241e6Sjeremylt } backends[32];
28d7b241e6Sjeremylt static size_t num_backends;
29fe2413ffSjeremylt 
306e79d475Sjeremylt #define CEED_FTABLE_ENTRY(class, method) \
316e79d475Sjeremylt   {#class #method, offsetof(struct class ##_private, method)}
32d7b241e6Sjeremylt /// @endcond
33d7b241e6Sjeremylt 
34d7b241e6Sjeremylt /// @file
35d7b241e6Sjeremylt /// Implementation of core components of Ceed library
367a982d89SJeremy L. Thompson 
377a982d89SJeremy L. Thompson /// @addtogroup CeedUser
38d7b241e6Sjeremylt /// @{
39d7b241e6Sjeremylt 
40dfdf5a53Sjeremylt /**
41dfdf5a53Sjeremylt   @brief Request immediate completion
42dfdf5a53Sjeremylt 
43dfdf5a53Sjeremylt   This predefined constant is passed as the \ref CeedRequest argument to
44dfdf5a53Sjeremylt   interfaces when the caller wishes for the operation to be performed
45dfdf5a53Sjeremylt   immediately.  The code
46dfdf5a53Sjeremylt 
47dfdf5a53Sjeremylt   @code
48dfdf5a53Sjeremylt     CeedOperatorApply(op, ..., CEED_REQUEST_IMMEDIATE);
49dfdf5a53Sjeremylt   @endcode
50dfdf5a53Sjeremylt 
51dfdf5a53Sjeremylt   is semantically equivalent to
52dfdf5a53Sjeremylt 
53dfdf5a53Sjeremylt   @code
54dfdf5a53Sjeremylt     CeedRequest request;
55dfdf5a53Sjeremylt     CeedOperatorApply(op, ..., &request);
56dfdf5a53Sjeremylt     CeedRequestWait(&request);
57dfdf5a53Sjeremylt   @endcode
58dfdf5a53Sjeremylt 
59dfdf5a53Sjeremylt   @sa CEED_REQUEST_ORDERED
60dfdf5a53Sjeremylt **/
61d7b241e6Sjeremylt CeedRequest *const CEED_REQUEST_IMMEDIATE = &ceed_request_immediate;
62d7b241e6Sjeremylt 
63d7b241e6Sjeremylt /**
64b11c1e72Sjeremylt   @brief Request ordered completion
65d7b241e6Sjeremylt 
66d7b241e6Sjeremylt   This predefined constant is passed as the \ref CeedRequest argument to
67d7b241e6Sjeremylt   interfaces when the caller wishes for the operation to be completed in the
68d7b241e6Sjeremylt   order that it is submitted to the device.  It is typically used in a construct
69d7b241e6Sjeremylt   such as
70d7b241e6Sjeremylt 
71d7b241e6Sjeremylt   @code
72d7b241e6Sjeremylt     CeedRequest request;
73d7b241e6Sjeremylt     CeedOperatorApply(op1, ..., CEED_REQUEST_ORDERED);
74d7b241e6Sjeremylt     CeedOperatorApply(op2, ..., &request);
75d7b241e6Sjeremylt     // other optional work
768b2d6f4aSMatthew Knepley     CeedRequestWait(&request);
77d7b241e6Sjeremylt   @endcode
78d7b241e6Sjeremylt 
79d7b241e6Sjeremylt   which allows the sequence to complete asynchronously but does not start
80d7b241e6Sjeremylt   `op2` until `op1` has completed.
81d7b241e6Sjeremylt 
82288c0443SJeremy L Thompson   @todo The current implementation is overly strict, offering equivalent
834cc79fe7SJed Brown   semantics to @ref CEED_REQUEST_IMMEDIATE.
84d7b241e6Sjeremylt 
85d7b241e6Sjeremylt   @sa CEED_REQUEST_IMMEDIATE
86d7b241e6Sjeremylt  */
87d7b241e6Sjeremylt CeedRequest *const CEED_REQUEST_ORDERED = &ceed_request_ordered;
88d7b241e6Sjeremylt 
89b11c1e72Sjeremylt /**
907a982d89SJeremy L. Thompson   @brief Wait for a CeedRequest to complete.
91dfdf5a53Sjeremylt 
927a982d89SJeremy L. Thompson   Calling CeedRequestWait on a NULL request is a no-op.
937a982d89SJeremy L. Thompson 
947a982d89SJeremy L. Thompson   @param req Address of CeedRequest to wait for; zeroed on completion.
957a982d89SJeremy L. Thompson 
967a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
977a982d89SJeremy L. Thompson 
987a982d89SJeremy L. Thompson   @ref User
99b11c1e72Sjeremylt **/
1007a982d89SJeremy L. Thompson int CeedRequestWait(CeedRequest *req) {
1017a982d89SJeremy L. Thompson   if (!*req)
102e15f9bd0SJeremy L Thompson     return CEED_ERROR_SUCCESS;
103e15f9bd0SJeremy L Thompson   return CeedError(NULL, CEED_ERROR_UNSUPPORTED,
104e15f9bd0SJeremy L Thompson                    "CeedRequestWait not implemented");
105683faae0SJed Brown }
1067a982d89SJeremy L. Thompson 
1077a982d89SJeremy L. Thompson /// @}
1087a982d89SJeremy L. Thompson 
1097a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1107a982d89SJeremy L. Thompson /// Ceed Library Internal Functions
1117a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1127a982d89SJeremy L. Thompson /// @addtogroup CeedDeveloper
1137a982d89SJeremy L. Thompson /// @{
114d7b241e6Sjeremylt 
1156a406739SJeremy L Thompson /**
1166a406739SJeremy L Thompson   @brief Register a Ceed backend internally.
1176a406739SJeremy L Thompson            Note: Backends should call `CeedRegister` instead.
1186a406739SJeremy L Thompson 
1196a406739SJeremy L Thompson   @param prefix    Prefix of resources for this backend to respond to.  For
1206a406739SJeremy L Thompson                      example, the reference backend responds to "/cpu/self".
1216a406739SJeremy L Thompson   @param init      Initialization function called by CeedInit() when the backend
1226a406739SJeremy L Thompson                      is selected to drive the requested resource.
1236a406739SJeremy L Thompson   @param priority  Integer priority.  Lower values are preferred in case the
1246a406739SJeremy L Thompson                      resource requested by CeedInit() has non-unique best prefix
1256a406739SJeremy L Thompson                      match.
1266a406739SJeremy L Thompson 
1276a406739SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1286a406739SJeremy L Thompson 
1296a406739SJeremy L Thompson   @ref Developer
1306a406739SJeremy L Thompson **/
1316a406739SJeremy L Thompson int CeedRegisterImpl(const char *prefix, int (*init)(const char *, Ceed),
1326a406739SJeremy L Thompson                      unsigned int priority) {
1336a406739SJeremy L Thompson   if (num_backends >= sizeof(backends) / sizeof(backends[0]))
1346a406739SJeremy L Thompson     // LCOV_EXCL_START
1356a406739SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR, "Too many backends");
1366a406739SJeremy L Thompson   // LCOV_EXCL_STOP
1376a406739SJeremy L Thompson 
1386a406739SJeremy L Thompson   strncpy(backends[num_backends].prefix, prefix, CEED_MAX_RESOURCE_LEN);
1396a406739SJeremy L Thompson   backends[num_backends].prefix[CEED_MAX_RESOURCE_LEN-1] = 0;
1406a406739SJeremy L Thompson   backends[num_backends].init = init;
1416a406739SJeremy L Thompson   backends[num_backends].priority = priority;
1426a406739SJeremy L Thompson   num_backends++;
1436a406739SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1446a406739SJeremy L Thompson }
1456a406739SJeremy L Thompson 
1467a982d89SJeremy L. Thompson /// @}
147d7b241e6Sjeremylt 
1487a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1497a982d89SJeremy L. Thompson /// Ceed Backend API
1507a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
1517a982d89SJeremy L. Thompson /// @addtogroup CeedBackend
1527a982d89SJeremy L. Thompson /// @{
153d7b241e6Sjeremylt 
154b11c1e72Sjeremylt /**
1553f21f6b1SJeremy L Thompson   @brief Return value of CEED_DEBUG environment variable
15660f9e2d6SJeremy L Thompson 
15760f9e2d6SJeremy L Thompson   @param ceed    Ceed context
15860f9e2d6SJeremy L Thompson 
1593f21f6b1SJeremy L Thompson   @return boolean value: true  - debugging mode enabled
1603f21f6b1SJeremy L Thompson                          false - debugging mode disabled
16160f9e2d6SJeremy L Thompson 
16260f9e2d6SJeremy L Thompson   @ref Backend
16360f9e2d6SJeremy L Thompson **/
164fc6bbcedSJeremy L Thompson // LCOV_EXCL_START
1653f21f6b1SJeremy L Thompson bool CeedDebugFlag(const Ceed ceed) {
1663f21f6b1SJeremy L Thompson   return ceed->is_debug;
16760f9e2d6SJeremy L Thompson }
168fc6bbcedSJeremy L Thompson // LCOV_EXCL_STOP
16960f9e2d6SJeremy L Thompson 
17060f9e2d6SJeremy L Thompson /**
1713f21f6b1SJeremy L Thompson   @brief Return value of CEED_DEBUG environment variable
17260f9e2d6SJeremy L Thompson 
1733f21f6b1SJeremy L Thompson   @return boolean value: true  - debugging mode enabled
1743f21f6b1SJeremy L Thompson                          false - debugging mode disabled
1753f21f6b1SJeremy L Thompson 
1763f21f6b1SJeremy L Thompson   @ref Backend
1773f21f6b1SJeremy L Thompson **/
1783f21f6b1SJeremy L Thompson // LCOV_EXCL_START
1793f21f6b1SJeremy L Thompson bool CeedDebugFlagEnv(void) {
1803f21f6b1SJeremy L Thompson   return !!getenv("CEED_DEBUG") || !!getenv("DEBUG") || !!getenv("DBG");
1813f21f6b1SJeremy L Thompson }
1823f21f6b1SJeremy L Thompson // LCOV_EXCL_STOP
1833f21f6b1SJeremy L Thompson 
1843f21f6b1SJeremy L Thompson /**
1853f21f6b1SJeremy L Thompson   @brief Print debugging information in color
1863f21f6b1SJeremy L Thompson 
18760f9e2d6SJeremy L Thompson   @param color   Color to print
18860f9e2d6SJeremy L Thompson   @param format  Printing format
18960f9e2d6SJeremy L Thompson 
19060f9e2d6SJeremy L Thompson   @ref Backend
19160f9e2d6SJeremy L Thompson **/
192fc6bbcedSJeremy L Thompson // LCOV_EXCL_START
1933f21f6b1SJeremy L Thompson void CeedDebugImpl256(const unsigned char color, const char *format,...) {
19460f9e2d6SJeremy L Thompson   va_list args;
19560f9e2d6SJeremy L Thompson   va_start(args, format);
19660f9e2d6SJeremy L Thompson   fflush(stdout);
1973f21f6b1SJeremy L Thompson   if (color != CEED_DEBUG_COLOR_NONE)
19860f9e2d6SJeremy L Thompson     fprintf(stdout, "\033[38;5;%dm", color);
19960f9e2d6SJeremy L Thompson   vfprintf(stdout, format, args);
2003f21f6b1SJeremy L Thompson   if (color != CEED_DEBUG_COLOR_NONE)
20160f9e2d6SJeremy L Thompson     fprintf(stdout, "\033[m");
20260f9e2d6SJeremy L Thompson   fprintf(stdout, "\n");
20360f9e2d6SJeremy L Thompson   fflush(stdout);
20460f9e2d6SJeremy L Thompson   va_end(args);
20560f9e2d6SJeremy L Thompson }
206fc6bbcedSJeremy L Thompson // LCOV_EXCL_STOP
20760f9e2d6SJeremy L Thompson 
20860f9e2d6SJeremy L Thompson /**
209b11c1e72Sjeremylt   @brief Allocate an array on the host; use CeedMalloc()
210b11c1e72Sjeremylt 
211b11c1e72Sjeremylt   Memory usage can be tracked by the library.  This ensures sufficient
212b11c1e72Sjeremylt     alignment for vectorization and should be used for large allocations.
213b11c1e72Sjeremylt 
214b11c1e72Sjeremylt   @param n     Number of units to allocate
215b11c1e72Sjeremylt   @param unit  Size of each unit
216b11c1e72Sjeremylt   @param p     Address of pointer to hold the result.
217b11c1e72Sjeremylt 
218b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
219b11c1e72Sjeremylt 
220b11c1e72Sjeremylt   @sa CeedFree()
221dfdf5a53Sjeremylt 
2227a982d89SJeremy L. Thompson   @ref Backend
223b11c1e72Sjeremylt **/
224d7b241e6Sjeremylt int CeedMallocArray(size_t n, size_t unit, void *p) {
225d7b241e6Sjeremylt   int ierr = posix_memalign((void **)p, CEED_ALIGN, n*unit);
226d7b241e6Sjeremylt   if (ierr)
227c042f62fSJeremy L Thompson     // LCOV_EXCL_START
228e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR,
229e15f9bd0SJeremy L Thompson                      "posix_memalign failed to allocate %zd "
2301d102b48SJeremy L Thompson                      "members of size %zd\n", n, unit);
231c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
232e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
233d7b241e6Sjeremylt }
234d7b241e6Sjeremylt 
235b11c1e72Sjeremylt /**
236b11c1e72Sjeremylt   @brief Allocate a cleared (zeroed) array on the host; use CeedCalloc()
237b11c1e72Sjeremylt 
238b11c1e72Sjeremylt   Memory usage can be tracked by the library.
239b11c1e72Sjeremylt 
240b11c1e72Sjeremylt   @param n     Number of units to allocate
241b11c1e72Sjeremylt   @param unit  Size of each unit
242b11c1e72Sjeremylt   @param p     Address of pointer to hold the result.
243b11c1e72Sjeremylt 
244b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
245b11c1e72Sjeremylt 
246b11c1e72Sjeremylt   @sa CeedFree()
247dfdf5a53Sjeremylt 
2487a982d89SJeremy L. Thompson   @ref Backend
249b11c1e72Sjeremylt **/
250d7b241e6Sjeremylt int CeedCallocArray(size_t n, size_t unit, void *p) {
251d7b241e6Sjeremylt   *(void **)p = calloc(n, unit);
252d7b241e6Sjeremylt   if (n && unit && !*(void **)p)
253c042f62fSJeremy L Thompson     // LCOV_EXCL_START
254e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR,
255e15f9bd0SJeremy L Thompson                      "calloc failed to allocate %zd members of size "
2561d102b48SJeremy L Thompson                      "%zd\n", n, unit);
257c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
258e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
259d7b241e6Sjeremylt }
260d7b241e6Sjeremylt 
261b11c1e72Sjeremylt /**
262b11c1e72Sjeremylt   @brief Reallocate an array on the host; use CeedRealloc()
263b11c1e72Sjeremylt 
264b11c1e72Sjeremylt   Memory usage can be tracked by the library.
265b11c1e72Sjeremylt 
266b11c1e72Sjeremylt   @param n     Number of units to allocate
267b11c1e72Sjeremylt   @param unit  Size of each unit
268b11c1e72Sjeremylt   @param p     Address of pointer to hold the result.
269b11c1e72Sjeremylt 
270b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
271b11c1e72Sjeremylt 
272b11c1e72Sjeremylt   @sa CeedFree()
273dfdf5a53Sjeremylt 
2747a982d89SJeremy L. Thompson   @ref Backend
275b11c1e72Sjeremylt **/
276d7b241e6Sjeremylt int CeedReallocArray(size_t n, size_t unit, void *p) {
277d7b241e6Sjeremylt   *(void **)p = realloc(*(void **)p, n*unit);
278d7b241e6Sjeremylt   if (n && unit && !*(void **)p)
279c042f62fSJeremy L Thompson     // LCOV_EXCL_START
280e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR,
281e15f9bd0SJeremy L Thompson                      "realloc failed to allocate %zd members of size "
2821d102b48SJeremy L Thompson                      "%zd\n", n, unit);
283c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
284e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
285d7b241e6Sjeremylt }
286d7b241e6Sjeremylt 
287f7e22acaSJeremy L Thompson /**
288f7e22acaSJeremy L Thompson   @brief Allocate a cleared string buffer on the host
289f7e22acaSJeremy L Thompson 
290f7e22acaSJeremy L Thompson   Memory usage can be tracked by the library.
291f7e22acaSJeremy L Thompson 
292f7e22acaSJeremy L Thompson   @param source Pointer to string to be copied
293f7e22acaSJeremy L Thompson   @param copy   Pointer to variable to hold newly allocated string copy
294f7e22acaSJeremy L Thompson 
295f7e22acaSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
296f7e22acaSJeremy L Thompson 
297f7e22acaSJeremy L Thompson   @sa CeedFree()
298f7e22acaSJeremy L Thompson 
299f7e22acaSJeremy L Thompson   @ref Backend
300f7e22acaSJeremy L Thompson **/
301f7e22acaSJeremy L Thompson int CeedStringAllocCopy(const char *source, char **copy) {
302f7e22acaSJeremy L Thompson   int ierr;
303f7e22acaSJeremy L Thompson   size_t len = strlen(source);
304f7e22acaSJeremy L Thompson   ierr = CeedCalloc(len + 1, copy); CeedChk(ierr);
305d602d780SJeremy L Thompson   memcpy(*copy, source, len);
306f7e22acaSJeremy L Thompson   return CEED_ERROR_SUCCESS;
307f7e22acaSJeremy L Thompson }
308f7e22acaSJeremy L Thompson 
30934138859Sjeremylt /** Free memory allocated using CeedMalloc() or CeedCalloc()
31034138859Sjeremylt 
31134138859Sjeremylt   @param p  address of pointer to memory.  This argument is of type void* to
31234138859Sjeremylt               avoid needing a cast, but is the address of the pointer (which is
31334138859Sjeremylt               zeroed) rather than the pointer.
31434138859Sjeremylt **/
315d7b241e6Sjeremylt int CeedFree(void *p) {
316d7b241e6Sjeremylt   free(*(void **)p);
317d7b241e6Sjeremylt   *(void **)p = NULL;
318e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
319d7b241e6Sjeremylt }
320d7b241e6Sjeremylt 
321d7b241e6Sjeremylt /**
3227a982d89SJeremy L. Thompson   @brief Register a Ceed backend
323d7b241e6Sjeremylt 
3247a982d89SJeremy L. Thompson   @param prefix    Prefix of resources for this backend to respond to.  For
3257a982d89SJeremy L. Thompson                      example, the reference backend responds to "/cpu/self".
3267a982d89SJeremy L. Thompson   @param init      Initialization function called by CeedInit() when the backend
3277a982d89SJeremy L. Thompson                      is selected to drive the requested resource.
3287a982d89SJeremy L. Thompson   @param priority  Integer priority.  Lower values are preferred in case the
3297a982d89SJeremy L. Thompson                      resource requested by CeedInit() has non-unique best prefix
3307a982d89SJeremy L. Thompson                      match.
331b11c1e72Sjeremylt 
332b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
333dfdf5a53Sjeremylt 
3347a982d89SJeremy L. Thompson   @ref Backend
335b11c1e72Sjeremylt **/
3367a982d89SJeremy L. Thompson int CeedRegister(const char *prefix, int (*init)(const char *, Ceed),
3377a982d89SJeremy L. Thompson                  unsigned int priority) {
33810243053SJeremy L Thompson   CeedDebugEnv("Backend Register: %s", prefix);
3396a406739SJeremy L Thompson   CeedRegisterImpl(prefix, init, priority);
340e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
341d7b241e6Sjeremylt }
342d7b241e6Sjeremylt 
343b11c1e72Sjeremylt /**
34460f9e2d6SJeremy L Thompson   @brief Return debugging status flag
34560f9e2d6SJeremy L Thompson 
34660f9e2d6SJeremy L Thompson   @param ceed      Ceed context to get debugging flag
347d1d35e2fSjeremylt   @param is_debug  Variable to store debugging flag
34860f9e2d6SJeremy L Thompson 
34960f9e2d6SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
35060f9e2d6SJeremy L Thompson 
351d1d35e2fSjeremylt   @ref Backend
35260f9e2d6SJeremy L Thompson **/
353d1d35e2fSjeremylt int CeedIsDebug(Ceed ceed, bool *is_debug) {
3543f21f6b1SJeremy L Thompson   *is_debug = ceed->is_debug;
355e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
35660f9e2d6SJeremy L Thompson }
35760f9e2d6SJeremy L Thompson 
35860f9e2d6SJeremy L Thompson /**
3597a982d89SJeremy L. Thompson   @brief Retrieve a parent Ceed context
3607a982d89SJeremy L. Thompson 
3617a982d89SJeremy L. Thompson   @param ceed         Ceed context to retrieve parent of
3627a982d89SJeremy L. Thompson   @param[out] parent  Address to save the parent to
3637a982d89SJeremy L. Thompson 
3647a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
3657a982d89SJeremy L. Thompson 
3667a982d89SJeremy L. Thompson   @ref Backend
3677a982d89SJeremy L. Thompson **/
3687a982d89SJeremy L. Thompson int CeedGetParent(Ceed ceed, Ceed *parent) {
3697a982d89SJeremy L. Thompson   int ierr;
3707a982d89SJeremy L. Thompson   if (ceed->parent) {
3717a982d89SJeremy L. Thompson     ierr = CeedGetParent(ceed->parent, parent); CeedChk(ierr);
372e15f9bd0SJeremy L Thompson     return CEED_ERROR_SUCCESS;
3737a982d89SJeremy L. Thompson   }
3747a982d89SJeremy L. Thompson   *parent = ceed;
375e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3767a982d89SJeremy L. Thompson }
3777a982d89SJeremy L. Thompson 
3787a982d89SJeremy L. Thompson /**
3797a982d89SJeremy L. Thompson   @brief Retrieve a delegate Ceed context
3807a982d89SJeremy L. Thompson 
3817a982d89SJeremy L. Thompson   @param ceed           Ceed context to retrieve delegate of
3827a982d89SJeremy L. Thompson   @param[out] delegate  Address to save the delegate to
3837a982d89SJeremy L. Thompson 
3847a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
3857a982d89SJeremy L. Thompson 
3867a982d89SJeremy L. Thompson   @ref Backend
3877a982d89SJeremy L. Thompson **/
3887a982d89SJeremy L. Thompson int CeedGetDelegate(Ceed ceed, Ceed *delegate) {
3897a982d89SJeremy L. Thompson   *delegate = ceed->delegate;
390e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3917a982d89SJeremy L. Thompson }
3927a982d89SJeremy L. Thompson 
3937a982d89SJeremy L. Thompson /**
3947a982d89SJeremy L. Thompson   @brief Set a delegate Ceed context
3957a982d89SJeremy L. Thompson 
3967a982d89SJeremy L. Thompson   This function allows a Ceed context to set a delegate Ceed context. All
3977a982d89SJeremy L. Thompson     backend implementations default to the delegate Ceed context, unless
3987a982d89SJeremy L. Thompson     overridden.
3997a982d89SJeremy L. Thompson 
4007a982d89SJeremy L. Thompson   @param ceed           Ceed context to set delegate of
4017a982d89SJeremy L. Thompson   @param[out] delegate  Address to set the delegate to
4027a982d89SJeremy L. Thompson 
4037a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4047a982d89SJeremy L. Thompson 
4057a982d89SJeremy L. Thompson   @ref Backend
4067a982d89SJeremy L. Thompson **/
4077a982d89SJeremy L. Thompson int CeedSetDelegate(Ceed ceed, Ceed delegate) {
4087a982d89SJeremy L. Thompson   ceed->delegate = delegate;
4097a982d89SJeremy L. Thompson   delegate->parent = ceed;
410e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4117a982d89SJeremy L. Thompson }
4127a982d89SJeremy L. Thompson 
4137a982d89SJeremy L. Thompson /**
4147a982d89SJeremy L. Thompson   @brief Retrieve a delegate Ceed context for a specific object type
4157a982d89SJeremy L. Thompson 
4167a982d89SJeremy L. Thompson   @param ceed           Ceed context to retrieve delegate of
4177a982d89SJeremy L. Thompson   @param[out] delegate  Address to save the delegate to
418d1d35e2fSjeremylt   @param[in] obj_name   Name of the object type to retrieve delegate for
4197a982d89SJeremy L. Thompson 
4207a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4217a982d89SJeremy L. Thompson 
4227a982d89SJeremy L. Thompson   @ref Backend
4237a982d89SJeremy L. Thompson **/
424d1d35e2fSjeremylt int CeedGetObjectDelegate(Ceed ceed, Ceed *delegate, const char *obj_name) {
4257a982d89SJeremy L. Thompson   CeedInt ierr;
4267a982d89SJeremy L. Thompson 
4277a982d89SJeremy L. Thompson   // Check for object delegate
428d1d35e2fSjeremylt   for (CeedInt i=0; i<ceed->obj_delegate_count; i++)
429d1d35e2fSjeremylt     if (!strcmp(obj_name, ceed->obj_delegates->obj_name)) {
430d1d35e2fSjeremylt       *delegate = ceed->obj_delegates->delegate;
431e15f9bd0SJeremy L Thompson       return CEED_ERROR_SUCCESS;
4327a982d89SJeremy L. Thompson     }
4337a982d89SJeremy L. Thompson 
4347a982d89SJeremy L. Thompson   // Use default delegate if no object delegate
4357a982d89SJeremy L. Thompson   ierr = CeedGetDelegate(ceed, delegate); CeedChk(ierr);
436e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4377a982d89SJeremy L. Thompson }
4387a982d89SJeremy L. Thompson 
4397a982d89SJeremy L. Thompson /**
4407a982d89SJeremy L. Thompson   @brief Set a delegate Ceed context for a specific object type
4417a982d89SJeremy L. Thompson 
4427a982d89SJeremy L. Thompson   This function allows a Ceed context to set a delegate Ceed context for a
4437a982d89SJeremy L. Thompson     given type of Ceed object. All backend implementations default to the
4447a982d89SJeremy L. Thompson     delegate Ceed context for this object. For example,
4457a982d89SJeremy L. Thompson     CeedSetObjectDelegate(ceed, refceed, "Basis")
4467a982d89SJeremy L. Thompson   uses refceed implementations for all CeedBasis backend functions.
4477a982d89SJeremy L. Thompson 
4487a982d89SJeremy L. Thompson   @param ceed           Ceed context to set delegate of
4497a982d89SJeremy L. Thompson   @param[out] delegate  Address to set the delegate to
450d1d35e2fSjeremylt   @param[in] obj_name   Name of the object type to set delegate for
4517a982d89SJeremy L. Thompson 
4527a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4537a982d89SJeremy L. Thompson 
4547a982d89SJeremy L. Thompson   @ref Backend
4557a982d89SJeremy L. Thompson **/
456d1d35e2fSjeremylt int CeedSetObjectDelegate(Ceed ceed, Ceed delegate, const char *obj_name) {
457f7e22acaSJeremy L Thompson   int ierr;
458d1d35e2fSjeremylt   CeedInt count = ceed->obj_delegate_count;
4597a982d89SJeremy L. Thompson 
4607a982d89SJeremy L. Thompson   // Malloc or Realloc
4617a982d89SJeremy L. Thompson   if (count) {
462d1d35e2fSjeremylt     ierr = CeedRealloc(count+1, &ceed->obj_delegates); CeedChk(ierr);
4637a982d89SJeremy L. Thompson   } else {
464d1d35e2fSjeremylt     ierr = CeedCalloc(1, &ceed->obj_delegates); CeedChk(ierr);
4657a982d89SJeremy L. Thompson   }
466d1d35e2fSjeremylt   ceed->obj_delegate_count++;
4677a982d89SJeremy L. Thompson 
4687a982d89SJeremy L. Thompson   // Set object delegate
469d1d35e2fSjeremylt   ceed->obj_delegates[count].delegate = delegate;
470f7e22acaSJeremy L Thompson   ierr = CeedStringAllocCopy(obj_name, &ceed->obj_delegates[count].obj_name);
471f7e22acaSJeremy L Thompson   CeedChk(ierr);
4727a982d89SJeremy L. Thompson 
4737a982d89SJeremy L. Thompson   // Set delegate parent
4747a982d89SJeremy L. Thompson   delegate->parent = ceed;
475e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4767a982d89SJeremy L. Thompson }
4777a982d89SJeremy L. Thompson 
4787a982d89SJeremy L. Thompson /**
4797a982d89SJeremy L. Thompson   @brief Get the fallback resource for CeedOperators
4807a982d89SJeremy L. Thompson 
4817a982d89SJeremy L. Thompson   @param ceed           Ceed context
4827a982d89SJeremy L. Thompson   @param[out] resource  Variable to store fallback resource
4837a982d89SJeremy L. Thompson 
4847a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4857a982d89SJeremy L. Thompson 
4867a982d89SJeremy L. Thompson   @ref Backend
4877a982d89SJeremy L. Thompson **/
4887a982d89SJeremy L. Thompson 
4897a982d89SJeremy L. Thompson int CeedGetOperatorFallbackResource(Ceed ceed, const char **resource) {
490d1d35e2fSjeremylt   *resource = (const char *)ceed->op_fallback_resource;
491e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4927a982d89SJeremy L. Thompson }
4937a982d89SJeremy L. Thompson 
4947a982d89SJeremy L. Thompson /**
4958687e1d4SJeremy L Thompson   @brief Get the fallback Ceed for CeedOperators
4968687e1d4SJeremy L Thompson 
4978687e1d4SJeremy L Thompson   @param ceed                Ceed context
4988687e1d4SJeremy L Thompson   @param[out] fallback_ceed  Variable to store fallback Ceed
4998687e1d4SJeremy L Thompson 
5008687e1d4SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
5018687e1d4SJeremy L Thompson 
5028687e1d4SJeremy L Thompson   @ref Backend
5038687e1d4SJeremy L Thompson **/
5048687e1d4SJeremy L Thompson 
5058687e1d4SJeremy L Thompson int CeedGetOperatorFallbackCeed(Ceed ceed, Ceed *fallback_ceed) {
5068687e1d4SJeremy L Thompson   int ierr;
5078687e1d4SJeremy L Thompson 
508d04bbc78SJeremy L Thompson   if (ceed->has_valid_op_fallback_resource) {
509d04bbc78SJeremy L Thompson     CeedDebug256(ceed, 1, "---------- CeedOperator Fallback ----------\n");
510d04bbc78SJeremy L Thompson     CeedDebug256(ceed, 255, "Getting fallback from %s to %s\n", ceed->resource,
511d04bbc78SJeremy L Thompson                  ceed->op_fallback_resource);
512d04bbc78SJeremy L Thompson   }
5138687e1d4SJeremy L Thompson 
514d04bbc78SJeremy L Thompson   // Create fallback Ceed if uninitalized
515d04bbc78SJeremy L Thompson   if (!ceed->op_fallback_ceed && ceed->has_valid_op_fallback_resource) {
516d04bbc78SJeremy L Thompson     CeedDebug256(ceed, 255, "Creating fallback Ceed");
517d04bbc78SJeremy L Thompson 
5188687e1d4SJeremy L Thompson     Ceed fallback_ceed;
519d04bbc78SJeremy L Thompson     const char *fallback_resource;
520d04bbc78SJeremy L Thompson 
521d04bbc78SJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(ceed, &fallback_resource); CeedChk(ierr);
5228687e1d4SJeremy L Thompson     ierr = CeedInit(fallback_resource, &fallback_ceed); CeedChk(ierr);
5238687e1d4SJeremy L Thompson     fallback_ceed->op_fallback_parent = ceed;
5248687e1d4SJeremy L Thompson     fallback_ceed->Error = ceed->Error;
5258687e1d4SJeremy L Thompson     ceed->op_fallback_ceed = fallback_ceed;
5268687e1d4SJeremy L Thompson   }
5278687e1d4SJeremy L Thompson   *fallback_ceed = ceed->op_fallback_ceed;
5288687e1d4SJeremy L Thompson 
5298687e1d4SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5308687e1d4SJeremy L Thompson }
5318687e1d4SJeremy L Thompson 
5328687e1d4SJeremy L Thompson /**
5337a982d89SJeremy L. Thompson   @brief Set the fallback resource for CeedOperators. The current resource, if
5347a982d89SJeremy L. Thompson            any, is freed by calling this function. This string is freed upon the
5357a982d89SJeremy L. Thompson            destruction of the Ceed context.
5367a982d89SJeremy L. Thompson 
5377a982d89SJeremy L. Thompson   @param[out] ceed Ceed context
5387a982d89SJeremy L. Thompson   @param resource  Fallback resource to set
5397a982d89SJeremy L. Thompson 
5407a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5417a982d89SJeremy L. Thompson 
5427a982d89SJeremy L. Thompson   @ref Backend
5437a982d89SJeremy L. Thompson **/
5447a982d89SJeremy L. Thompson 
5457a982d89SJeremy L. Thompson int CeedSetOperatorFallbackResource(Ceed ceed, const char *resource) {
5467a982d89SJeremy L. Thompson   int ierr;
5477a982d89SJeremy L. Thompson 
5487a982d89SJeremy L. Thompson   // Free old
549d1d35e2fSjeremylt   ierr = CeedFree(&ceed->op_fallback_resource); CeedChk(ierr);
5507a982d89SJeremy L. Thompson 
5517a982d89SJeremy L. Thompson   // Set new
552f7e22acaSJeremy L Thompson   ierr = CeedStringAllocCopy(resource, (char **)&ceed->op_fallback_resource);
553f7e22acaSJeremy L Thompson   CeedChk(ierr);
554d04bbc78SJeremy L Thompson 
555d04bbc78SJeremy L Thompson   // Check validity
556a350620eSJeremy L Thompson   ceed->has_valid_op_fallback_resource = ceed->op_fallback_resource &&
557a350620eSJeremy L Thompson                                          ceed->resource &&
558d04bbc78SJeremy L Thompson                                          strcmp(ceed->op_fallback_resource, ceed->resource);
559d04bbc78SJeremy L Thompson 
560e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5617a982d89SJeremy L. Thompson }
5627a982d89SJeremy L. Thompson 
5637a982d89SJeremy L. Thompson /**
5647a982d89SJeremy L. Thompson   @brief Get the parent Ceed context associated with a fallback Ceed context
5657a982d89SJeremy L. Thompson            for a CeedOperator
5667a982d89SJeremy L. Thompson 
5677a982d89SJeremy L. Thompson   @param ceed         Ceed context
5687a982d89SJeremy L. Thompson   @param[out] parent  Variable to store parent Ceed context
5697a982d89SJeremy L. Thompson 
5707a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5717a982d89SJeremy L. Thompson 
5727a982d89SJeremy L. Thompson   @ref Backend
5737a982d89SJeremy L. Thompson **/
5747a982d89SJeremy L. Thompson 
5757a982d89SJeremy L. Thompson int CeedGetOperatorFallbackParentCeed(Ceed ceed, Ceed *parent) {
576d1d35e2fSjeremylt   *parent = ceed->op_fallback_parent;
577e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5787a982d89SJeremy L. Thompson }
5797a982d89SJeremy L. Thompson 
5807a982d89SJeremy L. Thompson /**
5819525855cSJeremy L Thompson   @brief Flag Ceed context as deterministic
5829525855cSJeremy L Thompson 
5839525855cSJeremy L Thompson   @param ceed                   Ceed to flag as deterministic
58496b902e2Sjeremylt   @param[out] is_deterministic  Deterministic status to set
5859525855cSJeremy L Thompson 
5869525855cSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
5879525855cSJeremy L Thompson 
5889525855cSJeremy L Thompson   @ref Backend
5899525855cSJeremy L Thompson **/
5909525855cSJeremy L Thompson 
591d1d35e2fSjeremylt int CeedSetDeterministic(Ceed ceed, bool is_deterministic) {
592d1d35e2fSjeremylt   ceed->is_deterministic = is_deterministic;
593e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5949525855cSJeremy L Thompson }
5959525855cSJeremy L Thompson 
5969525855cSJeremy L Thompson /**
5977a982d89SJeremy L. Thompson   @brief Set a backend function
5987a982d89SJeremy L. Thompson 
5997a982d89SJeremy L. Thompson   This function is used for a backend to set the function associated with
6007a982d89SJeremy L. Thompson   the Ceed objects. For example,
6017a982d89SJeremy L. Thompson     CeedSetBackendFunction(ceed, "Ceed", ceed, "VectorCreate", BackendVectorCreate)
6027a982d89SJeremy L. Thompson   sets the backend implementation of 'CeedVectorCreate' and
6037a982d89SJeremy L. Thompson     CeedSetBackendFunction(ceed, "Basis", basis, "Apply", BackendBasisApply)
6047a982d89SJeremy L. Thompson   sets the backend implementation of 'CeedBasisApply'. Note, the prefix 'Ceed'
6057a982d89SJeremy L. Thompson   is not required for the object type ("Basis" vs "CeedBasis").
6067a982d89SJeremy L. Thompson 
6077a982d89SJeremy L. Thompson   @param ceed         Ceed context for error handling
6087a982d89SJeremy L. Thompson   @param type         Type of Ceed object to set function for
6097a982d89SJeremy L. Thompson   @param[out] object  Ceed object to set function for
610d1d35e2fSjeremylt   @param func_name    Name of function to set
6117a982d89SJeremy L. Thompson   @param f            Function to set
6127a982d89SJeremy L. Thompson 
6137a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
6147a982d89SJeremy L. Thompson 
6157a982d89SJeremy L. Thompson   @ref Backend
6167a982d89SJeremy L. Thompson **/
6177a982d89SJeremy L. Thompson int CeedSetBackendFunction(Ceed ceed, const char *type, void *object,
618d1d35e2fSjeremylt                            const char *func_name, int (*f)()) {
619d1d35e2fSjeremylt   char lookup_name[CEED_MAX_RESOURCE_LEN+1] = "";
6207a982d89SJeremy L. Thompson 
6217a982d89SJeremy L. Thompson   // Build lookup name
6227a982d89SJeremy L. Thompson   if (strcmp(type, "Ceed"))
623d1d35e2fSjeremylt     strncat (lookup_name, "Ceed", CEED_MAX_RESOURCE_LEN);
624d1d35e2fSjeremylt   strncat(lookup_name, type, CEED_MAX_RESOURCE_LEN);
625d1d35e2fSjeremylt   strncat(lookup_name, func_name, CEED_MAX_RESOURCE_LEN);
6267a982d89SJeremy L. Thompson 
6277a982d89SJeremy L. Thompson   // Find and use offset
628d1d35e2fSjeremylt   for (CeedInt i = 0; ceed->f_offsets[i].func_name; i++)
629d1d35e2fSjeremylt     if (!strcmp(ceed->f_offsets[i].func_name, lookup_name)) {
630d1d35e2fSjeremylt       size_t offset = ceed->f_offsets[i].offset;
6317a982d89SJeremy L. Thompson       int (**fpointer)(void) = (int (**)(void))((char *)object + offset); // *NOPAD*
6327a982d89SJeremy L. Thompson       *fpointer = f;
633e15f9bd0SJeremy L Thompson       return CEED_ERROR_SUCCESS;
6347a982d89SJeremy L. Thompson     }
6357a982d89SJeremy L. Thompson 
6367a982d89SJeremy L. Thompson   // LCOV_EXCL_START
637e15f9bd0SJeremy L Thompson   return CeedError(ceed, CEED_ERROR_UNSUPPORTED,
638e15f9bd0SJeremy L Thompson                    "Requested function '%s' was not found for CEED "
639d1d35e2fSjeremylt                    "object '%s'", func_name, type);
6407a982d89SJeremy L. Thompson   // LCOV_EXCL_STOP
6417a982d89SJeremy L. Thompson }
6427a982d89SJeremy L. Thompson 
6437a982d89SJeremy L. Thompson /**
6447a982d89SJeremy L. Thompson   @brief Retrieve backend data for a Ceed context
6457a982d89SJeremy L. Thompson 
6467a982d89SJeremy L. Thompson   @param ceed       Ceed context to retrieve data of
6477a982d89SJeremy L. Thompson   @param[out] data  Address to save data to
6487a982d89SJeremy L. Thompson 
6497a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
6507a982d89SJeremy L. Thompson 
6517a982d89SJeremy L. Thompson   @ref Backend
6527a982d89SJeremy L. Thompson **/
653777ff853SJeremy L Thompson int CeedGetData(Ceed ceed, void *data) {
654777ff853SJeremy L Thompson   *(void **)data = ceed->data;
655e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
6567a982d89SJeremy L. Thompson }
6577a982d89SJeremy L. Thompson 
6587a982d89SJeremy L. Thompson /**
6597a982d89SJeremy L. Thompson   @brief Set backend data for a Ceed context
6607a982d89SJeremy L. Thompson 
6617a982d89SJeremy L. Thompson   @param ceed  Ceed context to set data of
6627a982d89SJeremy L. Thompson   @param data  Address of data to set
6637a982d89SJeremy L. Thompson 
6647a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
6657a982d89SJeremy L. Thompson 
6667a982d89SJeremy L. Thompson   @ref Backend
6677a982d89SJeremy L. Thompson **/
668777ff853SJeremy L Thompson int CeedSetData(Ceed ceed, void *data) {
669777ff853SJeremy L Thompson   ceed->data = data;
670e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
6717a982d89SJeremy L. Thompson }
6727a982d89SJeremy L. Thompson 
67334359f16Sjeremylt /**
67434359f16Sjeremylt   @brief Increment the reference counter for a Ceed context
67534359f16Sjeremylt 
67634359f16Sjeremylt   @param ceed  Ceed context to increment the reference counter
67734359f16Sjeremylt 
67834359f16Sjeremylt   @return An error code: 0 - success, otherwise - failure
67934359f16Sjeremylt 
68034359f16Sjeremylt   @ref Backend
68134359f16Sjeremylt **/
6829560d06aSjeremylt int CeedReference(Ceed ceed) {
68334359f16Sjeremylt   ceed->ref_count++;
68434359f16Sjeremylt   return CEED_ERROR_SUCCESS;
68534359f16Sjeremylt }
68634359f16Sjeremylt 
6877a982d89SJeremy L. Thompson /// @}
6887a982d89SJeremy L. Thompson 
6897a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
6907a982d89SJeremy L. Thompson /// Ceed Public API
6917a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
6927a982d89SJeremy L. Thompson /// @addtogroup CeedUser
6937a982d89SJeremy L. Thompson /// @{
6947a982d89SJeremy L. Thompson 
6957a982d89SJeremy L. Thompson /**
69692ee7d1cSjeremylt   @brief Get the list of available resource names for Ceed contexts
6979ff86846Sjeremylt   Note: The caller is responsible for `free()`ing the resources and priorities arrays,
6989ff86846Sjeremylt           but should not `free()` the contents of the resources array.
69922e44211Sjeremylt 
70092ee7d1cSjeremylt   @param[out] n           Number of available resources
70192ee7d1cSjeremylt   @param[out] resources   List of available resource names
70222e44211Sjeremylt   @param[out] priorities  Resource name prioritization values, lower is better
70322e44211Sjeremylt 
70422e44211Sjeremylt   @return An error code: 0 - success, otherwise - failure
70522e44211Sjeremylt 
70622e44211Sjeremylt   @ref User
70722e44211Sjeremylt **/
70822e44211Sjeremylt // LCOV_EXCL_START
70922e44211Sjeremylt int CeedRegistryGetList(size_t *n, char ***const resources,
71022e44211Sjeremylt                         CeedInt **priorities) {
711d0c91ce9Sjeremylt   *n = 0;
7129ff86846Sjeremylt   *resources = malloc(num_backends * sizeof(**resources));
7139ff86846Sjeremylt   if (!resources)
7149ff86846Sjeremylt     return CeedError(NULL, CEED_ERROR_MAJOR, "malloc() failure");
7159ff86846Sjeremylt   if (priorities) {
7169ff86846Sjeremylt     *priorities = malloc(num_backends * sizeof(**priorities));
7179ff86846Sjeremylt     if (!priorities)
7189ff86846Sjeremylt       return CeedError(NULL, CEED_ERROR_MAJOR, "malloc() failure");
7199ff86846Sjeremylt   }
72022e44211Sjeremylt   for (size_t i=0; i<num_backends; i++) {
721d0c91ce9Sjeremylt     // Only report compiled backends
722d0c91ce9Sjeremylt     if (backends[i].priority < CEED_MAX_BACKEND_PRIORITY) {
72322e44211Sjeremylt       *resources[i] = backends[i].prefix;
7249ff86846Sjeremylt       if (priorities) *priorities[i] = backends[i].priority;
725d0c91ce9Sjeremylt       *n += 1;
726d0c91ce9Sjeremylt     }
727d0c91ce9Sjeremylt   }
72878464608Sjeremylt   if (*n == 0)
72978464608Sjeremylt     // LCOV_EXCL_START
73078464608Sjeremylt     return CeedError(NULL, CEED_ERROR_MAJOR, "No backends installed");
73178464608Sjeremylt   // LCOV_EXCL_STOP
732d0c91ce9Sjeremylt   *resources = realloc(*resources, *n * sizeof(**resources));
733d0c91ce9Sjeremylt   if (!resources)
734d0c91ce9Sjeremylt     return CeedError(NULL, CEED_ERROR_MAJOR, "realloc() failure");
735d0c91ce9Sjeremylt   if (priorities) {
736d0c91ce9Sjeremylt     *priorities = realloc(*priorities, *n * sizeof(**priorities));
737d0c91ce9Sjeremylt     if (!priorities)
738d0c91ce9Sjeremylt       return CeedError(NULL, CEED_ERROR_MAJOR, "realloc() failure");
73922e44211Sjeremylt   }
74022e44211Sjeremylt   return CEED_ERROR_SUCCESS;
74145f1e315Sjeremylt }
74222e44211Sjeremylt // LCOV_EXCL_STOP
74322e44211Sjeremylt 
74422e44211Sjeremylt /**
745d79b80ecSjeremylt   @brief Initialize a \ref Ceed context to use the specified resource.
74622e44211Sjeremylt   Note: Prefixing the resource with "help:" (e.g. "help:/cpu/self")
74722e44211Sjeremylt     will result in CeedInt printing the current libCEED version number
74892ee7d1cSjeremylt     and a list of current available backend resources to stderr.
749b11c1e72Sjeremylt 
750b11c1e72Sjeremylt   @param resource  Resource to use, e.g., "/cpu/self"
751b11c1e72Sjeremylt   @param ceed      The library context
752b11c1e72Sjeremylt   @sa CeedRegister() CeedDestroy()
753b11c1e72Sjeremylt 
754b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
755dfdf5a53Sjeremylt 
7567a982d89SJeremy L. Thompson   @ref User
757b11c1e72Sjeremylt **/
758d7b241e6Sjeremylt int CeedInit(const char *resource, Ceed *ceed) {
759d7b241e6Sjeremylt   int ierr;
760f7e22acaSJeremy L Thompson   size_t match_len = 0, match_index = UINT_MAX,
761d0c91ce9Sjeremylt          match_priority = CEED_MAX_BACKEND_PRIORITY, priority;
762d7b241e6Sjeremylt 
763fe2413ffSjeremylt   // Find matching backend
7641d102b48SJeremy L Thompson   if (!resource)
76513873f79Sjeremylt     // LCOV_EXCL_START
766e15f9bd0SJeremy L Thompson     return CeedError(NULL, CEED_ERROR_MAJOR, "No resource provided");
76713873f79Sjeremylt   // LCOV_EXCL_STOP
7681d013790SJed Brown   ierr = CeedRegisterAll(); CeedChk(ierr);
76913873f79Sjeremylt 
77022e44211Sjeremylt   // Check for help request
77122e44211Sjeremylt   const char *help_prefix = "help";
77222e44211Sjeremylt   size_t match_help;
77322e44211Sjeremylt   for (match_help=0; match_help<4
77422e44211Sjeremylt        && resource[match_help] == help_prefix[match_help]; match_help++) {}
77522e44211Sjeremylt   if (match_help == 4) {
77622e44211Sjeremylt     fprintf(stderr, "libCEED version: %d.%d%d%s\n", CEED_VERSION_MAJOR,
77722e44211Sjeremylt             CEED_VERSION_MINOR, CEED_VERSION_PATCH,
77822e44211Sjeremylt             CEED_VERSION_RELEASE ? "" : "+development");
77992ee7d1cSjeremylt     fprintf(stderr, "Available backend resources:\n");
78022e44211Sjeremylt     for (size_t i=0; i<num_backends; i++) {
781d0c91ce9Sjeremylt       // Only report compiled backends
782d0c91ce9Sjeremylt       if (backends[i].priority < CEED_MAX_BACKEND_PRIORITY)
78322e44211Sjeremylt         fprintf(stderr, "  %s\n", backends[i].prefix);
78422e44211Sjeremylt     }
78522e44211Sjeremylt     fflush(stderr);
78622e44211Sjeremylt     match_help = 5; // Delineating character expected
78722e44211Sjeremylt   } else {
78822e44211Sjeremylt     match_help = 0;
78922e44211Sjeremylt   }
79022e44211Sjeremylt 
7919c9a0587SLeila Ghaffari   // Find best match, computed as number of matching characters
7929c9a0587SLeila Ghaffari   //   from requested resource stem
7932bbc7fe8Sjeremylt   size_t stem_length;
79422e44211Sjeremylt   for (stem_length=0; resource[stem_length+match_help]
79522e44211Sjeremylt        && resource[stem_length+match_help] != ':'; stem_length++) {}
796d7b241e6Sjeremylt   for (size_t i=0; i<num_backends; i++) {
797d7b241e6Sjeremylt     size_t n;
798d7b241e6Sjeremylt     const char *prefix = backends[i].prefix;
79922e44211Sjeremylt     for (n=0; prefix[n] && prefix[n] == resource[n+match_help]; n++) {}
800d7b241e6Sjeremylt     priority = backends[i].priority;
801d1d35e2fSjeremylt     if (n > match_len || (n == match_len && match_priority > priority)) {
802d1d35e2fSjeremylt       match_len = n;
803d1d35e2fSjeremylt       match_priority = priority;
804f7e22acaSJeremy L Thompson       match_index = i;
805d7b241e6Sjeremylt     }
806d7b241e6Sjeremylt   }
8079c9a0587SLeila Ghaffari   // Using Levenshtein distance to find closest match
8089c9a0587SLeila Ghaffari   if (match_len <= 1 || match_len != stem_length) {
809203015caSLeila Ghaffari     // LCOV_EXCL_START
8109c9a0587SLeila Ghaffari     size_t lev_dis = UINT_MAX;
811f7e22acaSJeremy L Thompson     size_t lev_index = UINT_MAX, lev_priority = CEED_MAX_BACKEND_PRIORITY;
8129c9a0587SLeila Ghaffari     for (size_t i=0; i<num_backends; i++) {
8139c9a0587SLeila Ghaffari       const char *prefix = backends[i].prefix;
8149c9a0587SLeila Ghaffari       size_t prefix_length = strlen(backends[i].prefix);
8159c9a0587SLeila Ghaffari       size_t min_len = (prefix_length < stem_length) ? prefix_length : stem_length;
816092904ddSLeila Ghaffari       size_t column[min_len+1];
817092904ddSLeila Ghaffari       for (size_t j=0; j<=min_len; j++) column[j] = j;
8189c9a0587SLeila Ghaffari       for (size_t j=1; j<=min_len; j++) {
8199c9a0587SLeila Ghaffari         column[0] = j;
8209c9a0587SLeila Ghaffari         for (size_t k=1, last_diag=j-1; k<=min_len; k++) {
821092904ddSLeila Ghaffari           size_t old_diag = column[k];
8229c9a0587SLeila Ghaffari           size_t min_1 = (column[k] < column[k-1]) ? column[k]+1 : column[k-1]+1;
8239c9a0587SLeila Ghaffari           size_t min_2 = last_diag + (resource[k-1] == prefix[j-1] ? 0 : 1);
8249c9a0587SLeila Ghaffari           column[k] = (min_1 < min_2) ? min_1 : min_2;
8259c9a0587SLeila Ghaffari           last_diag = old_diag;
8269c9a0587SLeila Ghaffari         }
8279c9a0587SLeila Ghaffari       }
8289c9a0587SLeila Ghaffari       size_t n = column[min_len];
8299c9a0587SLeila Ghaffari       priority = backends[i].priority;
8309c9a0587SLeila Ghaffari       if (n < lev_dis || (n == lev_dis
8319c9a0587SLeila Ghaffari                           && lev_priority > priority)) {
8329c9a0587SLeila Ghaffari         lev_dis = n;
8339c9a0587SLeila Ghaffari         lev_priority = priority;
834f7e22acaSJeremy L Thompson         lev_index = i;
8359c9a0587SLeila Ghaffari       }
8369c9a0587SLeila Ghaffari     }
837f7e22acaSJeremy L Thompson     const char *prefix_lev = backends[lev_index].prefix;
8389c9a0587SLeila Ghaffari     size_t lev_length;
8399c9a0587SLeila Ghaffari     for (lev_length=0; prefix_lev[lev_length]
8409c9a0587SLeila Ghaffari          && prefix_lev[lev_length] != '\0'; lev_length++) {}
8419c9a0587SLeila Ghaffari     size_t m = (lev_length < stem_length) ? lev_length : stem_length;
8429c9a0587SLeila Ghaffari     if (lev_dis+1 >= m) {
843e15f9bd0SJeremy L Thompson       return CeedError(NULL, CEED_ERROR_MAJOR, "No suitable backend: %s",
844e15f9bd0SJeremy L Thompson                        resource);
8459c9a0587SLeila Ghaffari     } else {
84687250337Sjeremylt       return CeedError(NULL, CEED_ERROR_MAJOR, "No suitable backend: %s\n"
847f7e22acaSJeremy L Thompson                        "Closest match: %s", resource, backends[lev_index].prefix);
8482bbc7fe8Sjeremylt     }
849203015caSLeila Ghaffari     // LCOV_EXCL_STOP
8509c9a0587SLeila Ghaffari   }
851fe2413ffSjeremylt 
852fe2413ffSjeremylt   // Setup Ceed
853d7b241e6Sjeremylt   ierr = CeedCalloc(1, ceed); CeedChk(ierr);
854032e71eaSJeremy L Thompson   ierr = CeedCalloc(1, &(*ceed)->jit_source_roots); CeedChk(ierr);
855bc81ce41Sjeremylt   const char *ceed_error_handler = getenv("CEED_ERROR_HANDLER");
8561d102b48SJeremy L Thompson   if (!ceed_error_handler)
8571d102b48SJeremy L Thompson     ceed_error_handler = "abort";
858bc81ce41Sjeremylt   if (!strcmp(ceed_error_handler, "exit"))
85956e866f4SJed Brown     (*ceed)->Error = CeedErrorExit;
860477729cfSJeremy L Thompson   else if (!strcmp(ceed_error_handler, "store"))
861477729cfSJeremy L Thompson     (*ceed)->Error = CeedErrorStore;
86256e866f4SJed Brown   else
863d7b241e6Sjeremylt     (*ceed)->Error = CeedErrorAbort;
864d1d35e2fSjeremylt   memcpy((*ceed)->err_msg, "No error message stored", 24);
865d1d35e2fSjeremylt   (*ceed)->ref_count = 1;
866d7b241e6Sjeremylt   (*ceed)->data = NULL;
867fe2413ffSjeremylt 
868fe2413ffSjeremylt   // Set lookup table
869d1d35e2fSjeremylt   FOffset f_offsets[] = {
8706e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, Error),
8716e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, GetPreferredMemType),
8726e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, Destroy),
873f8902d9eSjeremylt     CEED_FTABLE_ENTRY(Ceed, VectorCreate),
8746e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, ElemRestrictionCreate),
875fc0567d9Srezgarshakeri     CEED_FTABLE_ENTRY(Ceed, ElemRestrictionCreateOriented),
8766e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, ElemRestrictionCreateBlocked),
8776e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, BasisCreateTensorH1),
8786e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, BasisCreateH1),
87950c301a5SRezgar Shakeri     CEED_FTABLE_ENTRY(Ceed, BasisCreateHdiv),
8806e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, TensorContractCreate),
8816e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, QFunctionCreate),
882777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(Ceed, QFunctionContextCreate),
8836e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, OperatorCreate),
8846e79d475Sjeremylt     CEED_FTABLE_ENTRY(Ceed, CompositeOperatorCreate),
8859c774eddSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, HasValidArray),
8869c774eddSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, HasBorrowedArrayOfType),
8876e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, SetArray),
8886a6c615bSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, TakeArray),
8896e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, SetValue),
890f48ed27dSnbeams     CEED_FTABLE_ENTRY(CeedVector, SyncArray),
8916e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, GetArray),
8926e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, GetArrayRead),
8939c774eddSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, GetArrayWrite),
8946e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, RestoreArray),
8956e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, RestoreArrayRead),
896547d9b97Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, Norm),
897e0dd3b27Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, Scale),
8980f7fd0f8Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, AXPY),
8990f7fd0f8Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, PointwiseMult),
900d99fa3c5SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedVector, Reciprocal),
9016e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedVector, Destroy),
9026e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, Apply),
9036e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, ApplyBlock),
904bd33150aSjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, GetOffsets),
9056e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedElemRestriction, Destroy),
9066e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedBasis, Apply),
9076e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedBasis, Destroy),
9086e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedTensorContract, Apply),
9096e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedTensorContract, Destroy),
9106e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, Apply),
9118c84ac63Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, SetCUDAUserFunction),
9128c84ac63Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, SetHIPUserFunction),
9136e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedQFunction, Destroy),
9149c774eddSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, HasValidData),
9159c774eddSJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, HasBorrowedDataOfType),
916777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, SetData),
917891038deSjeremylt     CEED_FTABLE_ENTRY(CeedQFunctionContext, TakeData),
918777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, GetData),
91928bfd0b7SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, GetDataRead),
920777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, RestoreData),
92128bfd0b7SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, RestoreDataRead),
9222e64a2b9SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, DataDestroy),
923777ff853SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedQFunctionContext, Destroy),
92480ac2e43SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleQFunction),
92570a7ffb3SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleQFunctionUpdate),
92680ac2e43SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleDiagonal),
9279e9210b8SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleAddDiagonal),
92880ac2e43SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssemblePointBlockDiagonal),
9299e9210b8SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleAddPointBlockDiagonal),
930e2f04181SAndrew T. Barker     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleSymbolic),
931e2f04181SAndrew T. Barker     CEED_FTABLE_ENTRY(CeedOperator, LinearAssemble),
932cefa2673SJeremy L Thompson     CEED_FTABLE_ENTRY(CeedOperator, LinearAssembleSingle),
933713f43c3Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, CreateFDMElementInverse),
9346e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, Apply),
935250756a7Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyComposite),
936cae8b89aSjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyAdd),
937250756a7Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyAddComposite),
9386e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, ApplyJacobian),
9396e79d475Sjeremylt     CEED_FTABLE_ENTRY(CeedOperator, Destroy),
9406e79d475Sjeremylt     {NULL, 0} // End of lookup table - used in SetBackendFunction loop
9411dfeef1dSjeremylt   };
942fe2413ffSjeremylt 
943d1d35e2fSjeremylt   ierr = CeedCalloc(sizeof(f_offsets), &(*ceed)->f_offsets); CeedChk(ierr);
944d1d35e2fSjeremylt   memcpy((*ceed)->f_offsets, f_offsets, sizeof(f_offsets));
945fe2413ffSjeremylt 
9465107b09fSJeremy L Thompson   // Set fallback for advanced CeedOperator functions
947e2f04181SAndrew T. Barker   const char fallbackresource[] = "";
9485107b09fSJeremy L Thompson   ierr = CeedSetOperatorFallbackResource(*ceed, fallbackresource);
9495107b09fSJeremy L Thompson   CeedChk(ierr);
9505107b09fSJeremy L Thompson 
95160f9e2d6SJeremy L Thompson   // Record env variables CEED_DEBUG or DBG
9523f21f6b1SJeremy L Thompson   (*ceed)->is_debug = !!getenv("CEED_DEBUG") || !!getenv("DEBUG") ||
9533f21f6b1SJeremy L Thompson                       !!getenv("DBG");
95460f9e2d6SJeremy L Thompson 
95522e44211Sjeremylt   // Copy resource prefix, if backend setup successful
956f7e22acaSJeremy L Thompson   ierr = CeedStringAllocCopy(backends[match_index].prefix,
957f7e22acaSJeremy L Thompson                              (char **)&(*ceed)->resource);
958f7e22acaSJeremy L Thompson   CeedChk(ierr);
959ee5a26f2SJeremy L Thompson 
960ee5a26f2SJeremy L Thompson   // Set default JiT source root
9616155f12fSJeremy L Thompson   // Note: there will always be the default root for every Ceed
9626155f12fSJeremy L Thompson   // but all additional paths are added to the top-most parent
963ee5a26f2SJeremy L Thompson   ierr = CeedAddJitSourceRoot(*ceed, (char *)CeedJitSourceRootDefault);
964ee5a26f2SJeremy L Thompson   CeedChk(ierr);
965ee5a26f2SJeremy L Thompson 
966d04bbc78SJeremy L Thompson   // Backend specific setup
967d04bbc78SJeremy L Thompson   ierr = backends[match_index].init(&resource[match_help], *ceed); CeedChk(ierr);
968d04bbc78SJeremy L Thompson 
969e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
970d7b241e6Sjeremylt }
971d7b241e6Sjeremylt 
972d7b241e6Sjeremylt /**
9739560d06aSjeremylt   @brief Copy the pointer to a Ceed context. Both pointers should
9749560d06aSjeremylt            be destroyed with `CeedDestroy()`;
9759560d06aSjeremylt            Note: If `*ceed_copy` is non-NULL, then it is assumed that
9769560d06aSjeremylt            `*ceed_copy` is a pointer to a Ceed context. This Ceed
9779560d06aSjeremylt            context will be destroyed if `*ceed_copy` is the only
9789560d06aSjeremylt            reference to this Ceed context.
9799560d06aSjeremylt 
9809560d06aSjeremylt   @param ceed            Ceed context to copy reference to
9819560d06aSjeremylt   @param[out] ceed_copy  Variable to store copied reference
9829560d06aSjeremylt 
9839560d06aSjeremylt   @return An error code: 0 - success, otherwise - failure
9849560d06aSjeremylt 
9859560d06aSjeremylt   @ref User
9869560d06aSjeremylt **/
9879560d06aSjeremylt int CeedReferenceCopy(Ceed ceed, Ceed *ceed_copy) {
9889560d06aSjeremylt   int ierr;
9899560d06aSjeremylt 
9909560d06aSjeremylt   ierr = CeedReference(ceed); CeedChk(ierr);
9919560d06aSjeremylt   ierr = CeedDestroy(ceed_copy); CeedChk(ierr);
9929560d06aSjeremylt   *ceed_copy = ceed;
9939560d06aSjeremylt   return CEED_ERROR_SUCCESS;
9949560d06aSjeremylt }
9959560d06aSjeremylt 
9969560d06aSjeremylt /**
9977a982d89SJeremy L. Thompson   @brief Get the full resource name for a Ceed context
9982f86a920SJeremy L Thompson 
9997a982d89SJeremy L. Thompson   @param ceed           Ceed context to get resource name of
10007a982d89SJeremy L. Thompson   @param[out] resource  Variable to store resource name
10012f86a920SJeremy L Thompson 
10022f86a920SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
10032f86a920SJeremy L Thompson 
10047a982d89SJeremy L. Thompson   @ref User
10055107b09fSJeremy L Thompson **/
10067a982d89SJeremy L. Thompson int CeedGetResource(Ceed ceed, const char **resource) {
10077a982d89SJeremy L. Thompson   *resource = (const char *)ceed->resource;
1008e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
10095107b09fSJeremy L Thompson }
10105107b09fSJeremy L Thompson 
10115107b09fSJeremy L Thompson /**
1012d79b80ecSjeremylt   @brief Return Ceed context preferred memory type
1013c907536fSjeremylt 
1014d79b80ecSjeremylt   @param ceed           Ceed context to get preferred memory type of
1015d1d35e2fSjeremylt   @param[out] mem_type  Address to save preferred memory type to
1016c907536fSjeremylt 
1017c907536fSjeremylt   @return An error code: 0 - success, otherwise - failure
1018c907536fSjeremylt 
10197a982d89SJeremy L. Thompson   @ref User
1020c907536fSjeremylt **/
1021d1d35e2fSjeremylt int CeedGetPreferredMemType(Ceed ceed, CeedMemType *mem_type) {
1022c907536fSjeremylt   int ierr;
1023c263cd57Sjeremylt 
1024c907536fSjeremylt   if (ceed->GetPreferredMemType) {
1025d1d35e2fSjeremylt     ierr = ceed->GetPreferredMemType(mem_type); CeedChk(ierr);
1026c907536fSjeremylt   } else {
1027c263cd57Sjeremylt     Ceed delegate;
1028c263cd57Sjeremylt     ierr = CeedGetDelegate(ceed, &delegate); CeedChk(ierr);
1029c263cd57Sjeremylt 
1030c263cd57Sjeremylt     if (delegate) {
1031d1d35e2fSjeremylt       ierr = CeedGetPreferredMemType(delegate, mem_type); CeedChk(ierr);
1032c263cd57Sjeremylt     } else {
1033d1d35e2fSjeremylt       *mem_type = CEED_MEM_HOST;
1034c907536fSjeremylt     }
1035c263cd57Sjeremylt   }
1036e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1037c907536fSjeremylt }
1038c907536fSjeremylt 
1039c907536fSjeremylt /**
10409525855cSJeremy L Thompson   @brief Get deterministic status of Ceed
10419525855cSJeremy L Thompson 
10429525855cSJeremy L Thompson   @param[in] ceed               Ceed
1043d1d35e2fSjeremylt   @param[out] is_deterministic  Variable to store deterministic status
10449525855cSJeremy L Thompson 
10459525855cSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
10469525855cSJeremy L Thompson 
10479525855cSJeremy L Thompson   @ref User
10489525855cSJeremy L Thompson **/
1049d1d35e2fSjeremylt int CeedIsDeterministic(Ceed ceed, bool *is_deterministic) {
1050d1d35e2fSjeremylt   *is_deterministic = ceed->is_deterministic;
1051e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
10529525855cSJeremy L Thompson }
10539525855cSJeremy L Thompson 
10549525855cSJeremy L Thompson /**
1055ee5a26f2SJeremy L Thompson   @brief Set additional JiT source root for Ceed
1056ee5a26f2SJeremy L Thompson 
1057ee5a26f2SJeremy L Thompson   @param[in] ceed            Ceed
1058ee5a26f2SJeremy L Thompson   @param[in] jit_source_root Absolute path to additional JiT source directory
1059ee5a26f2SJeremy L Thompson 
1060ee5a26f2SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1061ee5a26f2SJeremy L Thompson 
1062ee5a26f2SJeremy L Thompson   @ref User
1063ee5a26f2SJeremy L Thompson **/
1064ee5a26f2SJeremy L Thompson int CeedAddJitSourceRoot(Ceed ceed, const char *jit_source_root) {
1065ee5a26f2SJeremy L Thompson   int ierr;
10666155f12fSJeremy L Thompson   Ceed ceed_parent;
1067ee5a26f2SJeremy L Thompson 
10686155f12fSJeremy L Thompson   ierr = CeedGetParent(ceed, &ceed_parent); CeedChk(ierr);
10696155f12fSJeremy L Thompson 
10706155f12fSJeremy L Thompson   CeedInt index = ceed_parent->num_jit_source_roots;
1071ee5a26f2SJeremy L Thompson   size_t path_length = strlen(jit_source_root);
10726155f12fSJeremy L Thompson   ierr = CeedRealloc(index + 1, &ceed_parent->jit_source_roots); CeedChk(ierr);
10736155f12fSJeremy L Thompson   ierr = CeedCalloc(path_length + 1, &ceed_parent->jit_source_roots[index]);
1074ee5a26f2SJeremy L Thompson   CeedChk(ierr);
1075d602d780SJeremy L Thompson   memcpy(ceed_parent->jit_source_roots[index], jit_source_root, path_length);
10766155f12fSJeremy L Thompson   ceed_parent->num_jit_source_roots++;
1077ee5a26f2SJeremy L Thompson 
1078ee5a26f2SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1079ee5a26f2SJeremy L Thompson }
1080ee5a26f2SJeremy L Thompson 
1081ee5a26f2SJeremy L Thompson /**
10820a0da059Sjeremylt   @brief View a Ceed
10830a0da059Sjeremylt 
10840a0da059Sjeremylt   @param[in] ceed    Ceed to view
10850a0da059Sjeremylt   @param[in] stream  Filestream to write to
10860a0da059Sjeremylt 
10870a0da059Sjeremylt   @return An error code: 0 - success, otherwise - failure
10880a0da059Sjeremylt 
10890a0da059Sjeremylt   @ref User
10900a0da059Sjeremylt **/
10910a0da059Sjeremylt int CeedView(Ceed ceed, FILE *stream) {
10920a0da059Sjeremylt   int ierr;
1093d1d35e2fSjeremylt   CeedMemType mem_type;
10940a0da059Sjeremylt 
1095d1d35e2fSjeremylt   ierr = CeedGetPreferredMemType(ceed, &mem_type); CeedChk(ierr);
10960a0da059Sjeremylt 
10970a0da059Sjeremylt   fprintf(stream, "Ceed\n"
10980a0da059Sjeremylt           "  Ceed Resource: %s\n"
10990a0da059Sjeremylt           "  Preferred MemType: %s\n",
1100d1d35e2fSjeremylt           ceed->resource, CeedMemTypes[mem_type]);
1101e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
11020a0da059Sjeremylt }
11030a0da059Sjeremylt 
11040a0da059Sjeremylt /**
1105b11c1e72Sjeremylt   @brief Destroy a Ceed context
1106d7b241e6Sjeremylt 
1107d7b241e6Sjeremylt   @param ceed  Address of Ceed context to destroy
1108b11c1e72Sjeremylt 
1109b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
1110dfdf5a53Sjeremylt 
11117a982d89SJeremy L. Thompson   @ref User
1112b11c1e72Sjeremylt **/
1113d7b241e6Sjeremylt int CeedDestroy(Ceed *ceed) {
1114d7b241e6Sjeremylt   int ierr;
1115d1d35e2fSjeremylt   if (!*ceed || --(*ceed)->ref_count > 0) return CEED_ERROR_SUCCESS;
11165fe0d4faSjeremylt   if ((*ceed)->delegate) {
11175fe0d4faSjeremylt     ierr = CeedDestroy(&(*ceed)->delegate); CeedChk(ierr);
11185fe0d4faSjeremylt   }
11190ace9bf2Sjeremylt 
1120d1d35e2fSjeremylt   if ((*ceed)->obj_delegate_count > 0) {
112192ae7e47SJeremy L Thompson     for (CeedInt i = 0; i < (*ceed)->obj_delegate_count; i++) {
1122d1d35e2fSjeremylt       ierr = CeedDestroy(&((*ceed)->obj_delegates[i].delegate)); CeedChk(ierr);
1123d1d35e2fSjeremylt       ierr = CeedFree(&(*ceed)->obj_delegates[i].obj_name); CeedChk(ierr);
1124aefd8378Sjeremylt     }
1125d1d35e2fSjeremylt     ierr = CeedFree(&(*ceed)->obj_delegates); CeedChk(ierr);
1126aefd8378Sjeremylt   }
11270ace9bf2Sjeremylt 
1128d7b241e6Sjeremylt   if ((*ceed)->Destroy) {
1129d7b241e6Sjeremylt     ierr = (*ceed)->Destroy(*ceed); CeedChk(ierr);
1130d7b241e6Sjeremylt   }
11310ace9bf2Sjeremylt 
113292ae7e47SJeremy L Thompson   for (CeedInt i = 0; i < (*ceed)->num_jit_source_roots; i++) {
1133032e71eaSJeremy L Thompson     ierr = CeedFree(&(*ceed)->jit_source_roots[i]); CeedChk(ierr);
1134032e71eaSJeremy L Thompson   }
1135032e71eaSJeremy L Thompson   ierr = CeedFree(&(*ceed)->jit_source_roots); CeedChk(ierr);
1136032e71eaSJeremy L Thompson 
1137d1d35e2fSjeremylt   ierr = CeedFree(&(*ceed)->f_offsets); CeedChk(ierr);
1138e07206deSjeremylt   ierr = CeedFree(&(*ceed)->resource); CeedChk(ierr);
1139d1d35e2fSjeremylt   ierr = CeedDestroy(&(*ceed)->op_fallback_ceed); CeedChk(ierr);
1140d1d35e2fSjeremylt   ierr = CeedFree(&(*ceed)->op_fallback_resource); CeedChk(ierr);
1141d7b241e6Sjeremylt   ierr = CeedFree(ceed); CeedChk(ierr);
1142e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1143d7b241e6Sjeremylt }
1144d7b241e6Sjeremylt 
1145f9982c62SWill Pazner // LCOV_EXCL_START
1146f9982c62SWill Pazner const char *CeedErrorFormat(Ceed ceed, const char *format, va_list *args) {
11473f4a9821SAndrew T. Barker   if (ceed->parent)
11483f4a9821SAndrew T. Barker     return CeedErrorFormat(ceed->parent, format, args);
1149d1d35e2fSjeremylt   if (ceed->op_fallback_parent)
1150d1d35e2fSjeremylt     return CeedErrorFormat(ceed->op_fallback_parent, format, args);
115178464608Sjeremylt   // Using pointer to va_list for better FFI, but clang-tidy can't verify va_list is initalized
115278464608Sjeremylt   vsnprintf(ceed->err_msg, CEED_MAX_RESOURCE_LEN, format, *args); // NOLINT
1153d1d35e2fSjeremylt   return ceed->err_msg;
1154f9982c62SWill Pazner }
1155f9982c62SWill Pazner // LCOV_EXCL_STOP
1156f9982c62SWill Pazner 
11577a982d89SJeremy L. Thompson /**
11587a982d89SJeremy L. Thompson   @brief Error handling implementation; use \ref CeedError instead.
11597a982d89SJeremy L. Thompson 
11607a982d89SJeremy L. Thompson   @ref Developer
11617a982d89SJeremy L. Thompson **/
11627a982d89SJeremy L. Thompson int CeedErrorImpl(Ceed ceed, const char *filename, int lineno, const char *func,
11637a982d89SJeremy L. Thompson                   int ecode, const char *format, ...) {
11647a982d89SJeremy L. Thompson   va_list args;
1165d1d35e2fSjeremylt   int ret_val;
11667a982d89SJeremy L. Thompson   va_start(args, format);
11677a982d89SJeremy L. Thompson   if (ceed) {
1168d1d35e2fSjeremylt     ret_val = ceed->Error(ceed, filename, lineno, func, ecode, format, &args);
11697a982d89SJeremy L. Thompson   } else {
1170b0d62198Sjeremylt     // LCOV_EXCL_START
1171477729cfSJeremy L Thompson     const char *ceed_error_handler = getenv("CEED_ERROR_HANDLER");
1172477729cfSJeremy L Thompson     if (!ceed_error_handler)
1173477729cfSJeremy L Thompson       ceed_error_handler = "abort";
1174477729cfSJeremy L Thompson     if (!strcmp(ceed_error_handler, "return"))
1175d1d35e2fSjeremylt       ret_val = CeedErrorReturn(ceed, filename, lineno, func, ecode, format, &args);
1176477729cfSJeremy L Thompson     else
1177477729cfSJeremy L Thompson       // This function will not return
1178d1d35e2fSjeremylt       ret_val = CeedErrorAbort(ceed, filename, lineno, func, ecode, format, &args);
11797a982d89SJeremy L. Thompson   }
11807a982d89SJeremy L. Thompson   va_end(args);
1181d1d35e2fSjeremylt   return ret_val;
1182b0d62198Sjeremylt   // LCOV_EXCL_STOP
11837a982d89SJeremy L. Thompson }
11847a982d89SJeremy L. Thompson 
1185477729cfSJeremy L Thompson /**
1186477729cfSJeremy L Thompson   @brief Error handler that returns without printing anything.
1187477729cfSJeremy L Thompson 
1188477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
1189477729cfSJeremy L Thompson 
1190477729cfSJeremy L Thompson   @ref Developer
1191477729cfSJeremy L Thompson **/
1192477729cfSJeremy L Thompson // LCOV_EXCL_START
1193d1d35e2fSjeremylt int CeedErrorReturn(Ceed ceed, const char *filename, int line_no,
1194d1d35e2fSjeremylt                     const char *func, int err_code, const char *format,
1195f9982c62SWill Pazner                     va_list *args) {
1196d1d35e2fSjeremylt   return err_code;
1197477729cfSJeremy L Thompson }
1198477729cfSJeremy L Thompson // LCOV_EXCL_STOP
1199477729cfSJeremy L Thompson 
1200477729cfSJeremy L Thompson /**
1201477729cfSJeremy L Thompson   @brief Error handler that stores the error message for future use and returns
1202477729cfSJeremy L Thompson            the error.
1203477729cfSJeremy L Thompson 
1204477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
1205477729cfSJeremy L Thompson 
1206477729cfSJeremy L Thompson   @ref Developer
1207477729cfSJeremy L Thompson **/
1208477729cfSJeremy L Thompson // LCOV_EXCL_START
1209d1d35e2fSjeremylt int CeedErrorStore(Ceed ceed, const char *filename, int line_no,
1210d1d35e2fSjeremylt                    const char *func, int err_code, const char *format,
1211f9982c62SWill Pazner                    va_list *args) {
1212477729cfSJeremy L Thompson   if (ceed->parent)
1213d1d35e2fSjeremylt     return CeedErrorStore(ceed->parent, filename, line_no, func, err_code, format,
1214187168c7SJeremy L Thompson                           args);
1215d1d35e2fSjeremylt   if (ceed->op_fallback_parent)
1216d1d35e2fSjeremylt     return CeedErrorStore(ceed->op_fallback_parent, filename, line_no, func,
1217d1d35e2fSjeremylt                           err_code, format, args);
1218477729cfSJeremy L Thompson 
1219477729cfSJeremy L Thompson   // Build message
1220*990fdeb6SJeremy L Thompson   int len;
1221d1d35e2fSjeremylt   len = snprintf(ceed->err_msg, CEED_MAX_RESOURCE_LEN, "%s:%d in %s(): ",
1222d1d35e2fSjeremylt                  filename, line_no, func);
122378464608Sjeremylt   // Using pointer to va_list for better FFI, but clang-tidy can't verify va_list is initalized
122478464608Sjeremylt   // *INDENT-OFF*
122578464608Sjeremylt   vsnprintf(ceed->err_msg + len, CEED_MAX_RESOURCE_LEN - len, format, *args); // NOLINT
122678464608Sjeremylt   // *INDENT-ON*
1227d1d35e2fSjeremylt   return err_code;
1228477729cfSJeremy L Thompson }
1229477729cfSJeremy L Thompson // LCOV_EXCL_STOP
1230477729cfSJeremy L Thompson 
1231477729cfSJeremy L Thompson /**
1232477729cfSJeremy L Thompson   @brief Error handler that prints to stderr and aborts
1233477729cfSJeremy L Thompson 
1234477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
1235477729cfSJeremy L Thompson 
1236477729cfSJeremy L Thompson   @ref Developer
1237477729cfSJeremy L Thompson **/
1238477729cfSJeremy L Thompson // LCOV_EXCL_START
1239d1d35e2fSjeremylt int CeedErrorAbort(Ceed ceed, const char *filename, int line_no,
1240d1d35e2fSjeremylt                    const char *func, int err_code, const char *format,
1241f9982c62SWill Pazner                    va_list *args) {
1242d1d35e2fSjeremylt   fprintf(stderr, "%s:%d in %s(): ", filename, line_no, func);
1243f9982c62SWill Pazner   vfprintf(stderr, format, *args);
1244477729cfSJeremy L Thompson   fprintf(stderr, "\n");
1245477729cfSJeremy L Thompson   abort();
1246d1d35e2fSjeremylt   return err_code;
1247477729cfSJeremy L Thompson }
1248477729cfSJeremy L Thompson // LCOV_EXCL_STOP
1249477729cfSJeremy L Thompson 
1250477729cfSJeremy L Thompson /**
1251477729cfSJeremy L Thompson   @brief Error handler that prints to stderr and exits
1252477729cfSJeremy L Thompson 
1253477729cfSJeremy L Thompson   Pass this to CeedSetErrorHandler() to obtain this error handling behavior.
1254477729cfSJeremy L Thompson 
1255477729cfSJeremy L Thompson   In contrast to CeedErrorAbort(), this exits without a signal, so atexit()
1256477729cfSJeremy L Thompson   handlers (e.g., as used by gcov) are run.
1257477729cfSJeremy L Thompson 
1258477729cfSJeremy L Thompson   @ref Developer
1259477729cfSJeremy L Thompson **/
1260d1d35e2fSjeremylt int CeedErrorExit(Ceed ceed, const char *filename, int line_no,
1261d1d35e2fSjeremylt                   const char *func, int err_code, const char *format, va_list *args) {
1262d1d35e2fSjeremylt   fprintf(stderr, "%s:%d in %s(): ", filename, line_no, func);
126378464608Sjeremylt   // Using pointer to va_list for better FFI, but clang-tidy can't verify va_list is initalized
126478464608Sjeremylt   vfprintf(stderr, format, *args); // NOLINT
1265477729cfSJeremy L Thompson   fprintf(stderr, "\n");
1266d1d35e2fSjeremylt   exit(err_code);
1267d1d35e2fSjeremylt   return err_code;
1268477729cfSJeremy L Thompson }
1269477729cfSJeremy L Thompson 
1270477729cfSJeremy L Thompson /**
1271477729cfSJeremy L Thompson   @brief Set error handler
1272477729cfSJeremy L Thompson 
1273477729cfSJeremy L Thompson   A default error handler is set in CeedInit().  Use this function to change
1274477729cfSJeremy L Thompson   the error handler to CeedErrorReturn(), CeedErrorAbort(), or a user-defined
1275477729cfSJeremy L Thompson   error handler.
1276477729cfSJeremy L Thompson 
1277477729cfSJeremy L Thompson   @ref Developer
1278477729cfSJeremy L Thompson **/
1279d1d35e2fSjeremylt int CeedSetErrorHandler(Ceed ceed, CeedErrorHandler handler) {
1280d1d35e2fSjeremylt   ceed->Error = handler;
1281d1d35e2fSjeremylt   if (ceed->delegate) CeedSetErrorHandler(ceed->delegate, handler);
128292ae7e47SJeremy L Thompson   for (CeedInt i=0; i<ceed->obj_delegate_count; i++)
1283d1d35e2fSjeremylt     CeedSetErrorHandler(ceed->obj_delegates[i].delegate, handler);
1284e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1285477729cfSJeremy L Thompson }
1286477729cfSJeremy L Thompson 
1287477729cfSJeremy L Thompson /**
1288477729cfSJeremy L Thompson   @brief Get error message
1289477729cfSJeremy L Thompson 
1290477729cfSJeremy L Thompson   The error message is only stored when using the error handler
1291477729cfSJeremy L Thompson     CeedErrorStore()
1292477729cfSJeremy L Thompson 
1293477729cfSJeremy L Thompson   @param[in] ceed      Ceed contex to retrieve error message
1294d1d35e2fSjeremylt   @param[out] err_msg  Char pointer to hold error message
1295477729cfSJeremy L Thompson 
1296477729cfSJeremy L Thompson   @ref Developer
1297477729cfSJeremy L Thompson **/
1298d1d35e2fSjeremylt int CeedGetErrorMessage(Ceed ceed, const char **err_msg) {
12993f4a9821SAndrew T. Barker   if (ceed->parent)
1300d1d35e2fSjeremylt     return CeedGetErrorMessage(ceed->parent, err_msg);
1301d1d35e2fSjeremylt   if (ceed->op_fallback_parent)
1302d1d35e2fSjeremylt     return CeedGetErrorMessage(ceed->op_fallback_parent, err_msg);
1303d1d35e2fSjeremylt   *err_msg = ceed->err_msg;
1304e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1305477729cfSJeremy L Thompson }
1306477729cfSJeremy L Thompson 
1307477729cfSJeremy L Thompson /**
1308477729cfSJeremy L Thompson   @brief Restore error message
1309477729cfSJeremy L Thompson 
1310477729cfSJeremy L Thompson   The error message is only stored when using the error handler
1311477729cfSJeremy L Thompson     CeedErrorStore()
1312477729cfSJeremy L Thompson 
1313477729cfSJeremy L Thompson   @param[in] ceed      Ceed contex to restore error message
1314d1d35e2fSjeremylt   @param[out] err_msg  Char pointer that holds error message
1315477729cfSJeremy L Thompson 
1316477729cfSJeremy L Thompson   @ref Developer
1317477729cfSJeremy L Thompson **/
1318d1d35e2fSjeremylt int CeedResetErrorMessage(Ceed ceed, const char **err_msg) {
13193f4a9821SAndrew T. Barker   if (ceed->parent)
1320d1d35e2fSjeremylt     return CeedResetErrorMessage(ceed->parent, err_msg);
1321d1d35e2fSjeremylt   if (ceed->op_fallback_parent)
1322d1d35e2fSjeremylt     return CeedResetErrorMessage(ceed->op_fallback_parent, err_msg);
1323d1d35e2fSjeremylt   *err_msg = NULL;
1324d1d35e2fSjeremylt   memcpy(ceed->err_msg, "No error message stored", 24);
1325e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1326477729cfSJeremy L Thompson }
1327477729cfSJeremy L Thompson 
13281070991dSJed Brown /**
13291070991dSJed Brown   @brief Get libCEED library version info
13301070991dSJed Brown 
13311070991dSJed Brown   libCEED version numbers have the form major.minor.patch. Non-release versions
13321070991dSJed Brown   may contain unstable interfaces.
13331070991dSJed Brown 
13341070991dSJed Brown   @param[out] major    Major version of the library
13351070991dSJed Brown   @param[out] minor    Minor version of the library
13361070991dSJed Brown   @param[out] patch    Patch (subminor) version of the library
13371070991dSJed Brown   @param[out] release  True for releases; false for development branches.
13381070991dSJed Brown 
13391070991dSJed Brown   The caller may pass NULL for any arguments that are not needed.
13401070991dSJed Brown 
13411070991dSJed Brown   @sa CEED_VERSION_GE()
13421070991dSJed Brown 
13431070991dSJed Brown   @ref Developer
13441070991dSJed Brown */
13451070991dSJed Brown int CeedGetVersion(int *major, int *minor, int *patch, bool *release) {
13461070991dSJed Brown   if (major) *major = CEED_VERSION_MAJOR;
13471070991dSJed Brown   if (minor) *minor = CEED_VERSION_MINOR;
13481070991dSJed Brown   if (patch) *patch = CEED_VERSION_PATCH;
13491070991dSJed Brown   if (release) *release = CEED_VERSION_RELEASE;
13501070991dSJed Brown   return 0;
13511070991dSJed Brown }
13521070991dSJed Brown 
135380a9ef05SNatalie Beams int CeedGetScalarType(CeedScalarType *scalar_type) {
135480a9ef05SNatalie Beams   *scalar_type = CEED_SCALAR_TYPE;
135580a9ef05SNatalie Beams   return 0;
135680a9ef05SNatalie Beams }
135780a9ef05SNatalie Beams 
135880a9ef05SNatalie Beams 
1359d7b241e6Sjeremylt /// @}
1360