xref: /libCEED/rust/libceed-sys/c-src/interface/ceed-operator.c (revision 198eabcecbd45f5da29cfbf2059782a4bd775fa0)
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 
83d576824SJeremy L Thompson #include <ceed-impl.h>
949aac155SJeremy L Thompson #include <ceed.h>
102b730f8bSJeremy L Thompson #include <ceed/backend.h>
113d576824SJeremy L Thompson #include <stdbool.h>
123d576824SJeremy L Thompson #include <stdio.h>
133d576824SJeremy L Thompson #include <string.h>
14d7b241e6Sjeremylt 
15dfdf5a53Sjeremylt /// @file
167a982d89SJeremy L. Thompson /// Implementation of CeedOperator interfaces
177a982d89SJeremy L. Thompson 
187a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
197a982d89SJeremy L. Thompson /// CeedOperator Library Internal Functions
207a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
217a982d89SJeremy L. Thompson /// @addtogroup CeedOperatorDeveloper
227a982d89SJeremy L. Thompson /// @{
237a982d89SJeremy L. Thompson 
247a982d89SJeremy L. Thompson /**
25e15f9bd0SJeremy L Thompson   @brief Check if a CeedOperator Field matches the QFunction Field
26e15f9bd0SJeremy L Thompson 
27e15f9bd0SJeremy L Thompson   @param[in] ceed     Ceed object for error handling
28d1d35e2fSjeremylt   @param[in] qf_field QFunction Field matching Operator Field
29e15f9bd0SJeremy L Thompson   @param[in] r        Operator Field ElemRestriction
30e15f9bd0SJeremy L Thompson   @param[in] b        Operator Field Basis
31e15f9bd0SJeremy L Thompson 
32e15f9bd0SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
33e15f9bd0SJeremy L Thompson 
34e15f9bd0SJeremy L Thompson   @ref Developer
35e15f9bd0SJeremy L Thompson **/
362b730f8bSJeremy L Thompson static int CeedOperatorCheckField(Ceed ceed, CeedQFunctionField qf_field, CeedElemRestriction r, CeedBasis b) {
37edb2538eSJeremy L Thompson   CeedInt      dim = 1, num_comp = 1, q_comp = 1, rstr_num_comp = 1, size = qf_field->size;
381c66c397SJeremy L Thompson   CeedEvalMode eval_mode = qf_field->eval_mode;
392b730f8bSJeremy L Thompson 
40e15f9bd0SJeremy L Thompson   // Restriction
416574a04fSJeremy L Thompson   CeedCheck((r == CEED_ELEMRESTRICTION_NONE) == (eval_mode == CEED_EVAL_WEIGHT), ceed, CEED_ERROR_INCOMPATIBLE,
426574a04fSJeremy L Thompson             "CEED_ELEMRESTRICTION_NONE and CEED_EVAL_WEIGHT must be used together.");
43e15f9bd0SJeremy L Thompson   if (r != CEED_ELEMRESTRICTION_NONE) {
44edb2538eSJeremy L Thompson     CeedCall(CeedElemRestrictionGetNumComponents(r, &rstr_num_comp));
45e1e9e29dSJed Brown   }
46e15f9bd0SJeremy L Thompson   // Basis
47356036faSJeremy L Thompson   CeedCheck((b == CEED_BASIS_NONE) == (eval_mode == CEED_EVAL_NONE), ceed, CEED_ERROR_INCOMPATIBLE,
48356036faSJeremy L Thompson             "CEED_BASIS_NONE and CEED_EVAL_NONE must be used together.");
49356036faSJeremy L Thompson   if (b != CEED_BASIS_NONE) {
502b730f8bSJeremy L Thompson     CeedCall(CeedBasisGetDimension(b, &dim));
512b730f8bSJeremy L Thompson     CeedCall(CeedBasisGetNumComponents(b, &num_comp));
52c4e3f59bSSebastian Grimberg     CeedCall(CeedBasisGetNumQuadratureComponents(b, eval_mode, &q_comp));
53edb2538eSJeremy L Thompson     CeedCheck(r == CEED_ELEMRESTRICTION_NONE || rstr_num_comp == num_comp, ceed, CEED_ERROR_DIMENSION,
546574a04fSJeremy L Thompson               "Field '%s' of size %" CeedInt_FMT " and EvalMode %s: ElemRestriction has %" CeedInt_FMT " components, but Basis has %" CeedInt_FMT
556574a04fSJeremy L Thompson               " components",
56edb2538eSJeremy L Thompson               qf_field->field_name, qf_field->size, CeedEvalModes[qf_field->eval_mode], rstr_num_comp, num_comp);
57e15f9bd0SJeremy L Thompson   }
58e15f9bd0SJeremy L Thompson   // Field size
59d1d35e2fSjeremylt   switch (eval_mode) {
60e15f9bd0SJeremy L Thompson     case CEED_EVAL_NONE:
61edb2538eSJeremy L Thompson       CeedCheck(size == rstr_num_comp, ceed, CEED_ERROR_DIMENSION,
62953dad27SJames Wright                 "Field '%s' of size %" CeedInt_FMT " and EvalMode %s: ElemRestriction has %" CeedInt_FMT " components", qf_field->field_name,
63edb2538eSJeremy L Thompson                 qf_field->size, CeedEvalModes[qf_field->eval_mode], rstr_num_comp);
64e15f9bd0SJeremy L Thompson       break;
65e15f9bd0SJeremy L Thompson     case CEED_EVAL_INTERP:
66c4e3f59bSSebastian Grimberg     case CEED_EVAL_GRAD:
67c4e3f59bSSebastian Grimberg     case CEED_EVAL_DIV:
68c4e3f59bSSebastian Grimberg     case CEED_EVAL_CURL:
696574a04fSJeremy L Thompson       CeedCheck(size == num_comp * q_comp, ceed, CEED_ERROR_DIMENSION,
706574a04fSJeremy L Thompson                 "Field '%s' of size %" CeedInt_FMT " and EvalMode %s: ElemRestriction/Basis has %" CeedInt_FMT " components", qf_field->field_name,
716574a04fSJeremy L Thompson                 qf_field->size, CeedEvalModes[qf_field->eval_mode], num_comp * q_comp);
72e15f9bd0SJeremy L Thompson       break;
73e15f9bd0SJeremy L Thompson     case CEED_EVAL_WEIGHT:
74d1d35e2fSjeremylt       // No additional checks required
75e15f9bd0SJeremy L Thompson       break;
76e15f9bd0SJeremy L Thompson   }
77e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
787a982d89SJeremy L. Thompson }
797a982d89SJeremy L. Thompson 
807a982d89SJeremy L. Thompson /**
817a982d89SJeremy L. Thompson   @brief View a field of a CeedOperator
827a982d89SJeremy L. Thompson 
837a982d89SJeremy L. Thompson   @param[in] field        Operator field to view
84d1d35e2fSjeremylt   @param[in] qf_field     QFunction field (carries field name)
85d1d35e2fSjeremylt   @param[in] field_number Number of field being viewed
864c4400c7SValeria Barra   @param[in] sub          true indicates sub-operator, which increases indentation; false for top-level operator
87d1d35e2fSjeremylt   @param[in] input        true for an input field; false for output field
887a982d89SJeremy L. Thompson   @param[in] stream       Stream to view to, e.g., stdout
897a982d89SJeremy L. Thompson 
907a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
917a982d89SJeremy L. Thompson 
927a982d89SJeremy L. Thompson   @ref Utility
937a982d89SJeremy L. Thompson **/
942b730f8bSJeremy L Thompson static int CeedOperatorFieldView(CeedOperatorField field, CeedQFunctionField qf_field, CeedInt field_number, bool sub, bool input, FILE *stream) {
957a982d89SJeremy L. Thompson   const char *pre    = sub ? "  " : "";
96d1d35e2fSjeremylt   const char *in_out = input ? "Input" : "Output";
977a982d89SJeremy L. Thompson 
982b730f8bSJeremy L Thompson   fprintf(stream,
992b730f8bSJeremy L Thompson           "%s    %s field %" CeedInt_FMT
1002b730f8bSJeremy L Thompson           ":\n"
1017a982d89SJeremy L. Thompson           "%s      Name: \"%s\"\n",
102d1d35e2fSjeremylt           pre, in_out, field_number, pre, qf_field->field_name);
103990fdeb6SJeremy L Thompson   fprintf(stream, "%s      Size: %" CeedInt_FMT "\n", pre, qf_field->size);
1042b730f8bSJeremy L Thompson   fprintf(stream, "%s      EvalMode: %s\n", pre, CeedEvalModes[qf_field->eval_mode]);
105356036faSJeremy L Thompson   if (field->basis == CEED_BASIS_NONE) fprintf(stream, "%s      No basis\n", pre);
1062b730f8bSJeremy L Thompson   if (field->vec == CEED_VECTOR_ACTIVE) fprintf(stream, "%s      Active vector\n", pre);
1072b730f8bSJeremy L Thompson   else if (field->vec == CEED_VECTOR_NONE) fprintf(stream, "%s      No vector\n", pre);
108e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1097a982d89SJeremy L. Thompson }
1107a982d89SJeremy L. Thompson 
1117a982d89SJeremy L. Thompson /**
1127a982d89SJeremy L. Thompson   @brief View a single CeedOperator
1137a982d89SJeremy L. Thompson 
1147a982d89SJeremy L. Thompson   @param[in] op     CeedOperator to view
1157a982d89SJeremy L. Thompson   @param[in] sub    Boolean flag for sub-operator
1167a982d89SJeremy L. Thompson   @param[in] stream Stream to write; typically stdout/stderr or a file
1177a982d89SJeremy L. Thompson 
1187a982d89SJeremy L. Thompson   @return Error code: 0 - success, otherwise - failure
1197a982d89SJeremy L. Thompson 
1207a982d89SJeremy L. Thompson   @ref Utility
1217a982d89SJeremy L. Thompson **/
1227a982d89SJeremy L. Thompson int CeedOperatorSingleView(CeedOperator op, bool sub, FILE *stream) {
1237a982d89SJeremy L. Thompson   const char *pre = sub ? "  " : "";
1241c66c397SJeremy L Thompson   CeedInt     num_elem, num_qpts, total_fields = 0;
1257a982d89SJeremy L. Thompson 
1262b730f8bSJeremy L Thompson   CeedCall(CeedOperatorGetNumElements(op, &num_elem));
1272b730f8bSJeremy L Thompson   CeedCall(CeedOperatorGetNumQuadraturePoints(op, &num_qpts));
1282b730f8bSJeremy L Thompson   CeedCall(CeedOperatorGetNumArgs(op, &total_fields));
1291c66c397SJeremy L Thompson 
1302b730f8bSJeremy L Thompson   fprintf(stream, "%s  %" CeedInt_FMT " elements with %" CeedInt_FMT " quadrature points each\n", pre, num_elem, num_qpts);
1312b730f8bSJeremy L Thompson   fprintf(stream, "%s  %" CeedInt_FMT " field%s\n", pre, total_fields, total_fields > 1 ? "s" : "");
1322b730f8bSJeremy L Thompson   fprintf(stream, "%s  %" CeedInt_FMT " input field%s:\n", pre, op->qf->num_input_fields, op->qf->num_input_fields > 1 ? "s" : "");
133d1d35e2fSjeremylt   for (CeedInt i = 0; i < op->qf->num_input_fields; i++) {
1342b730f8bSJeremy L Thompson     CeedCall(CeedOperatorFieldView(op->input_fields[i], op->qf->input_fields[i], i, sub, 1, stream));
1357a982d89SJeremy L. Thompson   }
1362b730f8bSJeremy L Thompson   fprintf(stream, "%s  %" CeedInt_FMT " output field%s:\n", pre, op->qf->num_output_fields, op->qf->num_output_fields > 1 ? "s" : "");
137d1d35e2fSjeremylt   for (CeedInt i = 0; i < op->qf->num_output_fields; i++) {
1382b730f8bSJeremy L Thompson     CeedCall(CeedOperatorFieldView(op->output_fields[i], op->qf->output_fields[i], i, sub, 0, stream));
1397a982d89SJeremy L. Thompson   }
140e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1417a982d89SJeremy L. Thompson }
1427a982d89SJeremy L. Thompson 
143d99fa3c5SJeremy L Thompson /**
1440f60e0a8SJeremy L Thompson   @brief Find the active vector basis for a non-composite CeedOperator
145eaf62fffSJeremy L Thompson 
146eaf62fffSJeremy L Thompson   @param[in] op            CeedOperator to find active basis for
1470f60e0a8SJeremy L Thompson   @param[out] active_basis Basis for active input vector or NULL for composite operator
148eaf62fffSJeremy L Thompson 
149eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
150eaf62fffSJeremy L Thompson 
151eaf62fffSJeremy L Thompson   @ref Developer
152eaf62fffSJeremy L Thompson **/
153eaf62fffSJeremy L Thompson int CeedOperatorGetActiveBasis(CeedOperator op, CeedBasis *active_basis) {
154506b1a0cSSebastian Grimberg   CeedCall(CeedOperatorGetActiveBases(op, active_basis, NULL));
155506b1a0cSSebastian Grimberg   return CEED_ERROR_SUCCESS;
156506b1a0cSSebastian Grimberg }
157506b1a0cSSebastian Grimberg 
158506b1a0cSSebastian Grimberg /**
159506b1a0cSSebastian Grimberg   @brief Find the active input and output vector bases for a non-composite CeedOperator
160506b1a0cSSebastian Grimberg 
161506b1a0cSSebastian Grimberg   @param[in] op                   CeedOperator to find active bases for
162506b1a0cSSebastian Grimberg   @param[out] active_input_basis  Basis for active input vector or NULL for composite operator
163506b1a0cSSebastian Grimberg   @param[out] active_output_basis Basis for active output vector or NULL for composite operator
164506b1a0cSSebastian Grimberg 
165506b1a0cSSebastian Grimberg   @return An error code: 0 - success, otherwise - failure
166506b1a0cSSebastian Grimberg 
167506b1a0cSSebastian Grimberg   @ref Developer
168506b1a0cSSebastian Grimberg **/
169506b1a0cSSebastian Grimberg int CeedOperatorGetActiveBases(CeedOperator op, CeedBasis *active_input_basis, CeedBasis *active_output_basis) {
1706aaed0edSJeremy L Thompson   Ceed ceed;
1711c66c397SJeremy L Thompson 
1726aaed0edSJeremy L Thompson   CeedCall(CeedOperatorGetCeed(op, &ceed));
173506b1a0cSSebastian Grimberg   if (active_input_basis) {
174506b1a0cSSebastian Grimberg     *active_input_basis = NULL;
175506b1a0cSSebastian Grimberg     if (!op->is_composite) {
1762b730f8bSJeremy L Thompson       for (CeedInt i = 0; i < op->qf->num_input_fields; i++) {
177eaf62fffSJeremy L Thompson         if (op->input_fields[i]->vec == CEED_VECTOR_ACTIVE) {
178506b1a0cSSebastian Grimberg           CeedCheck(!*active_input_basis || *active_input_basis == op->input_fields[i]->basis, ceed, CEED_ERROR_MINOR,
179506b1a0cSSebastian Grimberg                     "Multiple active input CeedBases found");
180506b1a0cSSebastian Grimberg           *active_input_basis = op->input_fields[i]->basis;
181eaf62fffSJeremy L Thompson         }
1822b730f8bSJeremy L Thompson       }
183506b1a0cSSebastian Grimberg       CeedCheck(*active_input_basis, ceed, CEED_ERROR_INCOMPLETE, "No active input CeedBasis found");
184506b1a0cSSebastian Grimberg     }
185506b1a0cSSebastian Grimberg   }
186506b1a0cSSebastian Grimberg   if (active_output_basis) {
187506b1a0cSSebastian Grimberg     *active_output_basis = NULL;
188506b1a0cSSebastian Grimberg     if (!op->is_composite) {
189506b1a0cSSebastian Grimberg       for (CeedInt i = 0; i < op->qf->num_output_fields; i++) {
190506b1a0cSSebastian Grimberg         if (op->output_fields[i]->vec == CEED_VECTOR_ACTIVE) {
191506b1a0cSSebastian Grimberg           CeedCheck(!*active_output_basis || *active_output_basis == op->output_fields[i]->basis, ceed, CEED_ERROR_MINOR,
192506b1a0cSSebastian Grimberg                     "Multiple active output CeedBases found");
193506b1a0cSSebastian Grimberg           *active_output_basis = op->output_fields[i]->basis;
194506b1a0cSSebastian Grimberg         }
195506b1a0cSSebastian Grimberg       }
196506b1a0cSSebastian Grimberg       CeedCheck(*active_output_basis, ceed, CEED_ERROR_INCOMPLETE, "No active output CeedBasis found");
197506b1a0cSSebastian Grimberg     }
198506b1a0cSSebastian Grimberg   }
199eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
200eaf62fffSJeremy L Thompson }
201eaf62fffSJeremy L Thompson 
202eaf62fffSJeremy L Thompson /**
2030f60e0a8SJeremy L Thompson   @brief Find the active vector ElemRestriction for a non-composite CeedOperator
204e2f04181SAndrew T. Barker 
205506b1a0cSSebastian Grimberg   @param[in] op           CeedOperator to find active ElemRestriction for
2060f60e0a8SJeremy L Thompson   @param[out] active_rstr ElemRestriction for active input vector or NULL for composite operator
207e2f04181SAndrew T. Barker 
208e2f04181SAndrew T. Barker   @return An error code: 0 - success, otherwise - failure
209e2f04181SAndrew T. Barker 
210e2f04181SAndrew T. Barker   @ref Utility
211e2f04181SAndrew T. Barker **/
2122b730f8bSJeremy L Thompson int CeedOperatorGetActiveElemRestriction(CeedOperator op, CeedElemRestriction *active_rstr) {
213506b1a0cSSebastian Grimberg   CeedCall(CeedOperatorGetActiveElemRestrictions(op, active_rstr, NULL));
214506b1a0cSSebastian Grimberg   return CEED_ERROR_SUCCESS;
215506b1a0cSSebastian Grimberg }
216506b1a0cSSebastian Grimberg 
217506b1a0cSSebastian Grimberg /**
218506b1a0cSSebastian Grimberg   @brief Find the active input and output vector ElemRestrictions for a non-composite CeedOperator
219506b1a0cSSebastian Grimberg 
220506b1a0cSSebastian Grimberg   @param[in] op                  CeedOperator to find active ElemRestrictions for
221506b1a0cSSebastian Grimberg   @param[out] active_input_rstr  ElemRestriction for active input vector or NULL for composite operator
222506b1a0cSSebastian Grimberg   @param[out] active_output_rstr ElemRestriction for active output vector or NULL for composite operator
223506b1a0cSSebastian Grimberg 
224506b1a0cSSebastian Grimberg   @return An error code: 0 - success, otherwise - failure
225506b1a0cSSebastian Grimberg 
226506b1a0cSSebastian Grimberg   @ref Utility
227506b1a0cSSebastian Grimberg **/
228506b1a0cSSebastian Grimberg int CeedOperatorGetActiveElemRestrictions(CeedOperator op, CeedElemRestriction *active_input_rstr, CeedElemRestriction *active_output_rstr) {
2296aaed0edSJeremy L Thompson   Ceed ceed;
2301c66c397SJeremy L Thompson 
2316aaed0edSJeremy L Thompson   CeedCall(CeedOperatorGetCeed(op, &ceed));
232506b1a0cSSebastian Grimberg   if (active_input_rstr) {
233506b1a0cSSebastian Grimberg     *active_input_rstr = NULL;
234506b1a0cSSebastian Grimberg     if (!op->is_composite) {
2352b730f8bSJeremy L Thompson       for (CeedInt i = 0; i < op->qf->num_input_fields; i++) {
236d1d35e2fSjeremylt         if (op->input_fields[i]->vec == CEED_VECTOR_ACTIVE) {
237506b1a0cSSebastian Grimberg           CeedCheck(!*active_input_rstr || *active_input_rstr == op->input_fields[i]->elem_rstr, ceed, CEED_ERROR_MINOR,
238506b1a0cSSebastian Grimberg                     "Multiple active input CeedElemRestrictions found");
239506b1a0cSSebastian Grimberg           *active_input_rstr = op->input_fields[i]->elem_rstr;
240e2f04181SAndrew T. Barker         }
2412b730f8bSJeremy L Thompson       }
242506b1a0cSSebastian Grimberg       CeedCheck(*active_input_rstr, ceed, CEED_ERROR_INCOMPLETE, "No active input CeedElemRestriction found");
243506b1a0cSSebastian Grimberg     }
244506b1a0cSSebastian Grimberg   }
245506b1a0cSSebastian Grimberg   if (active_output_rstr) {
246506b1a0cSSebastian Grimberg     *active_output_rstr = NULL;
247506b1a0cSSebastian Grimberg     if (!op->is_composite) {
248506b1a0cSSebastian Grimberg       for (CeedInt i = 0; i < op->qf->num_output_fields; i++) {
249506b1a0cSSebastian Grimberg         if (op->output_fields[i]->vec == CEED_VECTOR_ACTIVE) {
250506b1a0cSSebastian Grimberg           CeedCheck(!*active_output_rstr || *active_output_rstr == op->output_fields[i]->elem_rstr, ceed, CEED_ERROR_MINOR,
251506b1a0cSSebastian Grimberg                     "Multiple active output CeedElemRestrictions found");
252506b1a0cSSebastian Grimberg           *active_output_rstr = op->output_fields[i]->elem_rstr;
253506b1a0cSSebastian Grimberg         }
254506b1a0cSSebastian Grimberg       }
255506b1a0cSSebastian Grimberg       CeedCheck(*active_output_rstr, ceed, CEED_ERROR_INCOMPLETE, "No active output CeedElemRestriction found");
256506b1a0cSSebastian Grimberg     }
257506b1a0cSSebastian Grimberg   }
258e2f04181SAndrew T. Barker   return CEED_ERROR_SUCCESS;
259e2f04181SAndrew T. Barker }
260e2f04181SAndrew T. Barker 
261d8dd9a91SJeremy L Thompson /**
2622788fa27SJeremy L Thompson   @brief Set QFunctionContext field values of the specified type.
2634385fb7fSSebastian Grimberg 
264ea61e9acSJeremy L Thompson   For composite operators, the value is set in all sub-operator QFunctionContexts that have a matching `field_name`.
2659fd66db6SSebastian Grimberg   A non-zero error code is returned for single operators that do not have a matching field of the same type or composite operators that do not have
2669fd66db6SSebastian Grimberg any field of a matching type.
267d8dd9a91SJeremy L Thompson 
268ea61e9acSJeremy L Thompson   @param[in,out] op          CeedOperator
269ea61e9acSJeremy L Thompson   @param[in]     field_label Label of field to set
270ea61e9acSJeremy L Thompson   @param[in]     field_type  Type of field to set
2712788fa27SJeremy L Thompson   @param[in]     values      Values to set
272d8dd9a91SJeremy L Thompson 
273d8dd9a91SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
274d8dd9a91SJeremy L Thompson 
275d8dd9a91SJeremy L Thompson   @ref User
276d8dd9a91SJeremy L Thompson **/
2772788fa27SJeremy L Thompson static int CeedOperatorContextSetGeneric(CeedOperator op, CeedContextFieldLabel field_label, CeedContextFieldType field_type, void *values) {
2781c66c397SJeremy L Thompson   bool is_composite = false;
2791c66c397SJeremy L Thompson 
2806574a04fSJeremy L Thompson   CeedCheck(field_label, op->ceed, CEED_ERROR_UNSUPPORTED, "Invalid field label");
2813668ca4bSJeremy L Thompson 
2825ac9af79SJeremy L Thompson   // Check if field_label and op correspond
2835ac9af79SJeremy L Thompson   if (field_label->from_op) {
2845ac9af79SJeremy L Thompson     CeedInt index = -1;
2855ac9af79SJeremy L Thompson 
2865ac9af79SJeremy L Thompson     for (CeedInt i = 0; i < op->num_context_labels; i++) {
2875ac9af79SJeremy L Thompson       if (op->context_labels[i] == field_label) index = i;
2885ac9af79SJeremy L Thompson     }
2896574a04fSJeremy L Thompson     CeedCheck(index != -1, op->ceed, CEED_ERROR_UNSUPPORTED, "ContextFieldLabel does not correspond to the operator");
2905ac9af79SJeremy L Thompson   }
2915ac9af79SJeremy L Thompson 
2922b730f8bSJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
293d8dd9a91SJeremy L Thompson   if (is_composite) {
294d8dd9a91SJeremy L Thompson     CeedInt       num_sub;
295d8dd9a91SJeremy L Thompson     CeedOperator *sub_operators;
296d8dd9a91SJeremy L Thompson 
297c6ebc35dSJeremy L Thompson     CeedCall(CeedCompositeOperatorGetNumSub(op, &num_sub));
298c6ebc35dSJeremy L Thompson     CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
2996574a04fSJeremy L Thompson     CeedCheck(num_sub == field_label->num_sub_labels, op->ceed, CEED_ERROR_UNSUPPORTED,
3006574a04fSJeremy L Thompson               "Composite operator modified after ContextFieldLabel created");
301d8dd9a91SJeremy L Thompson 
302d8dd9a91SJeremy L Thompson     for (CeedInt i = 0; i < num_sub; i++) {
303d8dd9a91SJeremy L Thompson       // Try every sub-operator, ok if some sub-operators do not have field
3043668ca4bSJeremy L Thompson       if (field_label->sub_labels[i] && sub_operators[i]->qf->ctx) {
3052788fa27SJeremy L Thompson         CeedCall(CeedQFunctionContextSetGeneric(sub_operators[i]->qf->ctx, field_label->sub_labels[i], field_type, values));
306d8dd9a91SJeremy L Thompson       }
307d8dd9a91SJeremy L Thompson     }
308d8dd9a91SJeremy L Thompson   } else {
3096574a04fSJeremy L Thompson     CeedCheck(op->qf->ctx, op->ceed, CEED_ERROR_UNSUPPORTED, "QFunction does not have context data");
3102788fa27SJeremy L Thompson     CeedCall(CeedQFunctionContextSetGeneric(op->qf->ctx, field_label, field_type, values));
3112788fa27SJeremy L Thompson   }
3122788fa27SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3132788fa27SJeremy L Thompson }
3142788fa27SJeremy L Thompson 
3152788fa27SJeremy L Thompson /**
3162788fa27SJeremy L Thompson   @brief Get QFunctionContext field values of the specified type, read-only.
3174385fb7fSSebastian Grimberg 
3182788fa27SJeremy L Thompson   For composite operators, the values retrieved are for the first sub-operator QFunctionContext that have a matching `field_name`.
3199fd66db6SSebastian Grimberg   A non-zero error code is returned for single operators that do not have a matching field of the same type or composite operators that do not have
3209fd66db6SSebastian Grimberg any field of a matching type.
3212788fa27SJeremy L Thompson 
3222788fa27SJeremy L Thompson   @param[in,out] op          CeedOperator
3232788fa27SJeremy L Thompson   @param[in]     field_label Label of field to set
3242788fa27SJeremy L Thompson   @param[in]     field_type  Type of field to set
325c5d0f995SJed Brown   @param[out]    num_values  Number of values of type `field_type` in array `values`
326c5d0f995SJed Brown   @param[out]    values      Values in the label
3272788fa27SJeremy L Thompson 
3282788fa27SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
3292788fa27SJeremy L Thompson 
3302788fa27SJeremy L Thompson   @ref User
3312788fa27SJeremy L Thompson **/
3322788fa27SJeremy L Thompson static int CeedOperatorContextGetGenericRead(CeedOperator op, CeedContextFieldLabel field_label, CeedContextFieldType field_type, size_t *num_values,
3332788fa27SJeremy L Thompson                                              void *values) {
3341c66c397SJeremy L Thompson   bool is_composite = false;
3351c66c397SJeremy L Thompson 
3366574a04fSJeremy L Thompson   CeedCheck(field_label, op->ceed, CEED_ERROR_UNSUPPORTED, "Invalid field label");
3372788fa27SJeremy L Thompson 
3382788fa27SJeremy L Thompson   *(void **)values = NULL;
3392788fa27SJeremy L Thompson   *num_values      = 0;
3402788fa27SJeremy L Thompson 
3415ac9af79SJeremy L Thompson   // Check if field_label and op correspond
3425ac9af79SJeremy L Thompson   if (field_label->from_op) {
3435ac9af79SJeremy L Thompson     CeedInt index = -1;
3445ac9af79SJeremy L Thompson 
3455ac9af79SJeremy L Thompson     for (CeedInt i = 0; i < op->num_context_labels; i++) {
3465ac9af79SJeremy L Thompson       if (op->context_labels[i] == field_label) index = i;
3475ac9af79SJeremy L Thompson     }
3486574a04fSJeremy L Thompson     CeedCheck(index != -1, op->ceed, CEED_ERROR_UNSUPPORTED, "ContextFieldLabel does not correspond to the operator");
3495ac9af79SJeremy L Thompson   }
3505ac9af79SJeremy L Thompson 
3512788fa27SJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
3522788fa27SJeremy L Thompson   if (is_composite) {
3532788fa27SJeremy L Thompson     CeedInt       num_sub;
3542788fa27SJeremy L Thompson     CeedOperator *sub_operators;
3552788fa27SJeremy L Thompson 
3562788fa27SJeremy L Thompson     CeedCall(CeedCompositeOperatorGetNumSub(op, &num_sub));
3572788fa27SJeremy L Thompson     CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
3586574a04fSJeremy L Thompson     CeedCheck(num_sub == field_label->num_sub_labels, op->ceed, CEED_ERROR_UNSUPPORTED,
3596574a04fSJeremy L Thompson               "Composite operator modified after ContextFieldLabel created");
3602788fa27SJeremy L Thompson 
3612788fa27SJeremy L Thompson     for (CeedInt i = 0; i < num_sub; i++) {
3622788fa27SJeremy L Thompson       // Try every sub-operator, ok if some sub-operators do not have field
3632788fa27SJeremy L Thompson       if (field_label->sub_labels[i] && sub_operators[i]->qf->ctx) {
3642788fa27SJeremy L Thompson         CeedCall(CeedQFunctionContextGetGenericRead(sub_operators[i]->qf->ctx, field_label->sub_labels[i], field_type, num_values, values));
3652788fa27SJeremy L Thompson         return CEED_ERROR_SUCCESS;
3662788fa27SJeremy L Thompson       }
3672788fa27SJeremy L Thompson     }
3682788fa27SJeremy L Thompson   } else {
3696574a04fSJeremy L Thompson     CeedCheck(op->qf->ctx, op->ceed, CEED_ERROR_UNSUPPORTED, "QFunction does not have context data");
3702788fa27SJeremy L Thompson     CeedCall(CeedQFunctionContextGetGenericRead(op->qf->ctx, field_label, field_type, num_values, values));
3712788fa27SJeremy L Thompson   }
3722788fa27SJeremy L Thompson   return CEED_ERROR_SUCCESS;
3732788fa27SJeremy L Thompson }
3742788fa27SJeremy L Thompson 
3752788fa27SJeremy L Thompson /**
3762788fa27SJeremy L Thompson   @brief Restore QFunctionContext field values of the specified type, read-only.
3774385fb7fSSebastian Grimberg 
3782788fa27SJeremy L Thompson   For composite operators, the values restored are for the first sub-operator QFunctionContext that have a matching `field_name`.
3799fd66db6SSebastian Grimberg   A non-zero error code is returned for single operators that do not have a matching field of the same type or composite operators that do not have
3809fd66db6SSebastian Grimberg any field of a matching type.
3812788fa27SJeremy L Thompson 
3822788fa27SJeremy L Thompson   @param[in,out] op          CeedOperator
3832788fa27SJeremy L Thompson   @param[in]     field_label Label of field to set
3842788fa27SJeremy L Thompson   @param[in]     field_type  Type of field to set
385c5d0f995SJed Brown   @param[in]     values      Values array to restore
3862788fa27SJeremy L Thompson 
3872788fa27SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
3882788fa27SJeremy L Thompson 
3892788fa27SJeremy L Thompson   @ref User
3902788fa27SJeremy L Thompson **/
3912788fa27SJeremy L Thompson static int CeedOperatorContextRestoreGenericRead(CeedOperator op, CeedContextFieldLabel field_label, CeedContextFieldType field_type, void *values) {
3921c66c397SJeremy L Thompson   bool is_composite = false;
3931c66c397SJeremy L Thompson 
3946574a04fSJeremy L Thompson   CeedCheck(field_label, op->ceed, CEED_ERROR_UNSUPPORTED, "Invalid field label");
3952788fa27SJeremy L Thompson 
3965ac9af79SJeremy L Thompson   // Check if field_label and op correspond
3975ac9af79SJeremy L Thompson   if (field_label->from_op) {
3985ac9af79SJeremy L Thompson     CeedInt index = -1;
3995ac9af79SJeremy L Thompson 
4005ac9af79SJeremy L Thompson     for (CeedInt i = 0; i < op->num_context_labels; i++) {
4015ac9af79SJeremy L Thompson       if (op->context_labels[i] == field_label) index = i;
4025ac9af79SJeremy L Thompson     }
4036574a04fSJeremy L Thompson     CeedCheck(index != -1, op->ceed, CEED_ERROR_UNSUPPORTED, "ContextFieldLabel does not correspond to the operator");
4045ac9af79SJeremy L Thompson   }
4055ac9af79SJeremy L Thompson 
4062788fa27SJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
4072788fa27SJeremy L Thompson   if (is_composite) {
4082788fa27SJeremy L Thompson     CeedInt       num_sub;
4092788fa27SJeremy L Thompson     CeedOperator *sub_operators;
4102788fa27SJeremy L Thompson 
4112788fa27SJeremy L Thompson     CeedCall(CeedCompositeOperatorGetNumSub(op, &num_sub));
4122788fa27SJeremy L Thompson     CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
4136574a04fSJeremy L Thompson     CeedCheck(num_sub == field_label->num_sub_labels, op->ceed, CEED_ERROR_UNSUPPORTED,
4146574a04fSJeremy L Thompson               "Composite operator modified after ContextFieldLabel created");
4152788fa27SJeremy L Thompson 
4162788fa27SJeremy L Thompson     for (CeedInt i = 0; i < num_sub; i++) {
4172788fa27SJeremy L Thompson       // Try every sub-operator, ok if some sub-operators do not have field
4182788fa27SJeremy L Thompson       if (field_label->sub_labels[i] && sub_operators[i]->qf->ctx) {
4192788fa27SJeremy L Thompson         CeedCall(CeedQFunctionContextRestoreGenericRead(sub_operators[i]->qf->ctx, field_label->sub_labels[i], field_type, values));
4202788fa27SJeremy L Thompson         return CEED_ERROR_SUCCESS;
4212788fa27SJeremy L Thompson       }
4222788fa27SJeremy L Thompson     }
4232788fa27SJeremy L Thompson   } else {
4246574a04fSJeremy L Thompson     CeedCheck(op->qf->ctx, op->ceed, CEED_ERROR_UNSUPPORTED, "QFunction does not have context data");
4252788fa27SJeremy L Thompson     CeedCall(CeedQFunctionContextRestoreGenericRead(op->qf->ctx, field_label, field_type, values));
426d8dd9a91SJeremy L Thompson   }
427d8dd9a91SJeremy L Thompson   return CEED_ERROR_SUCCESS;
428d8dd9a91SJeremy L Thompson }
429d8dd9a91SJeremy L Thompson 
4307a982d89SJeremy L. Thompson /// @}
4317a982d89SJeremy L. Thompson 
4327a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
4337a982d89SJeremy L. Thompson /// CeedOperator Backend API
4347a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
4357a982d89SJeremy L. Thompson /// @addtogroup CeedOperatorBackend
4367a982d89SJeremy L. Thompson /// @{
4377a982d89SJeremy L. Thompson 
4387a982d89SJeremy L. Thompson /**
4397a982d89SJeremy L. Thompson   @brief Get the number of arguments associated with a CeedOperator
4407a982d89SJeremy L. Thompson 
441ea61e9acSJeremy L Thompson   @param[in]  op        CeedOperator
442d1d35e2fSjeremylt   @param[out] num_args  Variable to store vector number of arguments
4437a982d89SJeremy L. Thompson 
4447a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4457a982d89SJeremy L. Thompson 
4467a982d89SJeremy L. Thompson   @ref Backend
4477a982d89SJeremy L. Thompson **/
448d1d35e2fSjeremylt int CeedOperatorGetNumArgs(CeedOperator op, CeedInt *num_args) {
4496574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_MINOR, "Not defined for composite operators");
450d1d35e2fSjeremylt   *num_args = op->num_fields;
451e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4527a982d89SJeremy L. Thompson }
4537a982d89SJeremy L. Thompson 
4547a982d89SJeremy L. Thompson /**
4557a982d89SJeremy L. Thompson   @brief Get the setup status of a CeedOperator
4567a982d89SJeremy L. Thompson 
457ea61e9acSJeremy L Thompson   @param[in]  op            CeedOperator
458d1d35e2fSjeremylt   @param[out] is_setup_done Variable to store setup status
4597a982d89SJeremy L. Thompson 
4607a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4617a982d89SJeremy L. Thompson 
4627a982d89SJeremy L. Thompson   @ref Backend
4637a982d89SJeremy L. Thompson **/
464d1d35e2fSjeremylt int CeedOperatorIsSetupDone(CeedOperator op, bool *is_setup_done) {
465f04ea552SJeremy L Thompson   *is_setup_done = op->is_backend_setup;
466e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4677a982d89SJeremy L. Thompson }
4687a982d89SJeremy L. Thompson 
4697a982d89SJeremy L. Thompson /**
4707a982d89SJeremy L. Thompson   @brief Get the QFunction associated with a CeedOperator
4717a982d89SJeremy L. Thompson 
472ea61e9acSJeremy L Thompson   @param[in]  op CeedOperator
4737a982d89SJeremy L. Thompson   @param[out] qf Variable to store QFunction
4747a982d89SJeremy L. Thompson 
4757a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
4767a982d89SJeremy L. Thompson 
4777a982d89SJeremy L. Thompson   @ref Backend
4787a982d89SJeremy L. Thompson **/
4797a982d89SJeremy L. Thompson int CeedOperatorGetQFunction(CeedOperator op, CeedQFunction *qf) {
4806574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_MINOR, "Not defined for composite operator");
4817a982d89SJeremy L. Thompson   *qf = op->qf;
482e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
4837a982d89SJeremy L. Thompson }
4847a982d89SJeremy L. Thompson 
4857a982d89SJeremy L. Thompson /**
486c04a41a7SJeremy L Thompson   @brief Get a boolean value indicating if the CeedOperator is composite
487c04a41a7SJeremy L Thompson 
488ea61e9acSJeremy L Thompson   @param[in]  op           CeedOperator
489d1d35e2fSjeremylt   @param[out] is_composite Variable to store composite status
490c04a41a7SJeremy L Thompson 
491c04a41a7SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
492c04a41a7SJeremy L Thompson 
493c04a41a7SJeremy L Thompson   @ref Backend
494c04a41a7SJeremy L Thompson **/
495d1d35e2fSjeremylt int CeedOperatorIsComposite(CeedOperator op, bool *is_composite) {
496f04ea552SJeremy L Thompson   *is_composite = op->is_composite;
497e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
498c04a41a7SJeremy L Thompson }
499c04a41a7SJeremy L Thompson 
500c04a41a7SJeremy L Thompson /**
5017a982d89SJeremy L. Thompson   @brief Get the backend data of a CeedOperator
5027a982d89SJeremy L. Thompson 
503ea61e9acSJeremy L Thompson   @param[in]  op   CeedOperator
5047a982d89SJeremy L. Thompson   @param[out] data Variable to store data
5057a982d89SJeremy L. Thompson 
5067a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5077a982d89SJeremy L. Thompson 
5087a982d89SJeremy L. Thompson   @ref Backend
5097a982d89SJeremy L. Thompson **/
510777ff853SJeremy L Thompson int CeedOperatorGetData(CeedOperator op, void *data) {
511777ff853SJeremy L Thompson   *(void **)data = op->data;
512e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5137a982d89SJeremy L. Thompson }
5147a982d89SJeremy L. Thompson 
5157a982d89SJeremy L. Thompson /**
5167a982d89SJeremy L. Thompson   @brief Set the backend data of a CeedOperator
5177a982d89SJeremy L. Thompson 
518ea61e9acSJeremy L Thompson   @param[in,out] op   CeedOperator
519ea61e9acSJeremy L Thompson   @param[in]     data Data to set
5207a982d89SJeremy L. Thompson 
5217a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5227a982d89SJeremy L. Thompson 
5237a982d89SJeremy L. Thompson   @ref Backend
5247a982d89SJeremy L. Thompson **/
525777ff853SJeremy L Thompson int CeedOperatorSetData(CeedOperator op, void *data) {
526777ff853SJeremy L Thompson   op->data = data;
527e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5287a982d89SJeremy L. Thompson }
5297a982d89SJeremy L. Thompson 
5307a982d89SJeremy L. Thompson /**
53134359f16Sjeremylt   @brief Increment the reference counter for a CeedOperator
53234359f16Sjeremylt 
533ea61e9acSJeremy L Thompson   @param[in,out] op CeedOperator to increment the reference counter
53434359f16Sjeremylt 
53534359f16Sjeremylt   @return An error code: 0 - success, otherwise - failure
53634359f16Sjeremylt 
53734359f16Sjeremylt   @ref Backend
53834359f16Sjeremylt **/
5399560d06aSjeremylt int CeedOperatorReference(CeedOperator op) {
54034359f16Sjeremylt   op->ref_count++;
54134359f16Sjeremylt   return CEED_ERROR_SUCCESS;
54234359f16Sjeremylt }
54334359f16Sjeremylt 
54434359f16Sjeremylt /**
5457a982d89SJeremy L. Thompson   @brief Set the setup flag of a CeedOperator to True
5467a982d89SJeremy L. Thompson 
547ea61e9acSJeremy L Thompson   @param[in,out] op CeedOperator
5487a982d89SJeremy L. Thompson 
5497a982d89SJeremy L. Thompson   @return An error code: 0 - success, otherwise - failure
5507a982d89SJeremy L. Thompson 
5517a982d89SJeremy L. Thompson   @ref Backend
5527a982d89SJeremy L. Thompson **/
5537a982d89SJeremy L. Thompson int CeedOperatorSetSetupDone(CeedOperator op) {
554f04ea552SJeremy L Thompson   op->is_backend_setup = true;
555e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
5567a982d89SJeremy L. Thompson }
5577a982d89SJeremy L. Thompson 
5587a982d89SJeremy L. Thompson /// @}
5597a982d89SJeremy L. Thompson 
5607a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
5617a982d89SJeremy L. Thompson /// CeedOperator Public API
5627a982d89SJeremy L. Thompson /// ----------------------------------------------------------------------------
5637a982d89SJeremy L. Thompson /// @addtogroup CeedOperatorUser
564dfdf5a53Sjeremylt /// @{
565d7b241e6Sjeremylt 
566d7b241e6Sjeremylt /**
567ea61e9acSJeremy L Thompson   @brief Create a CeedOperator and associate a CeedQFunction.
5684385fb7fSSebastian Grimberg 
569ea61e9acSJeremy L Thompson   A CeedBasis and CeedElemRestriction can be associated with CeedQFunction fields with \ref CeedOperatorSetField.
570d7b241e6Sjeremylt 
571ea61e9acSJeremy L Thompson   @param[in]  ceed Ceed object where the CeedOperator will be created
572ea61e9acSJeremy L Thompson   @param[in]  qf   QFunction defining the action of the operator at quadrature points
573ea61e9acSJeremy L Thompson   @param[in]  dqf  QFunction defining the action of the Jacobian of @a qf (or @ref CEED_QFUNCTION_NONE)
574ea61e9acSJeremy L Thompson   @param[in]  dqfT QFunction defining the action of the transpose of the Jacobian of @a qf (or @ref CEED_QFUNCTION_NONE)
575ea61e9acSJeremy L Thompson   @param[out] op   Address of the variable where the newly created CeedOperator will be stored
576b11c1e72Sjeremylt 
577b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
578dfdf5a53Sjeremylt 
5797a982d89SJeremy L. Thompson   @ref User
580d7b241e6Sjeremylt  */
5812b730f8bSJeremy L Thompson int CeedOperatorCreate(Ceed ceed, CeedQFunction qf, CeedQFunction dqf, CeedQFunction dqfT, CeedOperator *op) {
5825fe0d4faSjeremylt   if (!ceed->OperatorCreate) {
5835fe0d4faSjeremylt     Ceed delegate;
5846574a04fSJeremy L Thompson 
5852b730f8bSJeremy L Thompson     CeedCall(CeedGetObjectDelegate(ceed, &delegate, "Operator"));
5866574a04fSJeremy L Thompson     CeedCheck(delegate, ceed, CEED_ERROR_UNSUPPORTED, "Backend does not support OperatorCreate");
5872b730f8bSJeremy L Thompson     CeedCall(CeedOperatorCreate(delegate, qf, dqf, dqfT, op));
588e15f9bd0SJeremy L Thompson     return CEED_ERROR_SUCCESS;
5895fe0d4faSjeremylt   }
5905fe0d4faSjeremylt 
5916574a04fSJeremy L Thompson   CeedCheck(qf && qf != CEED_QFUNCTION_NONE, ceed, CEED_ERROR_MINOR, "Operator must have a valid QFunction.");
592db002c03SJeremy L Thompson 
5932b730f8bSJeremy L Thompson   CeedCall(CeedCalloc(1, op));
594db002c03SJeremy L Thompson   CeedCall(CeedReferenceCopy(ceed, &(*op)->ceed));
595d1d35e2fSjeremylt   (*op)->ref_count   = 1;
5962b104005SJeremy L Thompson   (*op)->input_size  = -1;
5972b104005SJeremy L Thompson   (*op)->output_size = -1;
598db002c03SJeremy L Thompson   CeedCall(CeedQFunctionReferenceCopy(qf, &(*op)->qf));
599db002c03SJeremy L Thompson   if (dqf && dqf != CEED_QFUNCTION_NONE) CeedCall(CeedQFunctionReferenceCopy(dqf, &(*op)->dqf));
600db002c03SJeremy L Thompson   if (dqfT && dqfT != CEED_QFUNCTION_NONE) CeedCall(CeedQFunctionReferenceCopy(dqfT, &(*op)->dqfT));
6012b730f8bSJeremy L Thompson   CeedCall(CeedQFunctionAssemblyDataCreate(ceed, &(*op)->qf_assembled));
6022b730f8bSJeremy L Thompson   CeedCall(CeedCalloc(CEED_FIELD_MAX, &(*op)->input_fields));
6032b730f8bSJeremy L Thompson   CeedCall(CeedCalloc(CEED_FIELD_MAX, &(*op)->output_fields));
6042b730f8bSJeremy L Thompson   CeedCall(ceed->OperatorCreate(*op));
605e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
606d7b241e6Sjeremylt }
607d7b241e6Sjeremylt 
608d7b241e6Sjeremylt /**
60952d6035fSJeremy L Thompson   @brief Create an operator that composes the action of several operators
61052d6035fSJeremy L Thompson 
611ea61e9acSJeremy L Thompson   @param[in]  ceed Ceed object where the CeedOperator will be created
612ea61e9acSJeremy L Thompson   @param[out] op   Address of the variable where the newly created Composite CeedOperator will be stored
61352d6035fSJeremy L Thompson 
61452d6035fSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
61552d6035fSJeremy L Thompson 
6167a982d89SJeremy L. Thompson   @ref User
61752d6035fSJeremy L Thompson  */
61852d6035fSJeremy L Thompson int CeedCompositeOperatorCreate(Ceed ceed, CeedOperator *op) {
61952d6035fSJeremy L Thompson   if (!ceed->CompositeOperatorCreate) {
62052d6035fSJeremy L Thompson     Ceed delegate;
62152d6035fSJeremy L Thompson 
6221c66c397SJeremy L Thompson     CeedCall(CeedGetObjectDelegate(ceed, &delegate, "Operator"));
623250756a7Sjeremylt     if (delegate) {
6242b730f8bSJeremy L Thompson       CeedCall(CeedCompositeOperatorCreate(delegate, op));
625e15f9bd0SJeremy L Thompson       return CEED_ERROR_SUCCESS;
62652d6035fSJeremy L Thompson     }
627250756a7Sjeremylt   }
62852d6035fSJeremy L Thompson 
6292b730f8bSJeremy L Thompson   CeedCall(CeedCalloc(1, op));
630db002c03SJeremy L Thompson   CeedCall(CeedReferenceCopy(ceed, &(*op)->ceed));
631996d9ab5SJed Brown   (*op)->ref_count    = 1;
632f04ea552SJeremy L Thompson   (*op)->is_composite = true;
6332b730f8bSJeremy L Thompson   CeedCall(CeedCalloc(CEED_COMPOSITE_MAX, &(*op)->sub_operators));
6342b104005SJeremy L Thompson   (*op)->input_size  = -1;
6352b104005SJeremy L Thompson   (*op)->output_size = -1;
636250756a7Sjeremylt 
637db002c03SJeremy L Thompson   if (ceed->CompositeOperatorCreate) CeedCall(ceed->CompositeOperatorCreate(*op));
638e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
63952d6035fSJeremy L Thompson }
64052d6035fSJeremy L Thompson 
64152d6035fSJeremy L Thompson /**
642ea61e9acSJeremy L Thompson   @brief Copy the pointer to a CeedOperator.
6434385fb7fSSebastian Grimberg 
644ea61e9acSJeremy L Thompson   Both pointers should be destroyed with `CeedOperatorDestroy()`.
645512bb800SJeremy L Thompson 
646512bb800SJeremy L Thompson   Note: If the value of `op_copy` passed to this function is non-NULL, then it is assumed that `op_copy` is a pointer to a CeedOperator.
647512bb800SJeremy L Thompson         This CeedOperator will be destroyed if `op_copy` is the only reference to this CeedOperator.
6489560d06aSjeremylt 
649ea61e9acSJeremy L Thompson   @param[in]  op         CeedOperator to copy reference to
650ea61e9acSJeremy L Thompson   @param[in,out] op_copy Variable to store copied reference
6519560d06aSjeremylt 
6529560d06aSjeremylt   @return An error code: 0 - success, otherwise - failure
6539560d06aSjeremylt 
6549560d06aSjeremylt   @ref User
6559560d06aSjeremylt **/
6569560d06aSjeremylt int CeedOperatorReferenceCopy(CeedOperator op, CeedOperator *op_copy) {
6572b730f8bSJeremy L Thompson   CeedCall(CeedOperatorReference(op));
6582b730f8bSJeremy L Thompson   CeedCall(CeedOperatorDestroy(op_copy));
6599560d06aSjeremylt   *op_copy = op;
6609560d06aSjeremylt   return CEED_ERROR_SUCCESS;
6619560d06aSjeremylt }
6629560d06aSjeremylt 
6639560d06aSjeremylt /**
664ea61e9acSJeremy L Thompson   @brief Provide a field to a CeedOperator for use by its CeedQFunction.
665d7b241e6Sjeremylt 
666ea61e9acSJeremy L Thompson   This function is used to specify both active and passive fields to a CeedOperator.
667ea61e9acSJeremy L Thompson   For passive fields, a vector @arg v must be provided.
668ea61e9acSJeremy L Thompson   Passive fields can inputs or outputs (updated in-place when operator is applied).
669d7b241e6Sjeremylt 
670ea61e9acSJeremy L Thompson   Active fields must be specified using this function, but their data (in a CeedVector) is passed in CeedOperatorApply().
671ea61e9acSJeremy L Thompson   There can be at most one active input CeedVector and at most one active output CeedVector passed to CeedOperatorApply().
672d7b241e6Sjeremylt 
673528a22edSJeremy L Thompson   The number of quadrature points must agree across all points.
674356036faSJeremy L Thompson   When using @ref CEED_BASIS_NONE, the number of quadrature points is determined by the element size of r.
675528a22edSJeremy L Thompson 
676ea61e9acSJeremy L Thompson   @param[in,out] op         CeedOperator on which to provide the field
677ea61e9acSJeremy L Thompson   @param[in]     field_name Name of the field (to be matched with the name used by CeedQFunction)
678ea61e9acSJeremy L Thompson   @param[in]     r          CeedElemRestriction
679356036faSJeremy L Thompson   @param[in]     b          CeedBasis in which the field resides or @ref CEED_BASIS_NONE if collocated with quadrature points
6805ac9af79SJeremy L Thompson   @param[in]     v          CeedVector to be used by CeedOperator or @ref CEED_VECTOR_ACTIVE if field is active or @ref CEED_VECTOR_NONE
6815ac9af79SJeremy L Thompson                               if using @ref CEED_EVAL_WEIGHT in the QFunction
682b11c1e72Sjeremylt 
683b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
684dfdf5a53Sjeremylt 
6857a982d89SJeremy L. Thompson   @ref User
686b11c1e72Sjeremylt **/
6872b730f8bSJeremy L Thompson int CeedOperatorSetField(CeedOperator op, const char *field_name, CeedElemRestriction r, CeedBasis b, CeedVector v) {
6881c66c397SJeremy L Thompson   bool               is_input = true;
6891c66c397SJeremy L Thompson   CeedInt            num_elem = 0, num_qpts = 0;
6901c66c397SJeremy L Thompson   CeedQFunctionField qf_field;
6911c66c397SJeremy L Thompson   CeedOperatorField *op_field;
6921c66c397SJeremy L Thompson 
6936574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_INCOMPATIBLE, "Cannot add field to composite operator.");
6946574a04fSJeremy L Thompson   CeedCheck(!op->is_immutable, op->ceed, CEED_ERROR_MAJOR, "Operator cannot be changed after set as immutable");
6956574a04fSJeremy L Thompson   CeedCheck(r, op->ceed, CEED_ERROR_INCOMPATIBLE, "ElemRestriction r for field \"%s\" must be non-NULL.", field_name);
6966574a04fSJeremy L Thompson   CeedCheck(b, op->ceed, CEED_ERROR_INCOMPATIBLE, "Basis b for field \"%s\" must be non-NULL.", field_name);
6976574a04fSJeremy L Thompson   CeedCheck(v, op->ceed, CEED_ERROR_INCOMPATIBLE, "Vector v for field \"%s\" must be non-NULL.", field_name);
69852d6035fSJeremy L Thompson 
6992b730f8bSJeremy L Thompson   CeedCall(CeedElemRestrictionGetNumElements(r, &num_elem));
7006574a04fSJeremy L Thompson   CeedCheck(r == CEED_ELEMRESTRICTION_NONE || !op->has_restriction || op->num_elem == num_elem, op->ceed, CEED_ERROR_DIMENSION,
7012b730f8bSJeremy L Thompson             "ElemRestriction with %" CeedInt_FMT " elements incompatible with prior %" CeedInt_FMT " elements", num_elem, op->num_elem);
7022c7e7413SJeremy L Thompson   {
7032c7e7413SJeremy L Thompson     CeedRestrictionType rstr_type;
7042c7e7413SJeremy L Thompson 
7052c7e7413SJeremy L Thompson     CeedCall(CeedElemRestrictionGetType(r, &rstr_type));
7062c7e7413SJeremy L Thompson     CeedCheck(rstr_type != CEED_RESTRICTION_POINTS, op->ceed, CEED_ERROR_UNSUPPORTED,
7072c7e7413SJeremy L Thompson               "CeedElemRestrictionAtPoints not supported for standard operator fields");
7082c7e7413SJeremy L Thompson   }
709d7b241e6Sjeremylt 
710356036faSJeremy L Thompson   if (b == CEED_BASIS_NONE) CeedCall(CeedElemRestrictionGetElementSize(r, &num_qpts));
7119a18a30cSJeremy L Thompson   else CeedCall(CeedBasisGetNumQuadraturePoints(b, &num_qpts));
712528a22edSJeremy L Thompson   CeedCheck(op->num_qpts == 0 || op->num_qpts == num_qpts, op->ceed, CEED_ERROR_DIMENSION,
713528a22edSJeremy L Thompson             "%s must correspond to the same number of quadrature points as previously added Bases. Found %" CeedInt_FMT
714528a22edSJeremy L Thompson             " quadrature points but expected %" CeedInt_FMT " quadrature points.",
715356036faSJeremy L Thompson             b == CEED_BASIS_NONE ? "ElemRestriction" : "Basis", num_qpts, op->num_qpts);
716d1d35e2fSjeremylt   for (CeedInt i = 0; i < op->qf->num_input_fields; i++) {
717d1d35e2fSjeremylt     if (!strcmp(field_name, (*op->qf->input_fields[i]).field_name)) {
718d1d35e2fSjeremylt       qf_field = op->qf->input_fields[i];
719d1d35e2fSjeremylt       op_field = &op->input_fields[i];
720d7b241e6Sjeremylt       goto found;
721d7b241e6Sjeremylt     }
722d7b241e6Sjeremylt   }
7232b104005SJeremy L Thompson   is_input = false;
724d1d35e2fSjeremylt   for (CeedInt i = 0; i < op->qf->num_output_fields; i++) {
725d1d35e2fSjeremylt     if (!strcmp(field_name, (*op->qf->output_fields[i]).field_name)) {
726d1d35e2fSjeremylt       qf_field = op->qf->output_fields[i];
727d1d35e2fSjeremylt       op_field = &op->output_fields[i];
728d7b241e6Sjeremylt       goto found;
729d7b241e6Sjeremylt     }
730d7b241e6Sjeremylt   }
731c042f62fSJeremy L Thompson   // LCOV_EXCL_START
7322b730f8bSJeremy L Thompson   return CeedError(op->ceed, CEED_ERROR_INCOMPLETE, "QFunction has no knowledge of field '%s'", field_name);
733c042f62fSJeremy L Thompson   // LCOV_EXCL_STOP
734d7b241e6Sjeremylt found:
7352b730f8bSJeremy L Thompson   CeedCall(CeedOperatorCheckField(op->ceed, qf_field, r, b));
7362b730f8bSJeremy L Thompson   CeedCall(CeedCalloc(1, op_field));
737e15f9bd0SJeremy L Thompson 
7382b104005SJeremy L Thompson   if (v == CEED_VECTOR_ACTIVE) {
7392b104005SJeremy L Thompson     CeedSize l_size;
7401c66c397SJeremy L Thompson 
7412b730f8bSJeremy L Thompson     CeedCall(CeedElemRestrictionGetLVectorSize(r, &l_size));
7422b104005SJeremy L Thompson     if (is_input) {
7432b104005SJeremy L Thompson       if (op->input_size == -1) op->input_size = l_size;
7446574a04fSJeremy L Thompson       CeedCheck(l_size == op->input_size, op->ceed, CEED_ERROR_INCOMPATIBLE, "LVector size %td does not match previous size %td", l_size,
7456574a04fSJeremy L Thompson                 op->input_size);
7462b104005SJeremy L Thompson     } else {
7472b104005SJeremy L Thompson       if (op->output_size == -1) op->output_size = l_size;
7486574a04fSJeremy L Thompson       CeedCheck(l_size == op->output_size, op->ceed, CEED_ERROR_INCOMPATIBLE, "LVector size %td does not match previous size %td", l_size,
7496574a04fSJeremy L Thompson                 op->output_size);
7502b104005SJeremy L Thompson     }
7512b730f8bSJeremy L Thompson   }
7522b104005SJeremy L Thompson 
753393ac2cdSJeremy L Thompson   CeedCall(CeedVectorReferenceCopy(v, &(*op_field)->vec));
754393ac2cdSJeremy L Thompson   CeedCall(CeedElemRestrictionReferenceCopy(r, &(*op_field)->elem_rstr));
755*198eabceSJeremy L Thompson   if (r != CEED_ELEMRESTRICTION_NONE && !op->has_restriction) {
756d1d35e2fSjeremylt     op->num_elem        = num_elem;
757d1d35e2fSjeremylt     op->has_restriction = true;  // Restriction set, but num_elem may be 0
758e15f9bd0SJeremy L Thompson   }
759393ac2cdSJeremy L Thompson   CeedCall(CeedBasisReferenceCopy(b, &(*op_field)->basis));
760*198eabceSJeremy L Thompson   if (op->num_qpts == 0) op->num_qpts = num_qpts;
761d1d35e2fSjeremylt   op->num_fields += 1;
7622b730f8bSJeremy L Thompson   CeedCall(CeedStringAllocCopy(field_name, (char **)&(*op_field)->field_name));
763e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
764d7b241e6Sjeremylt }
765d7b241e6Sjeremylt 
766d7b241e6Sjeremylt /**
76743bbe138SJeremy L Thompson   @brief Get the CeedOperatorFields of a CeedOperator
76843bbe138SJeremy L Thompson 
769ea61e9acSJeremy L Thompson   Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable.
770f04ea552SJeremy L Thompson 
771ea61e9acSJeremy L Thompson   @param[in]  op                CeedOperator
772f74ec584SJeremy L Thompson   @param[out] num_input_fields  Variable to store number of input fields
77343bbe138SJeremy L Thompson   @param[out] input_fields      Variable to store input_fields
774f74ec584SJeremy L Thompson   @param[out] num_output_fields Variable to store number of output fields
77543bbe138SJeremy L Thompson   @param[out] output_fields     Variable to store output_fields
77643bbe138SJeremy L Thompson 
77743bbe138SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
77843bbe138SJeremy L Thompson 
779e9b533fbSJeremy L Thompson   @ref Advanced
78043bbe138SJeremy L Thompson **/
7812b730f8bSJeremy L Thompson int CeedOperatorGetFields(CeedOperator op, CeedInt *num_input_fields, CeedOperatorField **input_fields, CeedInt *num_output_fields,
78243bbe138SJeremy L Thompson                           CeedOperatorField **output_fields) {
7836574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_MINOR, "Not defined for composite operator");
7842b730f8bSJeremy L Thompson   CeedCall(CeedOperatorCheckReady(op));
78543bbe138SJeremy L Thompson 
78643bbe138SJeremy L Thompson   if (num_input_fields) *num_input_fields = op->qf->num_input_fields;
78743bbe138SJeremy L Thompson   if (input_fields) *input_fields = op->input_fields;
78843bbe138SJeremy L Thompson   if (num_output_fields) *num_output_fields = op->qf->num_output_fields;
78943bbe138SJeremy L Thompson   if (output_fields) *output_fields = op->output_fields;
79043bbe138SJeremy L Thompson   return CEED_ERROR_SUCCESS;
79143bbe138SJeremy L Thompson }
79243bbe138SJeremy L Thompson 
79343bbe138SJeremy L Thompson /**
794de5900adSJames Wright   @brief Get a CeedOperatorField of an CeedOperator from its name
795de5900adSJames Wright 
796de5900adSJames Wright   Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable.
797de5900adSJames Wright 
798de5900adSJames Wright   @param[in]  op         CeedOperator
799de5900adSJames Wright   @param[in]  field_name Name of desired CeedOperatorField
800de5900adSJames Wright   @param[out] op_field   CeedOperatorField corresponding to the name
801de5900adSJames Wright 
802de5900adSJames Wright   @return An error code: 0 - success, otherwise - failure
803de5900adSJames Wright 
804de5900adSJames Wright   @ref Advanced
805de5900adSJames Wright **/
806de5900adSJames Wright int CeedOperatorGetFieldByName(CeedOperator op, const char *field_name, CeedOperatorField *op_field) {
8071c66c397SJeremy L Thompson   char              *name;
808de5900adSJames Wright   CeedInt            num_input_fields, num_output_fields;
809de5900adSJames Wright   CeedOperatorField *input_fields, *output_fields;
810de5900adSJames Wright 
8111c66c397SJeremy L Thompson   CeedCall(CeedOperatorGetFields(op, &num_input_fields, &input_fields, &num_output_fields, &output_fields));
812de5900adSJames Wright   for (CeedInt i = 0; i < num_input_fields; i++) {
813de5900adSJames Wright     CeedCall(CeedOperatorFieldGetName(input_fields[i], &name));
814de5900adSJames Wright     if (!strcmp(name, field_name)) {
815de5900adSJames Wright       *op_field = input_fields[i];
816de5900adSJames Wright       return CEED_ERROR_SUCCESS;
817de5900adSJames Wright     }
818de5900adSJames Wright   }
819de5900adSJames Wright   for (CeedInt i = 0; i < num_output_fields; i++) {
820de5900adSJames Wright     CeedCall(CeedOperatorFieldGetName(output_fields[i], &name));
821de5900adSJames Wright     if (!strcmp(name, field_name)) {
822de5900adSJames Wright       *op_field = output_fields[i];
823de5900adSJames Wright       return CEED_ERROR_SUCCESS;
824de5900adSJames Wright     }
825de5900adSJames Wright   }
826de5900adSJames Wright   // LCOV_EXCL_START
8271c66c397SJeremy L Thompson   bool has_name = op->name;
8281c66c397SJeremy L Thompson 
829de5900adSJames Wright   return CeedError(op->ceed, CEED_ERROR_MINOR, "The field \"%s\" not found in CeedOperator%s%s%s.\n", field_name, has_name ? " \"" : "",
830de5900adSJames Wright                    has_name ? op->name : "", has_name ? "\"" : "");
831de5900adSJames Wright   // LCOV_EXCL_STOP
832de5900adSJames Wright }
833de5900adSJames Wright 
834de5900adSJames Wright /**
83528567f8fSJeremy L Thompson   @brief Get the name of a CeedOperatorField
83628567f8fSJeremy L Thompson 
837ea61e9acSJeremy L Thompson   @param[in]  op_field    CeedOperatorField
83828567f8fSJeremy L Thompson   @param[out] field_name  Variable to store the field name
83928567f8fSJeremy L Thompson 
84028567f8fSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
84128567f8fSJeremy L Thompson 
842e9b533fbSJeremy L Thompson   @ref Advanced
84328567f8fSJeremy L Thompson **/
84428567f8fSJeremy L Thompson int CeedOperatorFieldGetName(CeedOperatorField op_field, char **field_name) {
84528567f8fSJeremy L Thompson   *field_name = (char *)op_field->field_name;
84628567f8fSJeremy L Thompson   return CEED_ERROR_SUCCESS;
84728567f8fSJeremy L Thompson }
84828567f8fSJeremy L Thompson 
84928567f8fSJeremy L Thompson /**
85043bbe138SJeremy L Thompson   @brief Get the CeedElemRestriction of a CeedOperatorField
85143bbe138SJeremy L Thompson 
852ea61e9acSJeremy L Thompson   @param[in]  op_field CeedOperatorField
85343bbe138SJeremy L Thompson   @param[out] rstr     Variable to store CeedElemRestriction
85443bbe138SJeremy L Thompson 
85543bbe138SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
85643bbe138SJeremy L Thompson 
857e9b533fbSJeremy L Thompson   @ref Advanced
85843bbe138SJeremy L Thompson **/
8592b730f8bSJeremy L Thompson int CeedOperatorFieldGetElemRestriction(CeedOperatorField op_field, CeedElemRestriction *rstr) {
860437c7c90SJeremy L Thompson   *rstr = op_field->elem_rstr;
86143bbe138SJeremy L Thompson   return CEED_ERROR_SUCCESS;
86243bbe138SJeremy L Thompson }
86343bbe138SJeremy L Thompson 
86443bbe138SJeremy L Thompson /**
86543bbe138SJeremy L Thompson   @brief Get the CeedBasis of a CeedOperatorField
86643bbe138SJeremy L Thompson 
867ea61e9acSJeremy L Thompson   @param[in]  op_field CeedOperatorField
86843bbe138SJeremy L Thompson   @param[out] basis    Variable to store CeedBasis
86943bbe138SJeremy L Thompson 
87043bbe138SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
87143bbe138SJeremy L Thompson 
872e9b533fbSJeremy L Thompson   @ref Advanced
87343bbe138SJeremy L Thompson **/
87443bbe138SJeremy L Thompson int CeedOperatorFieldGetBasis(CeedOperatorField op_field, CeedBasis *basis) {
87543bbe138SJeremy L Thompson   *basis = op_field->basis;
87643bbe138SJeremy L Thompson   return CEED_ERROR_SUCCESS;
87743bbe138SJeremy L Thompson }
87843bbe138SJeremy L Thompson 
87943bbe138SJeremy L Thompson /**
88043bbe138SJeremy L Thompson   @brief Get the CeedVector of a CeedOperatorField
88143bbe138SJeremy L Thompson 
882ea61e9acSJeremy L Thompson   @param[in]  op_field CeedOperatorField
88343bbe138SJeremy L Thompson   @param[out] vec      Variable to store CeedVector
88443bbe138SJeremy L Thompson 
88543bbe138SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
88643bbe138SJeremy L Thompson 
887e9b533fbSJeremy L Thompson   @ref Advanced
88843bbe138SJeremy L Thompson **/
88943bbe138SJeremy L Thompson int CeedOperatorFieldGetVector(CeedOperatorField op_field, CeedVector *vec) {
89043bbe138SJeremy L Thompson   *vec = op_field->vec;
89143bbe138SJeremy L Thompson   return CEED_ERROR_SUCCESS;
89243bbe138SJeremy L Thompson }
89343bbe138SJeremy L Thompson 
89443bbe138SJeremy L Thompson /**
89552d6035fSJeremy L Thompson   @brief Add a sub-operator to a composite CeedOperator
896288c0443SJeremy L Thompson 
897ea61e9acSJeremy L Thompson   @param[in,out] composite_op Composite CeedOperator
898ea61e9acSJeremy L Thompson   @param[in]     sub_op       Sub-operator CeedOperator
89952d6035fSJeremy L Thompson 
90052d6035fSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
90152d6035fSJeremy L Thompson 
9027a982d89SJeremy L. Thompson   @ref User
90352d6035fSJeremy L Thompson  */
9042b730f8bSJeremy L Thompson int CeedCompositeOperatorAddSub(CeedOperator composite_op, CeedOperator sub_op) {
9056574a04fSJeremy L Thompson   CeedCheck(composite_op->is_composite, composite_op->ceed, CEED_ERROR_MINOR, "CeedOperator is not a composite operator");
9066574a04fSJeremy L Thompson   CeedCheck(composite_op->num_suboperators < CEED_COMPOSITE_MAX, composite_op->ceed, CEED_ERROR_UNSUPPORTED, "Cannot add additional sub-operators");
9076574a04fSJeremy L Thompson   CeedCheck(!composite_op->is_immutable, composite_op->ceed, CEED_ERROR_MAJOR, "Operator cannot be changed after set as immutable");
9082b730f8bSJeremy L Thompson 
9092b730f8bSJeremy L Thompson   {
9102b730f8bSJeremy L Thompson     CeedSize input_size, output_size;
9111c66c397SJeremy L Thompson 
9122b730f8bSJeremy L Thompson     CeedCall(CeedOperatorGetActiveVectorLengths(sub_op, &input_size, &output_size));
9132b730f8bSJeremy L Thompson     if (composite_op->input_size == -1) composite_op->input_size = input_size;
9142b730f8bSJeremy L Thompson     if (composite_op->output_size == -1) composite_op->output_size = output_size;
9152b730f8bSJeremy L Thompson     // Note, a size of -1 means no active vector restriction set, so no incompatibility
9166574a04fSJeremy L Thompson     CeedCheck((input_size == -1 || input_size == composite_op->input_size) && (output_size == -1 || output_size == composite_op->output_size),
9176574a04fSJeremy L Thompson               composite_op->ceed, CEED_ERROR_MAJOR,
9182b730f8bSJeremy L Thompson               "Sub-operators must have compatible dimensions; composite operator of shape (%td, %td) not compatible with sub-operator of "
9192b730f8bSJeremy L Thompson               "shape (%td, %td)",
9202b730f8bSJeremy L Thompson               composite_op->input_size, composite_op->output_size, input_size, output_size);
9212b730f8bSJeremy L Thompson   }
9222b730f8bSJeremy L Thompson 
923d1d35e2fSjeremylt   composite_op->sub_operators[composite_op->num_suboperators] = sub_op;
9242b730f8bSJeremy L Thompson   CeedCall(CeedOperatorReference(sub_op));
925d1d35e2fSjeremylt   composite_op->num_suboperators++;
926e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
92752d6035fSJeremy L Thompson }
92852d6035fSJeremy L Thompson 
92952d6035fSJeremy L Thompson /**
93075f0d5a4SJeremy L Thompson   @brief Get the number of sub_operators associated with a CeedOperator
93175f0d5a4SJeremy L Thompson 
93275f0d5a4SJeremy L Thompson   @param[in]  op               CeedOperator
93375f0d5a4SJeremy L Thompson   @param[out] num_suboperators Variable to store number of sub_operators
93475f0d5a4SJeremy L Thompson 
93575f0d5a4SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
93675f0d5a4SJeremy L Thompson 
93775f0d5a4SJeremy L Thompson   @ref Backend
93875f0d5a4SJeremy L Thompson **/
939c6ebc35dSJeremy L Thompson int CeedCompositeOperatorGetNumSub(CeedOperator op, CeedInt *num_suboperators) {
9406574a04fSJeremy L Thompson   CeedCheck(op->is_composite, op->ceed, CEED_ERROR_MINOR, "Only defined for a composite operator");
94175f0d5a4SJeremy L Thompson   *num_suboperators = op->num_suboperators;
94275f0d5a4SJeremy L Thompson   return CEED_ERROR_SUCCESS;
94375f0d5a4SJeremy L Thompson }
94475f0d5a4SJeremy L Thompson 
94575f0d5a4SJeremy L Thompson /**
94675f0d5a4SJeremy L Thompson   @brief Get the list of sub_operators associated with a CeedOperator
94775f0d5a4SJeremy L Thompson 
94875f0d5a4SJeremy L Thompson   @param op                  CeedOperator
94975f0d5a4SJeremy L Thompson   @param[out] sub_operators  Variable to store list of sub_operators
95075f0d5a4SJeremy L Thompson 
95175f0d5a4SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
95275f0d5a4SJeremy L Thompson 
95375f0d5a4SJeremy L Thompson   @ref Backend
95475f0d5a4SJeremy L Thompson **/
955c6ebc35dSJeremy L Thompson int CeedCompositeOperatorGetSubList(CeedOperator op, CeedOperator **sub_operators) {
9566574a04fSJeremy L Thompson   CeedCheck(op->is_composite, op->ceed, CEED_ERROR_MINOR, "Only defined for a composite operator");
95775f0d5a4SJeremy L Thompson   *sub_operators = op->sub_operators;
95875f0d5a4SJeremy L Thompson   return CEED_ERROR_SUCCESS;
95975f0d5a4SJeremy L Thompson }
96075f0d5a4SJeremy L Thompson 
96175f0d5a4SJeremy L Thompson /**
9624db537f9SJeremy L Thompson   @brief Check if a CeedOperator is ready to be used.
9634db537f9SJeremy L Thompson 
9644db537f9SJeremy L Thompson   @param[in] op CeedOperator to check
9654db537f9SJeremy L Thompson 
9664db537f9SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
9674db537f9SJeremy L Thompson 
9684db537f9SJeremy L Thompson   @ref User
9694db537f9SJeremy L Thompson **/
9704db537f9SJeremy L Thompson int CeedOperatorCheckReady(CeedOperator op) {
9714db537f9SJeremy L Thompson   Ceed ceed;
9721c66c397SJeremy L Thompson 
9732b730f8bSJeremy L Thompson   CeedCall(CeedOperatorGetCeed(op, &ceed));
9744db537f9SJeremy L Thompson 
9752b730f8bSJeremy L Thompson   if (op->is_interface_setup) return CEED_ERROR_SUCCESS;
9764db537f9SJeremy L Thompson 
9774db537f9SJeremy L Thompson   CeedQFunction qf = op->qf;
9784db537f9SJeremy L Thompson   if (op->is_composite) {
97943622462SJeremy L Thompson     if (!op->num_suboperators) {
98043622462SJeremy L Thompson       // Empty operator setup
98143622462SJeremy L Thompson       op->input_size  = 0;
98243622462SJeremy L Thompson       op->output_size = 0;
98343622462SJeremy L Thompson     } else {
9844db537f9SJeremy L Thompson       for (CeedInt i = 0; i < op->num_suboperators; i++) {
9852b730f8bSJeremy L Thompson         CeedCall(CeedOperatorCheckReady(op->sub_operators[i]));
9864db537f9SJeremy L Thompson       }
9872b104005SJeremy L Thompson       // Sub-operators could be modified after adding to composite operator
9882b104005SJeremy L Thompson       // Need to verify no lvec incompatibility from any changes
9892b104005SJeremy L Thompson       CeedSize input_size, output_size;
9902b730f8bSJeremy L Thompson       CeedCall(CeedOperatorGetActiveVectorLengths(op, &input_size, &output_size));
99143622462SJeremy L Thompson     }
9924db537f9SJeremy L Thompson   } else {
9936574a04fSJeremy L Thompson     CeedCheck(op->num_fields > 0, ceed, CEED_ERROR_INCOMPLETE, "No operator fields set");
9946574a04fSJeremy L Thompson     CeedCheck(op->num_fields == qf->num_input_fields + qf->num_output_fields, ceed, CEED_ERROR_INCOMPLETE, "Not all operator fields set");
9956574a04fSJeremy L Thompson     CeedCheck(op->has_restriction, ceed, CEED_ERROR_INCOMPLETE, "At least one restriction required");
9966574a04fSJeremy L Thompson     CeedCheck(op->num_qpts > 0, ceed, CEED_ERROR_INCOMPLETE,
9976574a04fSJeremy L Thompson               "At least one non-collocated basis is required or the number of quadrature points must be set");
9982b730f8bSJeremy L Thompson   }
9994db537f9SJeremy L Thompson 
10004db537f9SJeremy L Thompson   // Flag as immutable and ready
10014db537f9SJeremy L Thompson   op->is_interface_setup = true;
10022b730f8bSJeremy L Thompson   if (op->qf && op->qf != CEED_QFUNCTION_NONE) op->qf->is_immutable = true;
10032b730f8bSJeremy L Thompson   if (op->dqf && op->dqf != CEED_QFUNCTION_NONE) op->dqf->is_immutable = true;
10042b730f8bSJeremy L Thompson   if (op->dqfT && op->dqfT != CEED_QFUNCTION_NONE) op->dqfT->is_immutable = true;
10054db537f9SJeremy L Thompson   return CEED_ERROR_SUCCESS;
10064db537f9SJeremy L Thompson }
10074db537f9SJeremy L Thompson 
10084db537f9SJeremy L Thompson /**
1009c9366a6bSJeremy L Thompson   @brief Get vector lengths for the active input and/or output vectors of a CeedOperator.
10104385fb7fSSebastian Grimberg 
1011ea61e9acSJeremy L Thompson   Note: Lengths of -1 indicate that the CeedOperator does not have an active input and/or output.
1012c9366a6bSJeremy L Thompson 
1013c9366a6bSJeremy L Thompson   @param[in]  op          CeedOperator
1014c9366a6bSJeremy L Thompson   @param[out] input_size  Variable to store active input vector length, or NULL
1015c9366a6bSJeremy L Thompson   @param[out] output_size Variable to store active output vector length, or NULL
1016c9366a6bSJeremy L Thompson 
1017c9366a6bSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1018c9366a6bSJeremy L Thompson 
1019c9366a6bSJeremy L Thompson   @ref User
1020c9366a6bSJeremy L Thompson **/
10212b730f8bSJeremy L Thompson int CeedOperatorGetActiveVectorLengths(CeedOperator op, CeedSize *input_size, CeedSize *output_size) {
1022c9366a6bSJeremy L Thompson   bool is_composite;
1023c9366a6bSJeremy L Thompson 
10242b104005SJeremy L Thompson   if (input_size) *input_size = op->input_size;
10252b104005SJeremy L Thompson   if (output_size) *output_size = op->output_size;
1026c9366a6bSJeremy L Thompson 
10272b730f8bSJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
10282b104005SJeremy L Thompson   if (is_composite && (op->input_size == -1 || op->output_size == -1)) {
1029c9366a6bSJeremy L Thompson     for (CeedInt i = 0; i < op->num_suboperators; i++) {
1030c9366a6bSJeremy L Thompson       CeedSize sub_input_size, sub_output_size;
10311c66c397SJeremy L Thompson 
10322b730f8bSJeremy L Thompson       CeedCall(CeedOperatorGetActiveVectorLengths(op->sub_operators[i], &sub_input_size, &sub_output_size));
10332b104005SJeremy L Thompson       if (op->input_size == -1) op->input_size = sub_input_size;
10342b104005SJeremy L Thompson       if (op->output_size == -1) op->output_size = sub_output_size;
10352b104005SJeremy L Thompson       // Note, a size of -1 means no active vector restriction set, so no incompatibility
10366574a04fSJeremy L Thompson       CeedCheck((sub_input_size == -1 || sub_input_size == op->input_size) && (sub_output_size == -1 || sub_output_size == op->output_size), op->ceed,
10376574a04fSJeremy L Thompson                 CEED_ERROR_MAJOR,
10382b730f8bSJeremy L Thompson                 "Sub-operators must have compatible dimensions; composite operator of shape (%td, %td) not compatible with sub-operator of "
10392b730f8bSJeremy L Thompson                 "shape (%td, %td)",
10402b104005SJeremy L Thompson                 op->input_size, op->output_size, input_size, output_size);
1041c9366a6bSJeremy L Thompson     }
10422b730f8bSJeremy L Thompson   }
1043c9366a6bSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1044c9366a6bSJeremy L Thompson }
1045c9366a6bSJeremy L Thompson 
1046c9366a6bSJeremy L Thompson /**
1047beecbf24SJeremy L Thompson   @brief Set reuse of CeedQFunction data in CeedOperatorLinearAssemble* functions.
10484385fb7fSSebastian Grimberg 
1049ea61e9acSJeremy L Thompson   When `reuse_assembly_data = false` (default), the CeedQFunction associated with this CeedOperator is re-assembled every time a
10509fd66db6SSebastian Grimberg `CeedOperatorLinearAssemble*` function is called.
10519fd66db6SSebastian Grimberg   When `reuse_assembly_data = true`, the CeedQFunction associated with this CeedOperator is reused between calls to
10529fd66db6SSebastian Grimberg `CeedOperatorSetQFunctionAssemblyDataUpdated`.
10538b919e6bSJeremy L Thompson 
1054beecbf24SJeremy L Thompson   @param[in] op                  CeedOperator
1055beecbf24SJeremy L Thompson   @param[in] reuse_assembly_data Boolean flag setting assembly data reuse
10568b919e6bSJeremy L Thompson 
10578b919e6bSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
10588b919e6bSJeremy L Thompson 
10598b919e6bSJeremy L Thompson   @ref Advanced
10608b919e6bSJeremy L Thompson **/
10612b730f8bSJeremy L Thompson int CeedOperatorSetQFunctionAssemblyReuse(CeedOperator op, bool reuse_assembly_data) {
10628b919e6bSJeremy L Thompson   bool is_composite;
10638b919e6bSJeremy L Thompson 
10642b730f8bSJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
10658b919e6bSJeremy L Thompson   if (is_composite) {
10668b919e6bSJeremy L Thompson     for (CeedInt i = 0; i < op->num_suboperators; i++) {
10672b730f8bSJeremy L Thompson       CeedCall(CeedOperatorSetQFunctionAssemblyReuse(op->sub_operators[i], reuse_assembly_data));
10688b919e6bSJeremy L Thompson     }
10698b919e6bSJeremy L Thompson   } else {
10702b730f8bSJeremy L Thompson     CeedCall(CeedQFunctionAssemblyDataSetReuse(op->qf_assembled, reuse_assembly_data));
1071beecbf24SJeremy L Thompson   }
1072beecbf24SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1073beecbf24SJeremy L Thompson }
1074beecbf24SJeremy L Thompson 
1075beecbf24SJeremy L Thompson /**
1076beecbf24SJeremy L Thompson   @brief Mark CeedQFunction data as updated and the CeedQFunction as requiring re-assembly.
1077beecbf24SJeremy L Thompson 
1078beecbf24SJeremy L Thompson   @param[in] op                CeedOperator
10796e15d496SJeremy L Thompson   @param[in] needs_data_update Boolean flag setting assembly data reuse
1080beecbf24SJeremy L Thompson 
1081beecbf24SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1082beecbf24SJeremy L Thompson 
1083beecbf24SJeremy L Thompson   @ref Advanced
1084beecbf24SJeremy L Thompson **/
10852b730f8bSJeremy L Thompson int CeedOperatorSetQFunctionAssemblyDataUpdateNeeded(CeedOperator op, bool needs_data_update) {
1086beecbf24SJeremy L Thompson   bool is_composite;
1087beecbf24SJeremy L Thompson 
10882b730f8bSJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
1089beecbf24SJeremy L Thompson   if (is_composite) {
1090beecbf24SJeremy L Thompson     for (CeedInt i = 0; i < op->num_suboperators; i++) {
10912b730f8bSJeremy L Thompson       CeedCall(CeedOperatorSetQFunctionAssemblyDataUpdateNeeded(op->sub_operators[i], needs_data_update));
1092beecbf24SJeremy L Thompson     }
1093beecbf24SJeremy L Thompson   } else {
10942b730f8bSJeremy L Thompson     CeedCall(CeedQFunctionAssemblyDataSetUpdateNeeded(op->qf_assembled, needs_data_update));
10958b919e6bSJeremy L Thompson   }
10968b919e6bSJeremy L Thompson   return CEED_ERROR_SUCCESS;
10978b919e6bSJeremy L Thompson }
10988b919e6bSJeremy L Thompson 
10998b919e6bSJeremy L Thompson /**
1100ea6b5821SJeremy L Thompson   @brief Set name of CeedOperator for CeedOperatorView output
1101ea6b5821SJeremy L Thompson 
1102ea61e9acSJeremy L Thompson   @param[in,out] op   CeedOperator
1103ea61e9acSJeremy L Thompson   @param[in]     name Name to set, or NULL to remove previously set name
1104ea6b5821SJeremy L Thompson 
1105ea6b5821SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1106ea6b5821SJeremy L Thompson 
1107ea6b5821SJeremy L Thompson   @ref User
1108ea6b5821SJeremy L Thompson **/
1109ea6b5821SJeremy L Thompson int CeedOperatorSetName(CeedOperator op, const char *name) {
1110ea6b5821SJeremy L Thompson   char  *name_copy;
1111ea6b5821SJeremy L Thompson   size_t name_len = name ? strlen(name) : 0;
1112ea6b5821SJeremy L Thompson 
11132b730f8bSJeremy L Thompson   CeedCall(CeedFree(&op->name));
1114ea6b5821SJeremy L Thompson   if (name_len > 0) {
11152b730f8bSJeremy L Thompson     CeedCall(CeedCalloc(name_len + 1, &name_copy));
1116ea6b5821SJeremy L Thompson     memcpy(name_copy, name, name_len);
1117ea6b5821SJeremy L Thompson     op->name = name_copy;
1118ea6b5821SJeremy L Thompson   }
1119ea6b5821SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1120ea6b5821SJeremy L Thompson }
1121ea6b5821SJeremy L Thompson 
1122ea6b5821SJeremy L Thompson /**
11237a982d89SJeremy L. Thompson   @brief View a CeedOperator
11247a982d89SJeremy L. Thompson 
11257a982d89SJeremy L. Thompson   @param[in] op     CeedOperator to view
11267a982d89SJeremy L. Thompson   @param[in] stream Stream to write; typically stdout/stderr or a file
11277a982d89SJeremy L. Thompson 
11287a982d89SJeremy L. Thompson   @return Error code: 0 - success, otherwise - failure
11297a982d89SJeremy L. Thompson 
11307a982d89SJeremy L. Thompson   @ref User
11317a982d89SJeremy L. Thompson **/
11327a982d89SJeremy L. Thompson int CeedOperatorView(CeedOperator op, FILE *stream) {
1133ea6b5821SJeremy L Thompson   bool has_name = op->name;
11347a982d89SJeremy L. Thompson 
1135f04ea552SJeremy L Thompson   if (op->is_composite) {
11362b730f8bSJeremy L Thompson     fprintf(stream, "Composite CeedOperator%s%s\n", has_name ? " - " : "", has_name ? op->name : "");
11377a982d89SJeremy L. Thompson 
1138d1d35e2fSjeremylt     for (CeedInt i = 0; i < op->num_suboperators; i++) {
1139ea6b5821SJeremy L Thompson       has_name = op->sub_operators[i]->name;
11402b730f8bSJeremy L Thompson       fprintf(stream, "  SubOperator %" CeedInt_FMT "%s%s:\n", i, has_name ? " - " : "", has_name ? op->sub_operators[i]->name : "");
11412b730f8bSJeremy L Thompson       CeedCall(CeedOperatorSingleView(op->sub_operators[i], 1, stream));
11427a982d89SJeremy L. Thompson     }
11437a982d89SJeremy L. Thompson   } else {
11442b730f8bSJeremy L Thompson     fprintf(stream, "CeedOperator%s%s\n", has_name ? " - " : "", has_name ? op->name : "");
11452b730f8bSJeremy L Thompson     CeedCall(CeedOperatorSingleView(op, 0, stream));
11467a982d89SJeremy L. Thompson   }
1147e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
11487a982d89SJeremy L. Thompson }
11493bd813ffSjeremylt 
11503bd813ffSjeremylt /**
1151b7c9bbdaSJeremy L Thompson   @brief Get the Ceed associated with a CeedOperator
1152b7c9bbdaSJeremy L Thompson 
1153ea61e9acSJeremy L Thompson   @param[in]  op   CeedOperator
1154b7c9bbdaSJeremy L Thompson   @param[out] ceed Variable to store Ceed
1155b7c9bbdaSJeremy L Thompson 
1156b7c9bbdaSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1157b7c9bbdaSJeremy L Thompson 
1158b7c9bbdaSJeremy L Thompson   @ref Advanced
1159b7c9bbdaSJeremy L Thompson **/
1160b7c9bbdaSJeremy L Thompson int CeedOperatorGetCeed(CeedOperator op, Ceed *ceed) {
1161b7c9bbdaSJeremy L Thompson   *ceed = op->ceed;
1162b7c9bbdaSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1163b7c9bbdaSJeremy L Thompson }
1164b7c9bbdaSJeremy L Thompson 
1165b7c9bbdaSJeremy L Thompson /**
1166b7c9bbdaSJeremy L Thompson   @brief Get the number of elements associated with a CeedOperator
1167b7c9bbdaSJeremy L Thompson 
1168ea61e9acSJeremy L Thompson   @param[in]  op       CeedOperator
1169b7c9bbdaSJeremy L Thompson   @param[out] num_elem Variable to store number of elements
1170b7c9bbdaSJeremy L Thompson 
1171b7c9bbdaSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1172b7c9bbdaSJeremy L Thompson 
1173b7c9bbdaSJeremy L Thompson   @ref Advanced
1174b7c9bbdaSJeremy L Thompson **/
1175b7c9bbdaSJeremy L Thompson int CeedOperatorGetNumElements(CeedOperator op, CeedInt *num_elem) {
11766574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_MINOR, "Not defined for composite operator");
1177b7c9bbdaSJeremy L Thompson   *num_elem = op->num_elem;
1178b7c9bbdaSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1179b7c9bbdaSJeremy L Thompson }
1180b7c9bbdaSJeremy L Thompson 
1181b7c9bbdaSJeremy L Thompson /**
1182b7c9bbdaSJeremy L Thompson   @brief Get the number of quadrature points associated with a CeedOperator
1183b7c9bbdaSJeremy L Thompson 
1184ea61e9acSJeremy L Thompson   @param[in]  op       CeedOperator
1185b7c9bbdaSJeremy L Thompson   @param[out] num_qpts Variable to store vector number of quadrature points
1186b7c9bbdaSJeremy L Thompson 
1187b7c9bbdaSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1188b7c9bbdaSJeremy L Thompson 
1189b7c9bbdaSJeremy L Thompson   @ref Advanced
1190b7c9bbdaSJeremy L Thompson **/
1191b7c9bbdaSJeremy L Thompson int CeedOperatorGetNumQuadraturePoints(CeedOperator op, CeedInt *num_qpts) {
11926574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_MINOR, "Not defined for composite operator");
1193b7c9bbdaSJeremy L Thompson   *num_qpts = op->num_qpts;
1194b7c9bbdaSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1195b7c9bbdaSJeremy L Thompson }
1196b7c9bbdaSJeremy L Thompson 
1197b7c9bbdaSJeremy L Thompson /**
11986e15d496SJeremy L Thompson   @brief Estimate number of FLOPs required to apply CeedOperator on the active vector
11996e15d496SJeremy L Thompson 
1200ea61e9acSJeremy L Thompson   @param[in]  op    CeedOperator to estimate FLOPs for
1201ea61e9acSJeremy L Thompson   @param[out] flops Address of variable to hold FLOPs estimate
12026e15d496SJeremy L Thompson 
12036e15d496SJeremy L Thompson   @ref Backend
12046e15d496SJeremy L Thompson **/
12059d36ca50SJeremy L Thompson int CeedOperatorGetFlopsEstimate(CeedOperator op, CeedSize *flops) {
12066e15d496SJeremy L Thompson   bool is_composite;
12071c66c397SJeremy L Thompson 
12082b730f8bSJeremy L Thompson   CeedCall(CeedOperatorCheckReady(op));
12096e15d496SJeremy L Thompson 
12106e15d496SJeremy L Thompson   *flops = 0;
12112b730f8bSJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
12126e15d496SJeremy L Thompson   if (is_composite) {
12136e15d496SJeremy L Thompson     CeedInt num_suboperators;
12141c66c397SJeremy L Thompson 
1215c6ebc35dSJeremy L Thompson     CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators));
12166e15d496SJeremy L Thompson     CeedOperator *sub_operators;
1217c6ebc35dSJeremy L Thompson     CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
12186e15d496SJeremy L Thompson 
12196e15d496SJeremy L Thompson     // FLOPs for each suboperator
12206e15d496SJeremy L Thompson     for (CeedInt i = 0; i < num_suboperators; i++) {
12219d36ca50SJeremy L Thompson       CeedSize suboperator_flops;
12221c66c397SJeremy L Thompson 
12232b730f8bSJeremy L Thompson       CeedCall(CeedOperatorGetFlopsEstimate(sub_operators[i], &suboperator_flops));
12246e15d496SJeremy L Thompson       *flops += suboperator_flops;
12256e15d496SJeremy L Thompson     }
12266e15d496SJeremy L Thompson   } else {
12271c66c397SJeremy L Thompson     CeedInt            num_input_fields, num_output_fields, num_elem = 0;
12286e15d496SJeremy L Thompson     CeedOperatorField *input_fields, *output_fields;
12291c66c397SJeremy L Thompson 
12302b730f8bSJeremy L Thompson     CeedCall(CeedOperatorGetFields(op, &num_input_fields, &input_fields, &num_output_fields, &output_fields));
12312b730f8bSJeremy L Thompson     CeedCall(CeedOperatorGetNumElements(op, &num_elem));
12324385fb7fSSebastian Grimberg 
12336e15d496SJeremy L Thompson     // Input FLOPs
12346e15d496SJeremy L Thompson     for (CeedInt i = 0; i < num_input_fields; i++) {
12356e15d496SJeremy L Thompson       if (input_fields[i]->vec == CEED_VECTOR_ACTIVE) {
1236edb2538eSJeremy L Thompson         CeedSize rstr_flops, basis_flops;
12376e15d496SJeremy L Thompson 
1238edb2538eSJeremy L Thompson         CeedCall(CeedElemRestrictionGetFlopsEstimate(input_fields[i]->elem_rstr, CEED_NOTRANSPOSE, &rstr_flops));
1239edb2538eSJeremy L Thompson         *flops += rstr_flops;
12402b730f8bSJeremy L Thompson         CeedCall(CeedBasisGetFlopsEstimate(input_fields[i]->basis, CEED_NOTRANSPOSE, op->qf->input_fields[i]->eval_mode, &basis_flops));
12416e15d496SJeremy L Thompson         *flops += basis_flops * num_elem;
12426e15d496SJeremy L Thompson       }
12436e15d496SJeremy L Thompson     }
12446e15d496SJeremy L Thompson     // QF FLOPs
12451c66c397SJeremy L Thompson     {
12469d36ca50SJeremy L Thompson       CeedInt  num_qpts;
12479d36ca50SJeremy L Thompson       CeedSize qf_flops;
12481c66c397SJeremy L Thompson 
12492b730f8bSJeremy L Thompson       CeedCall(CeedOperatorGetNumQuadraturePoints(op, &num_qpts));
12502b730f8bSJeremy L Thompson       CeedCall(CeedQFunctionGetFlopsEstimate(op->qf, &qf_flops));
12516e15d496SJeremy L Thompson       *flops += num_elem * num_qpts * qf_flops;
12521c66c397SJeremy L Thompson     }
12531c66c397SJeremy L Thompson 
12546e15d496SJeremy L Thompson     // Output FLOPs
12556e15d496SJeremy L Thompson     for (CeedInt i = 0; i < num_output_fields; i++) {
12566e15d496SJeremy L Thompson       if (output_fields[i]->vec == CEED_VECTOR_ACTIVE) {
1257edb2538eSJeremy L Thompson         CeedSize rstr_flops, basis_flops;
12586e15d496SJeremy L Thompson 
1259edb2538eSJeremy L Thompson         CeedCall(CeedElemRestrictionGetFlopsEstimate(output_fields[i]->elem_rstr, CEED_TRANSPOSE, &rstr_flops));
1260edb2538eSJeremy L Thompson         *flops += rstr_flops;
12612b730f8bSJeremy L Thompson         CeedCall(CeedBasisGetFlopsEstimate(output_fields[i]->basis, CEED_TRANSPOSE, op->qf->output_fields[i]->eval_mode, &basis_flops));
12626e15d496SJeremy L Thompson         *flops += basis_flops * num_elem;
12636e15d496SJeremy L Thompson       }
12646e15d496SJeremy L Thompson     }
12656e15d496SJeremy L Thompson   }
12666e15d496SJeremy L Thompson   return CEED_ERROR_SUCCESS;
12676e15d496SJeremy L Thompson }
12686e15d496SJeremy L Thompson 
12696e15d496SJeremy L Thompson /**
12700126412dSJeremy L Thompson   @brief Get CeedQFunction global context for a CeedOperator.
12719fd66db6SSebastian Grimberg 
1272512bb800SJeremy L Thompson   The caller is responsible for destroying `ctx` returned from this function via `CeedQFunctionContextDestroy()`.
1273512bb800SJeremy L Thompson 
12749fd66db6SSebastian Grimberg   Note: If the value of `ctx` passed into this function is non-NULL, then it is assumed that `ctx` is a pointer to a CeedQFunctionContext.
12759fd66db6SSebastian Grimberg         This CeedQFunctionContext will be destroyed if `ctx` is the only reference to this CeedQFunctionContext.
12760126412dSJeremy L Thompson 
1277859c15bbSJames Wright   @param[in]  op  CeedOperator
12780126412dSJeremy L Thompson   @param[out] ctx Variable to store CeedQFunctionContext
12790126412dSJeremy L Thompson 
12800126412dSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
12810126412dSJeremy L Thompson 
1282859c15bbSJames Wright   @ref Advanced
12830126412dSJeremy L Thompson **/
12840126412dSJeremy L Thompson int CeedOperatorGetContext(CeedOperator op, CeedQFunctionContext *ctx) {
12856574a04fSJeremy L Thompson   CeedCheck(!op->is_composite, op->ceed, CEED_ERROR_INCOMPATIBLE, "Cannot retrieve QFunctionContext for composite operator");
12860126412dSJeremy L Thompson   if (op->qf->ctx) CeedCall(CeedQFunctionContextReferenceCopy(op->qf->ctx, ctx));
12870126412dSJeremy L Thompson   else *ctx = NULL;
12880126412dSJeremy L Thompson   return CEED_ERROR_SUCCESS;
12890126412dSJeremy L Thompson }
12900126412dSJeremy L Thompson 
12910126412dSJeremy L Thompson /**
1292ea61e9acSJeremy L Thompson   @brief Get label for a registered QFunctionContext field, or `NULL` if no field has been registered with this `field_name`.
12933668ca4bSJeremy L Thompson 
1294859c15bbSJames Wright   Fields are registered via `CeedQFunctionContextRegister*()` functions (eg. `CeedQFunctionContextRegisterDouble()`).
1295859c15bbSJames Wright 
12963668ca4bSJeremy L Thompson   @param[in]  op          CeedOperator
12973668ca4bSJeremy L Thompson   @param[in]  field_name  Name of field to retrieve label
12983668ca4bSJeremy L Thompson   @param[out] field_label Variable to field label
12993668ca4bSJeremy L Thompson 
13003668ca4bSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
13013668ca4bSJeremy L Thompson 
13023668ca4bSJeremy L Thompson   @ref User
13033668ca4bSJeremy L Thompson **/
130417b0d5c6SJeremy L Thompson int CeedOperatorGetContextFieldLabel(CeedOperator op, const char *field_name, CeedContextFieldLabel *field_label) {
13051c66c397SJeremy L Thompson   bool is_composite, field_found = false;
13061c66c397SJeremy L Thompson 
13072b730f8bSJeremy L Thompson   CeedCall(CeedOperatorIsComposite(op, &is_composite));
13082b730f8bSJeremy L Thompson 
13093668ca4bSJeremy L Thompson   if (is_composite) {
1310a98a090bSJeremy L Thompson     // Composite operator
1311a98a090bSJeremy L Thompson     // -- Check if composite label already created
13123668ca4bSJeremy L Thompson     for (CeedInt i = 0; i < op->num_context_labels; i++) {
13133668ca4bSJeremy L Thompson       if (!strcmp(op->context_labels[i]->name, field_name)) {
13143668ca4bSJeremy L Thompson         *field_label = op->context_labels[i];
13153668ca4bSJeremy L Thompson         return CEED_ERROR_SUCCESS;
13163668ca4bSJeremy L Thompson       }
13173668ca4bSJeremy L Thompson     }
13183668ca4bSJeremy L Thompson 
1319a98a090bSJeremy L Thompson     // -- Create composite label if needed
13203668ca4bSJeremy L Thompson     CeedInt               num_sub;
13213668ca4bSJeremy L Thompson     CeedOperator         *sub_operators;
13223668ca4bSJeremy L Thompson     CeedContextFieldLabel new_field_label;
13233668ca4bSJeremy L Thompson 
13242b730f8bSJeremy L Thompson     CeedCall(CeedCalloc(1, &new_field_label));
1325c6ebc35dSJeremy L Thompson     CeedCall(CeedCompositeOperatorGetNumSub(op, &num_sub));
1326c6ebc35dSJeremy L Thompson     CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
13272b730f8bSJeremy L Thompson     CeedCall(CeedCalloc(num_sub, &new_field_label->sub_labels));
13283668ca4bSJeremy L Thompson     new_field_label->num_sub_labels = num_sub;
13293668ca4bSJeremy L Thompson 
13303668ca4bSJeremy L Thompson     for (CeedInt i = 0; i < num_sub; i++) {
13313668ca4bSJeremy L Thompson       if (sub_operators[i]->qf->ctx) {
13323668ca4bSJeremy L Thompson         CeedContextFieldLabel new_field_label_i;
13331c66c397SJeremy L Thompson 
13342b730f8bSJeremy L Thompson         CeedCall(CeedQFunctionContextGetFieldLabel(sub_operators[i]->qf->ctx, field_name, &new_field_label_i));
13353668ca4bSJeremy L Thompson         if (new_field_label_i) {
1336a98a090bSJeremy L Thompson           field_found                    = true;
13373668ca4bSJeremy L Thompson           new_field_label->sub_labels[i] = new_field_label_i;
13383668ca4bSJeremy L Thompson           new_field_label->name          = new_field_label_i->name;
13393668ca4bSJeremy L Thompson           new_field_label->description   = new_field_label_i->description;
13402b730f8bSJeremy L Thompson           if (new_field_label->type && new_field_label->type != new_field_label_i->type) {
13417bfe0f0eSJeremy L Thompson             // LCOV_EXCL_START
13422b730f8bSJeremy L Thompson             CeedCall(CeedFree(&new_field_label));
13432b730f8bSJeremy L Thompson             return CeedError(op->ceed, CEED_ERROR_INCOMPATIBLE, "Incompatible field types on sub-operator contexts. %s != %s",
13442b730f8bSJeremy L Thompson                              CeedContextFieldTypes[new_field_label->type], CeedContextFieldTypes[new_field_label_i->type]);
13457bfe0f0eSJeremy L Thompson             // LCOV_EXCL_STOP
13467bfe0f0eSJeremy L Thompson           } else {
13477bfe0f0eSJeremy L Thompson             new_field_label->type = new_field_label_i->type;
13487bfe0f0eSJeremy L Thompson           }
13492b730f8bSJeremy L Thompson           if (new_field_label->num_values != 0 && new_field_label->num_values != new_field_label_i->num_values) {
13507bfe0f0eSJeremy L Thompson             // LCOV_EXCL_START
13512b730f8bSJeremy L Thompson             CeedCall(CeedFree(&new_field_label));
13522b730f8bSJeremy L Thompson             return CeedError(op->ceed, CEED_ERROR_INCOMPATIBLE, "Incompatible field number of values on sub-operator contexts. %ld != %ld",
13537bfe0f0eSJeremy L Thompson                              new_field_label->num_values, new_field_label_i->num_values);
13547bfe0f0eSJeremy L Thompson             // LCOV_EXCL_STOP
13557bfe0f0eSJeremy L Thompson           } else {
13567bfe0f0eSJeremy L Thompson             new_field_label->num_values = new_field_label_i->num_values;
13577bfe0f0eSJeremy L Thompson           }
13583668ca4bSJeremy L Thompson         }
13593668ca4bSJeremy L Thompson       }
13603668ca4bSJeremy L Thompson     }
1361a98a090bSJeremy L Thompson     // -- Cleanup if field was found
1362a98a090bSJeremy L Thompson     if (field_found) {
1363a98a090bSJeremy L Thompson       *field_label = new_field_label;
1364a98a090bSJeremy L Thompson     } else {
13653668ca4bSJeremy L Thompson       // LCOV_EXCL_START
13662b730f8bSJeremy L Thompson       CeedCall(CeedFree(&new_field_label->sub_labels));
13672b730f8bSJeremy L Thompson       CeedCall(CeedFree(&new_field_label));
13683668ca4bSJeremy L Thompson       *field_label = NULL;
13693668ca4bSJeremy L Thompson       // LCOV_EXCL_STOP
13705ac9af79SJeremy L Thompson     }
13715ac9af79SJeremy L Thompson   } else {
1372a98a090bSJeremy L Thompson     // Single, non-composite operator
1373a98a090bSJeremy L Thompson     if (op->qf->ctx) {
13745ac9af79SJeremy L Thompson       CeedCall(CeedQFunctionContextGetFieldLabel(op->qf->ctx, field_name, field_label));
1375a98a090bSJeremy L Thompson     } else {
1376a98a090bSJeremy L Thompson       *field_label = NULL;
1377a98a090bSJeremy L Thompson     }
13785ac9af79SJeremy L Thompson   }
13795ac9af79SJeremy L Thompson 
13805ac9af79SJeremy L Thompson   // Set label in operator
13815ac9af79SJeremy L Thompson   if (*field_label) {
13825ac9af79SJeremy L Thompson     (*field_label)->from_op = true;
13835ac9af79SJeremy L Thompson 
13843668ca4bSJeremy L Thompson     // Move new composite label to operator
13853668ca4bSJeremy L Thompson     if (op->num_context_labels == 0) {
13862b730f8bSJeremy L Thompson       CeedCall(CeedCalloc(1, &op->context_labels));
13873668ca4bSJeremy L Thompson       op->max_context_labels = 1;
13883668ca4bSJeremy L Thompson     } else if (op->num_context_labels == op->max_context_labels) {
13892b730f8bSJeremy L Thompson       CeedCall(CeedRealloc(2 * op->num_context_labels, &op->context_labels));
13903668ca4bSJeremy L Thompson       op->max_context_labels *= 2;
13913668ca4bSJeremy L Thompson     }
13925ac9af79SJeremy L Thompson     op->context_labels[op->num_context_labels] = *field_label;
13933668ca4bSJeremy L Thompson     op->num_context_labels++;
13943668ca4bSJeremy L Thompson   }
13953668ca4bSJeremy L Thompson   return CEED_ERROR_SUCCESS;
13963668ca4bSJeremy L Thompson }
13973668ca4bSJeremy L Thompson 
13983668ca4bSJeremy L Thompson /**
13992788fa27SJeremy L Thompson   @brief Set QFunctionContext field holding double precision values.
14004385fb7fSSebastian Grimberg 
14012788fa27SJeremy L Thompson   For composite operators, the values are set in all sub-operator QFunctionContexts that have a matching `field_name`.
1402d8dd9a91SJeremy L Thompson 
1403ea61e9acSJeremy L Thompson   @param[in,out] op          CeedOperator
14042788fa27SJeremy L Thompson   @param[in]     field_label Label of field to set
1405ea61e9acSJeremy L Thompson   @param[in]     values      Values to set
1406d8dd9a91SJeremy L Thompson 
1407d8dd9a91SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1408d8dd9a91SJeremy L Thompson 
1409d8dd9a91SJeremy L Thompson   @ref User
1410d8dd9a91SJeremy L Thompson **/
141117b0d5c6SJeremy L Thompson int CeedOperatorSetContextDouble(CeedOperator op, CeedContextFieldLabel field_label, double *values) {
14122b730f8bSJeremy L Thompson   return CeedOperatorContextSetGeneric(op, field_label, CEED_CONTEXT_FIELD_DOUBLE, values);
1413d8dd9a91SJeremy L Thompson }
1414d8dd9a91SJeremy L Thompson 
1415d8dd9a91SJeremy L Thompson /**
14162788fa27SJeremy L Thompson   @brief Get QFunctionContext field holding double precision values, read-only.
14174385fb7fSSebastian Grimberg 
14182788fa27SJeremy L Thompson   For composite operators, the values correspond to the first sub-operator QFunctionContexts that has a matching `field_name`.
14192788fa27SJeremy L Thompson 
14202788fa27SJeremy L Thompson   @param[in]  op          CeedOperator
14212788fa27SJeremy L Thompson   @param[in]  field_label Label of field to get
14222788fa27SJeremy L Thompson   @param[out] num_values  Number of values in the field label
14232788fa27SJeremy L Thompson   @param[out] values      Pointer to context values
14242788fa27SJeremy L Thompson 
14252788fa27SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
14262788fa27SJeremy L Thompson 
14272788fa27SJeremy L Thompson   @ref User
14282788fa27SJeremy L Thompson **/
142917b0d5c6SJeremy L Thompson int CeedOperatorGetContextDoubleRead(CeedOperator op, CeedContextFieldLabel field_label, size_t *num_values, const double **values) {
14302788fa27SJeremy L Thompson   return CeedOperatorContextGetGenericRead(op, field_label, CEED_CONTEXT_FIELD_DOUBLE, num_values, values);
14312788fa27SJeremy L Thompson }
14322788fa27SJeremy L Thompson 
14332788fa27SJeremy L Thompson /**
14342788fa27SJeremy L Thompson   @brief Restore QFunctionContext field holding double precision values, read-only.
14352788fa27SJeremy L Thompson 
14362788fa27SJeremy L Thompson   @param[in]  op          CeedOperator
14372788fa27SJeremy L Thompson   @param[in]  field_label Label of field to restore
14382788fa27SJeremy L Thompson   @param[out] values      Pointer to context values
14392788fa27SJeremy L Thompson 
14402788fa27SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
14412788fa27SJeremy L Thompson 
14422788fa27SJeremy L Thompson   @ref User
14432788fa27SJeremy L Thompson **/
144417b0d5c6SJeremy L Thompson int CeedOperatorRestoreContextDoubleRead(CeedOperator op, CeedContextFieldLabel field_label, const double **values) {
14452788fa27SJeremy L Thompson   return CeedOperatorContextRestoreGenericRead(op, field_label, CEED_CONTEXT_FIELD_DOUBLE, values);
14462788fa27SJeremy L Thompson }
14472788fa27SJeremy L Thompson 
14482788fa27SJeremy L Thompson /**
14492788fa27SJeremy L Thompson   @brief Set QFunctionContext field holding int32 values.
14504385fb7fSSebastian Grimberg 
14512788fa27SJeremy L Thompson   For composite operators, the values are set in all sub-operator QFunctionContexts that have a matching `field_name`.
1452d8dd9a91SJeremy L Thompson 
1453ea61e9acSJeremy L Thompson   @param[in,out] op          CeedOperator
1454ea61e9acSJeremy L Thompson   @param[in]     field_label Label of field to set
1455ea61e9acSJeremy L Thompson   @param[in]     values      Values to set
1456d8dd9a91SJeremy L Thompson 
1457d8dd9a91SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1458d8dd9a91SJeremy L Thompson 
1459d8dd9a91SJeremy L Thompson   @ref User
1460d8dd9a91SJeremy L Thompson **/
146117b0d5c6SJeremy L Thompson int CeedOperatorSetContextInt32(CeedOperator op, CeedContextFieldLabel field_label, int *values) {
14622b730f8bSJeremy L Thompson   return CeedOperatorContextSetGeneric(op, field_label, CEED_CONTEXT_FIELD_INT32, values);
1463d8dd9a91SJeremy L Thompson }
1464d8dd9a91SJeremy L Thompson 
1465d8dd9a91SJeremy L Thompson /**
14662788fa27SJeremy L Thompson   @brief Get QFunctionContext field holding int32 values, read-only.
14674385fb7fSSebastian Grimberg 
14682788fa27SJeremy L Thompson   For composite operators, the values correspond to the first sub-operator QFunctionContexts that has a matching `field_name`.
14692788fa27SJeremy L Thompson 
14702788fa27SJeremy L Thompson   @param[in]  op          CeedOperator
14712788fa27SJeremy L Thompson   @param[in]  field_label Label of field to get
1472c5d0f995SJed Brown   @param[out] num_values  Number of int32 values in `values`
14732788fa27SJeremy L Thompson   @param[out] values      Pointer to context values
14742788fa27SJeremy L Thompson 
14752788fa27SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
14762788fa27SJeremy L Thompson 
14772788fa27SJeremy L Thompson   @ref User
14782788fa27SJeremy L Thompson **/
147917b0d5c6SJeremy L Thompson int CeedOperatorGetContextInt32Read(CeedOperator op, CeedContextFieldLabel field_label, size_t *num_values, const int **values) {
14802788fa27SJeremy L Thompson   return CeedOperatorContextGetGenericRead(op, field_label, CEED_CONTEXT_FIELD_INT32, num_values, values);
14812788fa27SJeremy L Thompson }
14822788fa27SJeremy L Thompson 
14832788fa27SJeremy L Thompson /**
14842788fa27SJeremy L Thompson   @brief Restore QFunctionContext field holding int32 values, read-only.
14852788fa27SJeremy L Thompson 
14862788fa27SJeremy L Thompson   @param[in]  op          CeedOperator
14872788fa27SJeremy L Thompson   @param[in]  field_label Label of field to get
14882788fa27SJeremy L Thompson   @param[out] values      Pointer to context values
14892788fa27SJeremy L Thompson 
14902788fa27SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
14912788fa27SJeremy L Thompson 
14922788fa27SJeremy L Thompson   @ref User
14932788fa27SJeremy L Thompson **/
149417b0d5c6SJeremy L Thompson int CeedOperatorRestoreContextInt32Read(CeedOperator op, CeedContextFieldLabel field_label, const int **values) {
14952788fa27SJeremy L Thompson   return CeedOperatorContextRestoreGenericRead(op, field_label, CEED_CONTEXT_FIELD_INT32, values);
14962788fa27SJeremy L Thompson }
14972788fa27SJeremy L Thompson 
14982788fa27SJeremy L Thompson /**
14993bd813ffSjeremylt   @brief Apply CeedOperator to a vector
1500d7b241e6Sjeremylt 
1501ea61e9acSJeremy L Thompson   This computes the action of the operator on the specified (active) input, yielding its (active) output.
1502ea61e9acSJeremy L Thompson   All inputs and outputs must be specified using CeedOperatorSetField().
1503d7b241e6Sjeremylt 
1504ea61e9acSJeremy L Thompson   Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable.
1505f04ea552SJeremy L Thompson 
1506ea61e9acSJeremy L Thompson   @param[in]  op      CeedOperator to apply
1507ea61e9acSJeremy L Thompson   @param[in]  in      CeedVector containing input state or @ref CEED_VECTOR_NONE if there are no active inputs
15085ac9af79SJeremy L Thompson   @param[out] out     CeedVector to store result of applying operator (must be distinct from @a in) or @ref CEED_VECTOR_NONE if there are no
15095ac9af79SJeremy L Thompson active outputs
1510ea61e9acSJeremy L Thompson   @param[in]  request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE
1511b11c1e72Sjeremylt 
1512b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
1513dfdf5a53Sjeremylt 
15147a982d89SJeremy L. Thompson   @ref User
1515b11c1e72Sjeremylt **/
15162b730f8bSJeremy L Thompson int CeedOperatorApply(CeedOperator op, CeedVector in, CeedVector out, CeedRequest *request) {
15172b730f8bSJeremy L Thompson   CeedCall(CeedOperatorCheckReady(op));
1518d7b241e6Sjeremylt 
15193ca2b39bSJeremy L Thompson   if (op->is_composite) {
1520250756a7Sjeremylt     // Composite Operator
1521250756a7Sjeremylt     if (op->ApplyComposite) {
15222b730f8bSJeremy L Thompson       CeedCall(op->ApplyComposite(op, in, out, request));
1523250756a7Sjeremylt     } else {
1524d1d35e2fSjeremylt       CeedInt       num_suboperators;
1525d1d35e2fSjeremylt       CeedOperator *sub_operators;
15261c66c397SJeremy L Thompson 
15271c66c397SJeremy L Thompson       CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators));
1528c6ebc35dSJeremy L Thompson       CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
1529250756a7Sjeremylt 
1530250756a7Sjeremylt       // Zero all output vectors
15313ca2b39bSJeremy L Thompson       if (out != CEED_VECTOR_NONE) CeedCall(CeedVectorSetValue(out, 0.0));
1532d1d35e2fSjeremylt       for (CeedInt i = 0; i < num_suboperators; i++) {
1533d1d35e2fSjeremylt         for (CeedInt j = 0; j < sub_operators[i]->qf->num_output_fields; j++) {
1534d1d35e2fSjeremylt           CeedVector vec = sub_operators[i]->output_fields[j]->vec;
15351c66c397SJeremy L Thompson 
1536250756a7Sjeremylt           if (vec != CEED_VECTOR_ACTIVE && vec != CEED_VECTOR_NONE) {
15372b730f8bSJeremy L Thompson             CeedCall(CeedVectorSetValue(vec, 0.0));
1538250756a7Sjeremylt           }
1539250756a7Sjeremylt         }
1540250756a7Sjeremylt       }
1541250756a7Sjeremylt       // Apply
1542f754c177SSebastian Grimberg       for (CeedInt i = 0; i < num_suboperators; i++) {
1543f754c177SSebastian Grimberg         CeedCall(CeedOperatorApplyAdd(sub_operators[i], in, out, request));
1544cae8b89aSjeremylt       }
1545cae8b89aSjeremylt     }
15463ca2b39bSJeremy L Thompson   } else {
15473ca2b39bSJeremy L Thompson     // Standard Operator
15483ca2b39bSJeremy L Thompson     if (op->Apply) {
15493ca2b39bSJeremy L Thompson       CeedCall(op->Apply(op, in, out, request));
15503ca2b39bSJeremy L Thompson     } else {
15513ca2b39bSJeremy L Thompson       // Zero all output vectors
15523ca2b39bSJeremy L Thompson       CeedQFunction qf = op->qf;
15531c66c397SJeremy L Thompson 
15543ca2b39bSJeremy L Thompson       for (CeedInt i = 0; i < qf->num_output_fields; i++) {
15553ca2b39bSJeremy L Thompson         CeedVector vec = op->output_fields[i]->vec;
15561c66c397SJeremy L Thompson 
15573ca2b39bSJeremy L Thompson         if (vec == CEED_VECTOR_ACTIVE) vec = out;
15583ca2b39bSJeremy L Thompson         if (vec != CEED_VECTOR_NONE) CeedCall(CeedVectorSetValue(vec, 0.0));
15593ca2b39bSJeremy L Thompson       }
15603ca2b39bSJeremy L Thompson       // Apply
15613ca2b39bSJeremy L Thompson       if (op->num_elem) CeedCall(op->ApplyAdd(op, in, out, request));
15623ca2b39bSJeremy L Thompson     }
1563250756a7Sjeremylt   }
1564e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1565cae8b89aSjeremylt }
1566cae8b89aSjeremylt 
1567cae8b89aSjeremylt /**
1568cae8b89aSjeremylt   @brief Apply CeedOperator to a vector and add result to output vector
1569cae8b89aSjeremylt 
1570ea61e9acSJeremy L Thompson   This computes the action of the operator on the specified (active) input, yielding its (active) output.
1571ea61e9acSJeremy L Thompson   All inputs and outputs must be specified using CeedOperatorSetField().
1572cae8b89aSjeremylt 
1573ea61e9acSJeremy L Thompson   @param[in]  op      CeedOperator to apply
1574ea61e9acSJeremy L Thompson   @param[in]  in      CeedVector containing input state or NULL if there are no active inputs
1575ea61e9acSJeremy L Thompson   @param[out] out     CeedVector to sum in result of applying operator (must be distinct from @a in) or NULL if there are no active outputs
1576ea61e9acSJeremy L Thompson   @param[in]  request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE
1577cae8b89aSjeremylt 
1578cae8b89aSjeremylt   @return An error code: 0 - success, otherwise - failure
1579cae8b89aSjeremylt 
15807a982d89SJeremy L. Thompson   @ref User
1581cae8b89aSjeremylt **/
15822b730f8bSJeremy L Thompson int CeedOperatorApplyAdd(CeedOperator op, CeedVector in, CeedVector out, CeedRequest *request) {
15832b730f8bSJeremy L Thompson   CeedCall(CeedOperatorCheckReady(op));
1584cae8b89aSjeremylt 
15853ca2b39bSJeremy L Thompson   if (op->is_composite) {
1586250756a7Sjeremylt     // Composite Operator
1587250756a7Sjeremylt     if (op->ApplyAddComposite) {
15882b730f8bSJeremy L Thompson       CeedCall(op->ApplyAddComposite(op, in, out, request));
1589cae8b89aSjeremylt     } else {
1590d1d35e2fSjeremylt       CeedInt       num_suboperators;
1591d1d35e2fSjeremylt       CeedOperator *sub_operators;
1592250756a7Sjeremylt 
15931c66c397SJeremy L Thompson       CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators));
15941c66c397SJeremy L Thompson       CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators));
1595d1d35e2fSjeremylt       for (CeedInt i = 0; i < num_suboperators; i++) {
15962b730f8bSJeremy L Thompson         CeedCall(CeedOperatorApplyAdd(sub_operators[i], in, out, request));
15971d7d2407SJeremy L Thompson       }
1598250756a7Sjeremylt     }
15993ca2b39bSJeremy L Thompson   } else if (op->num_elem) {
16003ca2b39bSJeremy L Thompson     // Standard Operator
16013ca2b39bSJeremy L Thompson     CeedCall(op->ApplyAdd(op, in, out, request));
1602250756a7Sjeremylt   }
1603e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1604d7b241e6Sjeremylt }
1605d7b241e6Sjeremylt 
1606d7b241e6Sjeremylt /**
1607b11c1e72Sjeremylt   @brief Destroy a CeedOperator
1608d7b241e6Sjeremylt 
1609ea61e9acSJeremy L Thompson   @param[in,out] op CeedOperator to destroy
1610b11c1e72Sjeremylt 
1611b11c1e72Sjeremylt   @return An error code: 0 - success, otherwise - failure
1612dfdf5a53Sjeremylt 
16137a982d89SJeremy L. Thompson   @ref User
1614b11c1e72Sjeremylt **/
1615d7b241e6Sjeremylt int CeedOperatorDestroy(CeedOperator *op) {
1616ad6481ceSJeremy L Thompson   if (!*op || --(*op)->ref_count > 0) {
1617ad6481ceSJeremy L Thompson     *op = NULL;
1618ad6481ceSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1619ad6481ceSJeremy L Thompson   }
16202b730f8bSJeremy L Thompson   if ((*op)->Destroy) CeedCall((*op)->Destroy(*op));
16212b730f8bSJeremy L Thompson   CeedCall(CeedDestroy(&(*op)->ceed));
1622fe2413ffSjeremylt   // Free fields
16232b730f8bSJeremy L Thompson   for (CeedInt i = 0; i < (*op)->num_fields; i++) {
1624d1d35e2fSjeremylt     if ((*op)->input_fields[i]) {
1625437c7c90SJeremy L Thompson       if ((*op)->input_fields[i]->elem_rstr != CEED_ELEMRESTRICTION_NONE) {
1626437c7c90SJeremy L Thompson         CeedCall(CeedElemRestrictionDestroy(&(*op)->input_fields[i]->elem_rstr));
162715910d16Sjeremylt       }
1628356036faSJeremy L Thompson       if ((*op)->input_fields[i]->basis != CEED_BASIS_NONE) {
16292b730f8bSJeremy L Thompson         CeedCall(CeedBasisDestroy(&(*op)->input_fields[i]->basis));
163071352a93Sjeremylt       }
16312b730f8bSJeremy L Thompson       if ((*op)->input_fields[i]->vec != CEED_VECTOR_ACTIVE && (*op)->input_fields[i]->vec != CEED_VECTOR_NONE) {
16322b730f8bSJeremy L Thompson         CeedCall(CeedVectorDestroy(&(*op)->input_fields[i]->vec));
163371352a93Sjeremylt       }
16342b730f8bSJeremy L Thompson       CeedCall(CeedFree(&(*op)->input_fields[i]->field_name));
16352b730f8bSJeremy L Thompson       CeedCall(CeedFree(&(*op)->input_fields[i]));
1636fe2413ffSjeremylt     }
16372b730f8bSJeremy L Thompson   }
16382b730f8bSJeremy L Thompson   for (CeedInt i = 0; i < (*op)->num_fields; i++) {
1639d1d35e2fSjeremylt     if ((*op)->output_fields[i]) {
1640437c7c90SJeremy L Thompson       CeedCall(CeedElemRestrictionDestroy(&(*op)->output_fields[i]->elem_rstr));
1641356036faSJeremy L Thompson       if ((*op)->output_fields[i]->basis != CEED_BASIS_NONE) {
16422b730f8bSJeremy L Thompson         CeedCall(CeedBasisDestroy(&(*op)->output_fields[i]->basis));
164371352a93Sjeremylt       }
16442b730f8bSJeremy L Thompson       if ((*op)->output_fields[i]->vec != CEED_VECTOR_ACTIVE && (*op)->output_fields[i]->vec != CEED_VECTOR_NONE) {
16452b730f8bSJeremy L Thompson         CeedCall(CeedVectorDestroy(&(*op)->output_fields[i]->vec));
164671352a93Sjeremylt       }
16472b730f8bSJeremy L Thompson       CeedCall(CeedFree(&(*op)->output_fields[i]->field_name));
16482b730f8bSJeremy L Thompson       CeedCall(CeedFree(&(*op)->output_fields[i]));
16492b730f8bSJeremy L Thompson     }
1650fe2413ffSjeremylt   }
1651d1d35e2fSjeremylt   // Destroy sub_operators
16522b730f8bSJeremy L Thompson   for (CeedInt i = 0; i < (*op)->num_suboperators; i++) {
1653d1d35e2fSjeremylt     if ((*op)->sub_operators[i]) {
16542b730f8bSJeremy L Thompson       CeedCall(CeedOperatorDestroy(&(*op)->sub_operators[i]));
165552d6035fSJeremy L Thompson     }
16562b730f8bSJeremy L Thompson   }
16572b730f8bSJeremy L Thompson   CeedCall(CeedQFunctionDestroy(&(*op)->qf));
16582b730f8bSJeremy L Thompson   CeedCall(CeedQFunctionDestroy(&(*op)->dqf));
16592b730f8bSJeremy L Thompson   CeedCall(CeedQFunctionDestroy(&(*op)->dqfT));
16603668ca4bSJeremy L Thompson   // Destroy any composite labels
16615ac9af79SJeremy L Thompson   if ((*op)->is_composite) {
16623668ca4bSJeremy L Thompson     for (CeedInt i = 0; i < (*op)->num_context_labels; i++) {
16632b730f8bSJeremy L Thompson       CeedCall(CeedFree(&(*op)->context_labels[i]->sub_labels));
16642b730f8bSJeremy L Thompson       CeedCall(CeedFree(&(*op)->context_labels[i]));
16653668ca4bSJeremy L Thompson     }
16665ac9af79SJeremy L Thompson   }
16672b730f8bSJeremy L Thompson   CeedCall(CeedFree(&(*op)->context_labels));
1668fe2413ffSjeremylt 
16695107b09fSJeremy L Thompson   // Destroy fallback
16702b730f8bSJeremy L Thompson   CeedCall(CeedOperatorDestroy(&(*op)->op_fallback));
16715107b09fSJeremy L Thompson 
1672ed9e99e6SJeremy L Thompson   // Destroy assembly data
16732b730f8bSJeremy L Thompson   CeedCall(CeedQFunctionAssemblyDataDestroy(&(*op)->qf_assembled));
16742b730f8bSJeremy L Thompson   CeedCall(CeedOperatorAssemblyDataDestroy(&(*op)->op_assembled));
167570a7ffb3SJeremy L Thompson 
16762b730f8bSJeremy L Thompson   CeedCall(CeedFree(&(*op)->input_fields));
16772b730f8bSJeremy L Thompson   CeedCall(CeedFree(&(*op)->output_fields));
16782b730f8bSJeremy L Thompson   CeedCall(CeedFree(&(*op)->sub_operators));
16792b730f8bSJeremy L Thompson   CeedCall(CeedFree(&(*op)->name));
16802b730f8bSJeremy L Thompson   CeedCall(CeedFree(op));
1681e15f9bd0SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1682d7b241e6Sjeremylt }
1683d7b241e6Sjeremylt 
1684d7b241e6Sjeremylt /// @}
1685