xref: /libCEED/include/ceed/backend.h (revision c4e3f59b2ea5a0c95cc0118aa5026c447cce3092) !
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.
3ec3da8bcSJed Brown //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5ec3da8bcSJed Brown //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7ec3da8bcSJed Brown 
8ec3da8bcSJed Brown /// @file
9ec3da8bcSJed Brown /// Public header for backend components of libCEED
10ec3da8bcSJed Brown #ifndef _ceed_backend_h
11ec3da8bcSJed Brown #define _ceed_backend_h
12ec3da8bcSJed Brown 
1349aac155SJeremy L Thompson #include <ceed.h>
14d0c91ce9Sjeremylt #include <limits.h>
15ec3da8bcSJed Brown #include <stdbool.h>
16ec3da8bcSJed Brown 
172b730f8bSJeremy L Thompson #if defined(__clang_analyzer__)
182b730f8bSJeremy L Thompson #define CEED_INTERN
192b730f8bSJeremy L Thompson #elif defined(__cplusplus)
203b271f31SJed Brown #define CEED_INTERN extern "C" CEED_VISIBILITY(hidden)
213b271f31SJed Brown #else
223b271f31SJed Brown #define CEED_INTERN extern CEED_VISIBILITY(hidden)
233b271f31SJed Brown #endif
243b271f31SJed Brown 
25ec3da8bcSJed Brown #define CEED_UNUSED __attribute__((unused))
26ec3da8bcSJed Brown 
27ec3da8bcSJed Brown #define CEED_MAX_RESOURCE_LEN 1024
28d0c91ce9Sjeremylt #define CEED_MAX_BACKEND_PRIORITY UINT_MAX
29ec3da8bcSJed Brown #define CEED_ALIGN 64
30ec3da8bcSJed Brown #define CEED_COMPOSITE_MAX 16
31bf4cb664SJeremy L Thompson #define CEED_FIELD_MAX 16
32ec3da8bcSJed Brown 
3303d18186Sjeremylt /**
3403d18186Sjeremylt   @ingroup Ceed
35ea61e9acSJeremy L Thompson   This macro provides the ability to disable optimization flags for functions that are sensitive to floating point optimizations.
3603d18186Sjeremylt **/
3703d18186Sjeremylt #ifndef CeedPragmaOptimizeOff
3803d18186Sjeremylt #if defined(__clang__)
3903d18186Sjeremylt #define CeedPragmaOptimizeOff _Pragma("clang optimize off")
4003d18186Sjeremylt #elif defined(__GNUC__)
4103d18186Sjeremylt #define CeedPragmaOptimizeOff _Pragma("GCC push_options") _Pragma("GCC optimize 0")
4203d18186Sjeremylt #elif defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)
4303d18186Sjeremylt #define CeedPragmaOptimizeOff _Pragma("optimize('', off)")
4403d18186Sjeremylt #else
4503d18186Sjeremylt #define CeedPragmaOptimizeOff
4603d18186Sjeremylt #endif
4703d18186Sjeremylt #endif
4803d18186Sjeremylt 
4903d18186Sjeremylt /**
5003d18186Sjeremylt   @ingroup Ceed
5103d18186Sjeremylt   This macro restores previously set optimization flags after CeedPragmaOptimizeOff.
5203d18186Sjeremylt **/
5303d18186Sjeremylt #ifndef CeedPragmaOptimizeOn
5403d18186Sjeremylt #if defined(__clang__)
5503d18186Sjeremylt #define CeedPragmaOptimizeOn _Pragma("clang optimize on")
5603d18186Sjeremylt #elif defined(__GNUC__)
5703d18186Sjeremylt #define CeedPragmaOptimizeOn _Pragma("GCC pop_options")
5803d18186Sjeremylt #elif defined(__INTEL_COMPILER) || defined(__INTEL_LLVM_COMPILER)
5903d18186Sjeremylt #define CeedPragmaOptimizeOff _Pragma("optimize('', on)")
6003d18186Sjeremylt #else
6103d18186Sjeremylt #define CeedPragmaOptimizeOn
6203d18186Sjeremylt #endif
6303d18186Sjeremylt #endif
6403d18186Sjeremylt 
65ec3da8bcSJed Brown /// CEED_DEBUG_COLOR default value, forward CeedDebug* declarations & macros
663f21f6b1SJeremy L Thompson #define CEED_DEBUG_COLOR_NONE 255
673f21f6b1SJeremy L Thompson 
683f21f6b1SJeremy L Thompson CEED_EXTERN void CeedDebugImpl256(const unsigned char, const char *, ...);
693f21f6b1SJeremy L Thompson CEED_EXTERN bool CeedDebugFlag(const Ceed ceed);
703f21f6b1SJeremy L Thompson CEED_EXTERN bool CeedDebugFlagEnv(void);
713f21f6b1SJeremy L Thompson #define CeedDebug256(ceed, color, ...)                               \
722b730f8bSJeremy L Thompson   {                                                                  \
732b730f8bSJeremy L Thompson     if (CeedDebugFlag(ceed)) CeedDebugImpl256(color, ##__VA_ARGS__); \
742b730f8bSJeremy L Thompson   }
753f21f6b1SJeremy L Thompson #define CeedDebug(ceed, ...) CeedDebug256(ceed, (unsigned char)CEED_DEBUG_COLOR_NONE, ##__VA_ARGS__)
763f21f6b1SJeremy L Thompson #define CeedDebugEnv256(color, ...)                                 \
772b730f8bSJeremy L Thompson   {                                                                 \
782b730f8bSJeremy L Thompson     if (CeedDebugFlagEnv()) CeedDebugImpl256(color, ##__VA_ARGS__); \
792b730f8bSJeremy L Thompson   }
803f21f6b1SJeremy L Thompson #define CeedDebugEnv(...) CeedDebugEnv256((unsigned char)CEED_DEBUG_COLOR_NONE, ##__VA_ARGS__)
81ec3da8bcSJed Brown 
82ec3da8bcSJed Brown /// Handle for object handling TensorContraction
83ec3da8bcSJed Brown /// @ingroup CeedBasis
84ec3da8bcSJed Brown typedef struct CeedTensorContract_private *CeedTensorContract;
85ec3da8bcSJed Brown 
86480fae85SJeremy L Thompson /// Handle for object handling assembled QFunction data
87480fae85SJeremy L Thompson /// @ingroup CeedOperator
88480fae85SJeremy L Thompson typedef struct CeedQFunctionAssemblyData_private *CeedQFunctionAssemblyData;
89480fae85SJeremy L Thompson 
90ed9e99e6SJeremy L Thompson /// Handle for object handling assembled Operator data
91ed9e99e6SJeremy L Thompson /// @ingroup CeedOperator
92ed9e99e6SJeremy L Thompson typedef struct CeedOperatorAssemblyData_private *CeedOperatorAssemblyData;
93ed9e99e6SJeremy L Thompson 
94ea61e9acSJeremy L Thompson /* In the next 3 functions, p has to be the address of a pointer type, i.e. p has to be a pointer to a pointer. */
95ec3da8bcSJed Brown CEED_INTERN int CeedMallocArray(size_t n, size_t unit, void *p);
96ec3da8bcSJed Brown CEED_INTERN int CeedCallocArray(size_t n, size_t unit, void *p);
97ec3da8bcSJed Brown CEED_INTERN int CeedReallocArray(size_t n, size_t unit, void *p);
98f7e22acaSJeremy L Thompson CEED_INTERN int CeedStringAllocCopy(const char *source, char **copy);
99ec3da8bcSJed Brown CEED_INTERN int CeedFree(void *p);
100ec3da8bcSJed Brown 
1012b730f8bSJeremy L Thompson #define CeedChk(ierr)        \
1022b730f8bSJeremy L Thompson   do {                       \
1032b730f8bSJeremy L Thompson     int ierr_ = ierr;        \
1042b730f8bSJeremy L Thompson     if (ierr_) return ierr_; \
1052b730f8bSJeremy L Thompson   } while (0)
1062b730f8bSJeremy L Thompson #define CeedChkBackend(ierr)                                     \
1072b730f8bSJeremy L Thompson   do {                                                           \
1082b730f8bSJeremy L Thompson     int ierr_ = ierr;                                            \
1092b730f8bSJeremy L Thompson     if (ierr_) {                                                 \
1102b730f8bSJeremy L Thompson       if (ierr_ > CEED_ERROR_SUCCESS) return CEED_ERROR_BACKEND; \
1112b730f8bSJeremy L Thompson       else return ierr_;                                         \
1122b730f8bSJeremy L Thompson     }                                                            \
1132b730f8bSJeremy L Thompson   } while (0)
1142b730f8bSJeremy L Thompson 
1152b730f8bSJeremy L Thompson #define CeedCall(...)          \
1162b730f8bSJeremy L Thompson   do {                         \
1172b730f8bSJeremy L Thompson     int ierr_q_ = __VA_ARGS__; \
1182b730f8bSJeremy L Thompson     CeedChk(ierr_q_);          \
1190126412dSJeremy L Thompson   } while (0)
1202b730f8bSJeremy L Thompson #define CeedCallBackend(...)   \
1212b730f8bSJeremy L Thompson   do {                         \
1222b730f8bSJeremy L Thompson     int ierr_q_ = __VA_ARGS__; \
1232b730f8bSJeremy L Thompson     CeedChkBackend(ierr_q_);   \
1240126412dSJeremy L Thompson   } while (0)
1252b730f8bSJeremy L Thompson 
126ea61e9acSJeremy L Thompson /* Note that CeedMalloc and CeedCalloc will, generally, return pointers with different memory alignments:
127ea61e9acSJeremy L Thompson    CeedMalloc returns pointers aligned at CEED_ALIGN bytes, while CeedCalloc uses the alignment of calloc. */
128ec3da8bcSJed Brown #define CeedMalloc(n, p) CeedMallocArray((n), sizeof(**(p)), p)
129ec3da8bcSJed Brown #define CeedCalloc(n, p) CeedCallocArray((n), sizeof(**(p)), p)
130ec3da8bcSJed Brown #define CeedRealloc(n, p) CeedReallocArray((n), sizeof(**(p)), p)
131ec3da8bcSJed Brown 
1322b730f8bSJeremy L Thompson CEED_EXTERN int CeedRegister(const char *prefix, int (*init)(const char *, Ceed), unsigned int priority);
1332b730f8bSJeremy L Thompson CEED_EXTERN int CeedRegisterImpl(const char *prefix, int (*init)(const char *, Ceed), unsigned int priority);
134ec3da8bcSJed Brown 
135d1d35e2fSjeremylt CEED_EXTERN int CeedIsDebug(Ceed ceed, bool *is_debug);
136ec3da8bcSJed Brown CEED_EXTERN int CeedGetParent(Ceed ceed, Ceed *parent);
137ec3da8bcSJed Brown CEED_EXTERN int CeedGetDelegate(Ceed ceed, Ceed *delegate);
138ec3da8bcSJed Brown CEED_EXTERN int CeedSetDelegate(Ceed ceed, Ceed delegate);
1392b730f8bSJeremy L Thompson CEED_EXTERN int CeedGetObjectDelegate(Ceed ceed, Ceed *delegate, const char *obj_name);
1402b730f8bSJeremy L Thompson CEED_EXTERN int CeedSetObjectDelegate(Ceed ceed, Ceed delegate, const char *obj_name);
1412b730f8bSJeremy L Thompson CEED_EXTERN int CeedGetOperatorFallbackResource(Ceed ceed, const char **resource);
1428687e1d4SJeremy L Thompson CEED_EXTERN int CeedGetOperatorFallbackCeed(Ceed ceed, Ceed *fallback_ceed);
1432b730f8bSJeremy L Thompson CEED_EXTERN int CeedSetOperatorFallbackResource(Ceed ceed, const char *resource);
144ec3da8bcSJed Brown CEED_EXTERN int CeedGetOperatorFallbackParentCeed(Ceed ceed, Ceed *parent);
145d1d35e2fSjeremylt CEED_EXTERN int CeedSetDeterministic(Ceed ceed, bool is_deterministic);
1462b730f8bSJeremy L Thompson CEED_EXTERN int CeedSetBackendFunction(Ceed ceed, const char *type, void *object, const char *func_name, int (*f)());
147ec3da8bcSJed Brown CEED_EXTERN int CeedGetData(Ceed ceed, void *data);
148ec3da8bcSJed Brown CEED_EXTERN int CeedSetData(Ceed ceed, void *data);
1499560d06aSjeremylt CEED_EXTERN int CeedReference(Ceed ceed);
150ec3da8bcSJed Brown 
1519c774eddSJeremy L Thompson CEED_EXTERN int CeedVectorHasValidArray(CeedVector vec, bool *has_valid_array);
1522b730f8bSJeremy L Thompson CEED_EXTERN int CeedVectorHasBorrowedArrayOfType(CeedVector vec, CeedMemType mem_type, bool *has_borrowed_array_of_type);
1539c774eddSJeremy L Thompson CEED_EXTERN int CeedVectorHasValidArray(CeedVector vec, bool *has_valid_array);
154ec3da8bcSJed Brown CEED_EXTERN int CeedVectorGetState(CeedVector vec, uint64_t *state);
155ec3da8bcSJed Brown CEED_EXTERN int CeedVectorAddReference(CeedVector vec);
156ec3da8bcSJed Brown CEED_EXTERN int CeedVectorGetData(CeedVector vec, void *data);
157ec3da8bcSJed Brown CEED_EXTERN int CeedVectorSetData(CeedVector vec, void *data);
1589560d06aSjeremylt CEED_EXTERN int CeedVectorReference(CeedVector vec);
159ec3da8bcSJed Brown 
1602b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionGetStrides(CeedElemRestriction rstr, CeedInt (*strides)[3]);
1612b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionGetOffsets(CeedElemRestriction rstr, CeedMemType mem_type, const CeedInt **offsets);
1622b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionRestoreOffsets(CeedElemRestriction rstr, const CeedInt **offsets);
1632b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionIsStrided(CeedElemRestriction rstr, bool *is_strided);
1642b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionIsOriented(CeedElemRestriction rstr, bool *is_oriented);
1652b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionHasBackendStrides(CeedElemRestriction rstr, bool *has_backend_strides);
1662b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionGetELayout(CeedElemRestriction rstr, CeedInt (*layout)[3]);
1672b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionSetELayout(CeedElemRestriction rstr, CeedInt layout[3]);
1682b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionGetData(CeedElemRestriction rstr, void *data);
1692b730f8bSJeremy L Thompson CEED_EXTERN int CeedElemRestrictionSetData(CeedElemRestriction rstr, void *data);
1709560d06aSjeremylt CEED_EXTERN int CeedElemRestrictionReference(CeedElemRestriction rstr);
1719d36ca50SJeremy L Thompson CEED_EXTERN int CeedElemRestrictionGetFlopsEstimate(CeedElemRestriction rstr, CeedTransposeMode t_mode, CeedSize *flops);
172ec3da8bcSJed Brown 
1736f117663SJeremy L Thompson /// Type of FE space;
1746f117663SJeremy L Thompson /// @ingroup CeedBasis
1756f117663SJeremy L Thompson typedef enum {
176*c4e3f59bSSebastian Grimberg   /// H^1 FE space
1776f117663SJeremy L Thompson   CEED_FE_SPACE_H1 = 1,
1786f117663SJeremy L Thompson   /// H(div) FE space
1796f117663SJeremy L Thompson   CEED_FE_SPACE_HDIV = 2,
180*c4e3f59bSSebastian Grimberg   /// H(curl) FE space
181*c4e3f59bSSebastian Grimberg   CEED_FE_SPACE_HCURL = 3,
1826f117663SJeremy L Thompson } CeedFESpace;
1836f117663SJeremy L Thompson CEED_EXTERN const char *const CeedFESpaces[];
1846f117663SJeremy L Thompson 
1852b730f8bSJeremy L Thompson CEED_EXTERN int CeedBasisGetCollocatedGrad(CeedBasis basis, CeedScalar *colo_grad_1d);
186d1d35e2fSjeremylt CEED_EXTERN int CeedBasisIsTensor(CeedBasis basis, bool *is_tensor);
187ec3da8bcSJed Brown CEED_EXTERN int CeedBasisGetData(CeedBasis basis, void *data);
188ec3da8bcSJed Brown CEED_EXTERN int CeedBasisSetData(CeedBasis basis, void *data);
1899560d06aSjeremylt CEED_EXTERN int CeedBasisReference(CeedBasis basis);
190*c4e3f59bSSebastian Grimberg CEED_EXTERN int CeedBasisGetNumQuadratureComponents(CeedBasis basis, CeedEvalMode eval_mode, CeedInt *q_comp);
1919d36ca50SJeremy L Thompson CEED_EXTERN int CeedBasisGetFlopsEstimate(CeedBasis basis, CeedTransposeMode t_mode, CeedEvalMode eval_mode, CeedSize *flops);
192*c4e3f59bSSebastian Grimberg CEED_EXTERN int CeedBasisGetFESpace(CeedBasis basis, CeedFESpace *fe_space);
1932b730f8bSJeremy L Thompson CEED_EXTERN int CeedBasisGetTopologyDimension(CeedElemTopology topo, CeedInt *dim);
1942b730f8bSJeremy L Thompson CEED_EXTERN int CeedBasisGetTensorContract(CeedBasis basis, CeedTensorContract *contract);
1952b730f8bSJeremy L Thompson CEED_EXTERN int CeedBasisSetTensorContract(CeedBasis basis, CeedTensorContract contract);
196*c4e3f59bSSebastian Grimberg 
1972b730f8bSJeremy L Thompson CEED_EXTERN int CeedTensorContractCreate(Ceed ceed, CeedBasis basis, CeedTensorContract *contract);
1982b730f8bSJeremy L Thompson CEED_EXTERN int CeedTensorContractApply(CeedTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt J, const CeedScalar *__restrict__ t,
1992b730f8bSJeremy L Thompson                                         CeedTransposeMode t_mode, const CeedInt Add, const CeedScalar *__restrict__ u, CeedScalar *__restrict__ v);
200*c4e3f59bSSebastian Grimberg CEED_EXTERN int CeedTensorContractStridedApply(CeedTensorContract contract, CeedInt A, CeedInt B, CeedInt C, CeedInt D, CeedInt J,
201*c4e3f59bSSebastian Grimberg                                                const CeedScalar *__restrict__ t, CeedTransposeMode t_mode, const CeedInt add,
202*c4e3f59bSSebastian Grimberg                                                const CeedScalar *__restrict__ u, CeedScalar *__restrict__ v);
2032b730f8bSJeremy L Thompson CEED_EXTERN int CeedTensorContractGetCeed(CeedTensorContract contract, Ceed *ceed);
2042b730f8bSJeremy L Thompson CEED_EXTERN int CeedTensorContractGetData(CeedTensorContract contract, void *data);
2052b730f8bSJeremy L Thompson CEED_EXTERN int CeedTensorContractSetData(CeedTensorContract contract, void *data);
2069560d06aSjeremylt CEED_EXTERN int CeedTensorContractReference(CeedTensorContract contract);
207ec3da8bcSJed Brown CEED_EXTERN int CeedTensorContractDestroy(CeedTensorContract *contract);
208ec3da8bcSJed Brown 
2092b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionRegister(const char *, const char *, CeedInt, CeedQFunctionUser, int (*init)(Ceed, const char *, CeedQFunction));
210ec3da8bcSJed Brown CEED_EXTERN int CeedQFunctionSetFortranStatus(CeedQFunction qf, bool status);
2112b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetVectorLength(CeedQFunction qf, CeedInt *vec_length);
2122b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetNumArgs(CeedQFunction qf, CeedInt *num_input_fields, CeedInt *num_output_fields);
21343e1b16fSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetKernelName(CeedQFunction qf, char **kernel_name);
21443e1b16fSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetSourcePath(CeedQFunction qf, char **source_path);
2153d3250a0SJeremy L Thompson CEED_EXTERN int CeedQFunctionLoadSourceToBuffer(CeedQFunction qf, char **source_buffer);
2162b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetUserFunction(CeedQFunction qf, CeedQFunctionUser *f);
2172b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetContext(CeedQFunction qf, CeedQFunctionContext *ctx);
218441428dfSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetContextData(CeedQFunction qf, CeedMemType mem_type, void *data);
219441428dfSJeremy L Thompson CEED_EXTERN int CeedQFunctionRestoreContextData(CeedQFunction qf, void *data);
2202b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetInnerContext(CeedQFunction qf, CeedQFunctionContext *ctx);
221441428dfSJeremy L Thompson CEED_EXTERN int CeedQFunctionGetInnerContextData(CeedQFunction qf, CeedMemType mem_type, void *data);
222441428dfSJeremy L Thompson CEED_EXTERN int CeedQFunctionRestoreInnerContextData(CeedQFunction qf, void *data);
223d1d35e2fSjeremylt CEED_EXTERN int CeedQFunctionIsIdentity(CeedQFunction qf, bool *is_identity);
224441428dfSJeremy L Thompson CEED_EXTERN int CeedQFunctionIsContextWritable(CeedQFunction qf, bool *is_writable);
225ec3da8bcSJed Brown CEED_EXTERN int CeedQFunctionGetData(CeedQFunction qf, void *data);
226ec3da8bcSJed Brown CEED_EXTERN int CeedQFunctionSetData(CeedQFunction qf, void *data);
2279560d06aSjeremylt CEED_EXTERN int CeedQFunctionReference(CeedQFunction qf);
2289d36ca50SJeremy L Thompson CEED_EXTERN int CeedQFunctionGetFlopsEstimate(CeedQFunction qf, CeedSize *flops);
229ec3da8bcSJed Brown 
2302b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetCeed(CeedQFunctionContext ctx, Ceed *ceed);
2312b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextHasValidData(CeedQFunctionContext ctx, bool *has_valid_data);
2322b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextHasBorrowedDataOfType(CeedQFunctionContext ctx, CeedMemType mem_type, bool *has_borrowed_data_of_type);
2332b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetState(CeedQFunctionContext ctx, uint64_t *state);
2342b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetBackendData(CeedQFunctionContext ctx, void *data);
2352b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextSetBackendData(CeedQFunctionContext ctx, void *data);
2362b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetFieldLabel(CeedQFunctionContext ctx, const char *field_name, CeedContextFieldLabel *field_label);
2372b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextSetGeneric(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, CeedContextFieldType field_type,
2382b730f8bSJeremy L Thompson                                                void *value);
2392788fa27SJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetGenericRead(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, CeedContextFieldType field_type,
2402788fa27SJeremy L Thompson                                                    size_t *num_values, void *value);
2412788fa27SJeremy L Thompson CEED_EXTERN int CeedQFunctionContextRestoreGenericRead(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, CeedContextFieldType field_type,
2422788fa27SJeremy L Thompson                                                        void *value);
2432b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextSetDouble(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, double *values);
2442788fa27SJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetDoubleRead(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, size_t *num_values,
2452788fa27SJeremy L Thompson                                                   const double **values);
2462788fa27SJeremy L Thompson CEED_EXTERN int CeedQFunctionContextRestoreDoubleRead(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, const double **values);
2472b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextSetInt32(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, int *values);
2482788fa27SJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetInt32Read(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, size_t *num_values, const int **values);
2492788fa27SJeremy L Thompson CEED_EXTERN int CeedQFunctionContextRestoreInt32Read(CeedQFunctionContext ctx, CeedContextFieldLabel field_label, const int **values);
2502b730f8bSJeremy L Thompson CEED_EXTERN int CeedQFunctionContextGetDataDestroy(CeedQFunctionContext ctx, CeedMemType *f_mem_type, CeedQFunctionContextDataDestroyUser *f);
2519560d06aSjeremylt CEED_EXTERN int CeedQFunctionContextReference(CeedQFunctionContext ctx);
252ec3da8bcSJed Brown 
253480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataCreate(Ceed ceed, CeedQFunctionAssemblyData *data);
254480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataReference(CeedQFunctionAssemblyData data);
255beecbf24SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataSetReuse(CeedQFunctionAssemblyData data, bool reuse_assembly_data);
256beecbf24SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataSetUpdateNeeded(CeedQFunctionAssemblyData data, bool needs_data_update);
2578b919e6bSJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataIsUpdateNeeded(CeedQFunctionAssemblyData data, bool *is_update_needed);
258480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataReferenceCopy(CeedQFunctionAssemblyData data, CeedQFunctionAssemblyData *data_copy);
259480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataIsSetup(CeedQFunctionAssemblyData data, bool *is_setup);
260480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataSetObjects(CeedQFunctionAssemblyData data, CeedVector vec, CeedElemRestriction rstr);
261480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataGetObjects(CeedQFunctionAssemblyData data, CeedVector *vec, CeedElemRestriction *rstr);
262480fae85SJeremy L Thompson CEED_EXTERN int CeedQFunctionAssemblyDataDestroy(CeedQFunctionAssemblyData *data);
263480fae85SJeremy L Thompson 
264ed9e99e6SJeremy L Thompson CEED_EXTERN int CeedOperatorAssemblyDataCreate(Ceed ceed, CeedOperator op, CeedOperatorAssemblyData *data);
265437c7c90SJeremy L Thompson CEED_EXTERN int CeedOperatorAssemblyDataGetEvalModes(CeedOperatorAssemblyData data, CeedInt *num_active_bases, CeedInt **num_eval_modes_in,
266437c7c90SJeremy L Thompson                                                      const CeedEvalMode ***eval_modes_in, CeedSize ***eval_mode_offsets_in,
267437c7c90SJeremy L Thompson                                                      CeedInt **num_eval_modes_out, const CeedEvalMode ***eval_modes_out,
268437c7c90SJeremy L Thompson                                                      CeedSize ***eval_mode_offsets_out, CeedSize *num_output_components);
269437c7c90SJeremy L Thompson CEED_EXTERN int CeedOperatorAssemblyDataGetBases(CeedOperatorAssemblyData data, CeedInt *num_active_bases, CeedBasis **active_bases,
270437c7c90SJeremy L Thompson                                                  const CeedScalar ***assembled_bases_in, const CeedScalar ***assembled_bases_out);
271437c7c90SJeremy L Thompson CEED_EXTERN int CeedOperatorAssemblyDataGetElemRestrictions(CeedOperatorAssemblyData data, CeedInt *num_active_elem_rstrs,
272437c7c90SJeremy L Thompson                                                             CeedElemRestriction **active_elem_rstrs);
273ed9e99e6SJeremy L Thompson CEED_EXTERN int CeedOperatorAssemblyDataDestroy(CeedOperatorAssemblyData *data);
274ed9e99e6SJeremy L Thompson 
275ed9e99e6SJeremy L Thompson CEED_EXTERN int CeedOperatorGetOperatorAssemblyData(CeedOperator op, CeedOperatorAssemblyData *data);
2762b730f8bSJeremy L Thompson CEED_EXTERN int CeedOperatorGetActiveBasis(CeedOperator op, CeedBasis *active_basis);
277ed9e99e6SJeremy L Thompson CEED_EXTERN int CeedOperatorGetActiveElemRestriction(CeedOperator op, CeedElemRestriction *active_rstr);
278d1d35e2fSjeremylt CEED_EXTERN int CeedOperatorGetNumArgs(CeedOperator op, CeedInt *num_args);
279d1d35e2fSjeremylt CEED_EXTERN int CeedOperatorIsSetupDone(CeedOperator op, bool *is_setup_done);
280ec3da8bcSJed Brown CEED_EXTERN int CeedOperatorGetQFunction(CeedOperator op, CeedQFunction *qf);
281d1d35e2fSjeremylt CEED_EXTERN int CeedOperatorIsComposite(CeedOperator op, bool *is_composite);
282ec3da8bcSJed Brown CEED_EXTERN int CeedOperatorGetData(CeedOperator op, void *data);
283ec3da8bcSJed Brown CEED_EXTERN int CeedOperatorSetData(CeedOperator op, void *data);
2849560d06aSjeremylt CEED_EXTERN int CeedOperatorReference(CeedOperator op);
285ec3da8bcSJed Brown CEED_EXTERN int CeedOperatorSetSetupDone(CeedOperator op);
286ec3da8bcSJed Brown 
2872b730f8bSJeremy L Thompson CEED_INTERN int CeedMatrixMatrixMultiply(Ceed ceed, const CeedScalar *mat_A, const CeedScalar *mat_B, CeedScalar *mat_C, CeedInt m, CeedInt n,
2882b730f8bSJeremy L Thompson                                          CeedInt kk);
289ba59ac12SSebastian Grimberg CEED_EXTERN int CeedQRFactorization(Ceed ceed, CeedScalar *mat, CeedScalar *tau, CeedInt m, CeedInt n);
290ba59ac12SSebastian Grimberg CEED_EXTERN int CeedHouseholderApplyQ(CeedScalar *mat_A, const CeedScalar *mat_Q, const CeedScalar *tau, CeedTransposeMode t_mode, CeedInt m,
291ba59ac12SSebastian Grimberg                                       CeedInt n, CeedInt k, CeedInt row, CeedInt col);
292ba59ac12SSebastian Grimberg CEED_EXTERN int CeedSymmetricSchurDecomposition(Ceed ceed, CeedScalar *mat, CeedScalar *lambda, CeedInt n);
293ba59ac12SSebastian Grimberg CEED_EXTERN int CeedSimultaneousDiagonalization(Ceed ceed, CeedScalar *mat_A, CeedScalar *mat_B, CeedScalar *x, CeedScalar *lambda, CeedInt n);
294ec3da8bcSJed Brown 
295ec3da8bcSJed Brown #endif
296