xref: /libCEED/rust/libceed-sys/c-src/interface/ceed-preconditioning.c (revision 3d8e882215d238700cdceb37404f76ca7fa24eaa)
1*3d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2*3d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3eaf62fffSJeremy L Thompson //
4*3d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5eaf62fffSJeremy L Thompson //
6*3d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7eaf62fffSJeremy L Thompson 
8eaf62fffSJeremy L Thompson #include <ceed/ceed.h>
9eaf62fffSJeremy L Thompson #include <ceed/backend.h>
10eaf62fffSJeremy L Thompson #include <ceed-impl.h>
11eaf62fffSJeremy L Thompson #include <math.h>
12eaf62fffSJeremy L Thompson #include <stdbool.h>
13eaf62fffSJeremy L Thompson #include <stdio.h>
14eaf62fffSJeremy L Thompson #include <string.h>
15eaf62fffSJeremy L Thompson 
16eaf62fffSJeremy L Thompson /// @file
17eaf62fffSJeremy L Thompson /// Implementation of CeedOperator preconditioning interfaces
18eaf62fffSJeremy L Thompson 
19eaf62fffSJeremy L Thompson /// ----------------------------------------------------------------------------
20eaf62fffSJeremy L Thompson /// CeedOperator Library Internal Preconditioning Functions
21eaf62fffSJeremy L Thompson /// ----------------------------------------------------------------------------
22eaf62fffSJeremy L Thompson /// @addtogroup CeedOperatorDeveloper
23eaf62fffSJeremy L Thompson /// @{
24eaf62fffSJeremy L Thompson 
25eaf62fffSJeremy L Thompson /**
26eaf62fffSJeremy L Thompson   @brief Duplicate a CeedOperator with a reference Ceed to fallback for advanced
27eaf62fffSJeremy L Thompson          CeedOperator functionality
28eaf62fffSJeremy L Thompson 
29eaf62fffSJeremy L Thompson   @param op  CeedOperator to create fallback for
30eaf62fffSJeremy L Thompson 
31eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
32eaf62fffSJeremy L Thompson 
33eaf62fffSJeremy L Thompson   @ref Developer
34eaf62fffSJeremy L Thompson **/
35eaf62fffSJeremy L Thompson int CeedOperatorCreateFallback(CeedOperator op) {
36eaf62fffSJeremy L Thompson   int ierr;
37eaf62fffSJeremy L Thompson 
38eaf62fffSJeremy L Thompson   // Fallback Ceed
39eaf62fffSJeremy L Thompson   const char *resource, *fallback_resource;
40eaf62fffSJeremy L Thompson   ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
41eaf62fffSJeremy L Thompson   ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
42eaf62fffSJeremy L Thompson   CeedChk(ierr);
43eaf62fffSJeremy L Thompson   if (!strcmp(resource, fallback_resource))
44eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
45eaf62fffSJeremy L Thompson     return CeedError(op->ceed, CEED_ERROR_UNSUPPORTED,
46eaf62fffSJeremy L Thompson                      "Backend %s cannot create an operator"
47eaf62fffSJeremy L Thompson                      "fallback to resource %s", resource, fallback_resource);
48eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
49eaf62fffSJeremy L Thompson 
50eaf62fffSJeremy L Thompson   // Fallback Ceed
51eaf62fffSJeremy L Thompson   Ceed ceed_ref;
52eaf62fffSJeremy L Thompson   if (!op->ceed->op_fallback_ceed) {
53eaf62fffSJeremy L Thompson     ierr = CeedInit(fallback_resource, &ceed_ref); CeedChk(ierr);
54eaf62fffSJeremy L Thompson     ceed_ref->op_fallback_parent = op->ceed;
55eaf62fffSJeremy L Thompson     ceed_ref->Error = op->ceed->Error;
56eaf62fffSJeremy L Thompson     op->ceed->op_fallback_ceed = ceed_ref;
57eaf62fffSJeremy L Thompson   }
58eaf62fffSJeremy L Thompson   ceed_ref = op->ceed->op_fallback_ceed;
59eaf62fffSJeremy L Thompson 
60eaf62fffSJeremy L Thompson   // Clone Op
61eaf62fffSJeremy L Thompson   CeedOperator op_ref;
62eaf62fffSJeremy L Thompson   ierr = CeedCalloc(1, &op_ref); CeedChk(ierr);
63eaf62fffSJeremy L Thompson   memcpy(op_ref, op, sizeof(*op_ref));
64eaf62fffSJeremy L Thompson   op_ref->data = NULL;
65f04ea552SJeremy L Thompson   op_ref->is_interface_setup = false;
66f04ea552SJeremy L Thompson   op_ref->is_backend_setup = false;
67eaf62fffSJeremy L Thompson   op_ref->ceed = ceed_ref;
68eaf62fffSJeremy L Thompson   ierr = ceed_ref->OperatorCreate(op_ref); CeedChk(ierr);
69480fae85SJeremy L Thompson   ierr = CeedQFunctionAssemblyDataReferenceCopy(op->qf_assembled,
70480fae85SJeremy L Thompson          &op_ref->qf_assembled); CeedChk(ierr);
71eaf62fffSJeremy L Thompson   op->op_fallback = op_ref;
72eaf62fffSJeremy L Thompson 
73eaf62fffSJeremy L Thompson   // Clone QF
74eaf62fffSJeremy L Thompson   CeedQFunction qf_ref;
75eaf62fffSJeremy L Thompson   ierr = CeedCalloc(1, &qf_ref); CeedChk(ierr);
76eaf62fffSJeremy L Thompson   memcpy(qf_ref, (op->qf), sizeof(*qf_ref));
77eaf62fffSJeremy L Thompson   qf_ref->data = NULL;
78eaf62fffSJeremy L Thompson   qf_ref->ceed = ceed_ref;
79eaf62fffSJeremy L Thompson   ierr = ceed_ref->QFunctionCreate(qf_ref); CeedChk(ierr);
80eaf62fffSJeremy L Thompson   op_ref->qf = qf_ref;
81eaf62fffSJeremy L Thompson   op->qf_fallback = qf_ref;
82eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
83eaf62fffSJeremy L Thompson }
84eaf62fffSJeremy L Thompson 
85eaf62fffSJeremy L Thompson /**
86eaf62fffSJeremy L Thompson   @brief Select correct basis matrix pointer based on CeedEvalMode
87eaf62fffSJeremy L Thompson 
88eaf62fffSJeremy L Thompson   @param[in] eval_mode   Current basis evaluation mode
89eaf62fffSJeremy L Thompson   @param[in] identity    Pointer to identity matrix
90eaf62fffSJeremy L Thompson   @param[in] interp      Pointer to interpolation matrix
91eaf62fffSJeremy L Thompson   @param[in] grad        Pointer to gradient matrix
92eaf62fffSJeremy L Thompson   @param[out] basis_ptr  Basis pointer to set
93eaf62fffSJeremy L Thompson 
94eaf62fffSJeremy L Thompson   @ref Developer
95eaf62fffSJeremy L Thompson **/
96eaf62fffSJeremy L Thompson static inline void CeedOperatorGetBasisPointer(CeedEvalMode eval_mode,
97eaf62fffSJeremy L Thompson     const CeedScalar *identity, const CeedScalar *interp,
98eaf62fffSJeremy L Thompson     const CeedScalar *grad, const CeedScalar **basis_ptr) {
99eaf62fffSJeremy L Thompson   switch (eval_mode) {
100eaf62fffSJeremy L Thompson   case CEED_EVAL_NONE:
101eaf62fffSJeremy L Thompson     *basis_ptr = identity;
102eaf62fffSJeremy L Thompson     break;
103eaf62fffSJeremy L Thompson   case CEED_EVAL_INTERP:
104eaf62fffSJeremy L Thompson     *basis_ptr = interp;
105eaf62fffSJeremy L Thompson     break;
106eaf62fffSJeremy L Thompson   case CEED_EVAL_GRAD:
107eaf62fffSJeremy L Thompson     *basis_ptr = grad;
108eaf62fffSJeremy L Thompson     break;
109eaf62fffSJeremy L Thompson   case CEED_EVAL_WEIGHT:
110eaf62fffSJeremy L Thompson   case CEED_EVAL_DIV:
111eaf62fffSJeremy L Thompson   case CEED_EVAL_CURL:
112eaf62fffSJeremy L Thompson     break; // Caught by QF Assembly
113eaf62fffSJeremy L Thompson   }
114eaf62fffSJeremy L Thompson }
115eaf62fffSJeremy L Thompson 
116eaf62fffSJeremy L Thompson /**
117eaf62fffSJeremy L Thompson   @brief Create point block restriction for active operator field
118eaf62fffSJeremy L Thompson 
119eaf62fffSJeremy L Thompson   @param[in] rstr              Original CeedElemRestriction for active field
120eaf62fffSJeremy L Thompson   @param[out] pointblock_rstr  Address of the variable where the newly created
121eaf62fffSJeremy L Thompson                                  CeedElemRestriction will be stored
122eaf62fffSJeremy L Thompson 
123eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
124eaf62fffSJeremy L Thompson 
125eaf62fffSJeremy L Thompson   @ref Developer
126eaf62fffSJeremy L Thompson **/
127eaf62fffSJeremy L Thompson static int CeedOperatorCreateActivePointBlockRestriction(
128eaf62fffSJeremy L Thompson   CeedElemRestriction rstr,
129eaf62fffSJeremy L Thompson   CeedElemRestriction *pointblock_rstr) {
130eaf62fffSJeremy L Thompson   int ierr;
131eaf62fffSJeremy L Thompson   Ceed ceed;
132eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetCeed(rstr, &ceed); CeedChk(ierr);
133eaf62fffSJeremy L Thompson   const CeedInt *offsets;
134eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetOffsets(rstr, CEED_MEM_HOST, &offsets);
135eaf62fffSJeremy L Thompson   CeedChk(ierr);
136eaf62fffSJeremy L Thompson 
137eaf62fffSJeremy L Thompson   // Expand offsets
138eaf62fffSJeremy L Thompson   CeedInt num_elem, num_comp, elem_size, comp_stride, max = 1,
139eaf62fffSJeremy L Thompson                                                       *pointblock_offsets;
140eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumElements(rstr, &num_elem); CeedChk(ierr);
141eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumComponents(rstr, &num_comp); CeedChk(ierr);
142eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetElementSize(rstr, &elem_size); CeedChk(ierr);
143eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetCompStride(rstr, &comp_stride); CeedChk(ierr);
144eaf62fffSJeremy L Thompson   CeedInt shift = num_comp;
145eaf62fffSJeremy L Thompson   if (comp_stride != 1)
146eaf62fffSJeremy L Thompson     shift *= num_comp;
147eaf62fffSJeremy L Thompson   ierr = CeedCalloc(num_elem*elem_size, &pointblock_offsets);
148eaf62fffSJeremy L Thompson   CeedChk(ierr);
149eaf62fffSJeremy L Thompson   for (CeedInt i = 0; i < num_elem*elem_size; i++) {
150eaf62fffSJeremy L Thompson     pointblock_offsets[i] = offsets[i]*shift;
151eaf62fffSJeremy L Thompson     if (pointblock_offsets[i] > max)
152eaf62fffSJeremy L Thompson       max = pointblock_offsets[i];
153eaf62fffSJeremy L Thompson   }
154eaf62fffSJeremy L Thompson 
155eaf62fffSJeremy L Thompson   // Create new restriction
156eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionCreate(ceed, num_elem, elem_size, num_comp*num_comp,
157eaf62fffSJeremy L Thompson                                    1, max + num_comp*num_comp, CEED_MEM_HOST,
158eaf62fffSJeremy L Thompson                                    CEED_OWN_POINTER, pointblock_offsets, pointblock_rstr);
159eaf62fffSJeremy L Thompson   CeedChk(ierr);
160eaf62fffSJeremy L Thompson 
161eaf62fffSJeremy L Thompson   // Cleanup
162eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionRestoreOffsets(rstr, &offsets); CeedChk(ierr);
163eaf62fffSJeremy L Thompson 
164eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
165eaf62fffSJeremy L Thompson }
166eaf62fffSJeremy L Thompson 
167eaf62fffSJeremy L Thompson /**
168eaf62fffSJeremy L Thompson   @brief Core logic for assembling operator diagonal or point block diagonal
169eaf62fffSJeremy L Thompson 
170eaf62fffSJeremy L Thompson   @param[in] op             CeedOperator to assemble point block diagonal
171eaf62fffSJeremy L Thompson   @param[in] request        Address of CeedRequest for non-blocking completion, else
172eaf62fffSJeremy L Thompson                               CEED_REQUEST_IMMEDIATE
173eaf62fffSJeremy L Thompson   @param[in] is_pointblock  Boolean flag to assemble diagonal or point block diagonal
174eaf62fffSJeremy L Thompson   @param[out] assembled     CeedVector to store assembled diagonal
175eaf62fffSJeremy L Thompson 
176eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
177eaf62fffSJeremy L Thompson 
178eaf62fffSJeremy L Thompson   @ref Developer
179eaf62fffSJeremy L Thompson **/
180eaf62fffSJeremy L Thompson static inline int CeedSingleOperatorAssembleAddDiagonal(CeedOperator op,
181eaf62fffSJeremy L Thompson     CeedRequest *request, const bool is_pointblock, CeedVector assembled) {
182eaf62fffSJeremy L Thompson   int ierr;
183eaf62fffSJeremy L Thompson   Ceed ceed;
184eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetCeed(op, &ceed); CeedChk(ierr);
185eaf62fffSJeremy L Thompson 
186eaf62fffSJeremy L Thompson   // Assemble QFunction
187eaf62fffSJeremy L Thompson   CeedQFunction qf;
188eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetQFunction(op, &qf); CeedChk(ierr);
189eaf62fffSJeremy L Thompson   CeedInt num_input_fields, num_output_fields;
190eaf62fffSJeremy L Thompson   ierr= CeedQFunctionGetNumArgs(qf, &num_input_fields, &num_output_fields);
191eaf62fffSJeremy L Thompson   CeedChk(ierr);
192eaf62fffSJeremy L Thompson   CeedVector assembled_qf;
193eaf62fffSJeremy L Thompson   CeedElemRestriction rstr;
19470a7ffb3SJeremy L Thompson   ierr = CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op,  &assembled_qf,
19570a7ffb3SJeremy L Thompson          &rstr, request); CeedChk(ierr);
196eaf62fffSJeremy L Thompson   CeedInt layout[3];
197eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetELayout(rstr, &layout); CeedChk(ierr);
198eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionDestroy(&rstr); CeedChk(ierr);
199eaf62fffSJeremy L Thompson   CeedScalar max_norm = 0;
200eaf62fffSJeremy L Thompson   ierr = CeedVectorNorm(assembled_qf, CEED_NORM_MAX, &max_norm); CeedChk(ierr);
201eaf62fffSJeremy L Thompson 
202eaf62fffSJeremy L Thompson   // Determine active input basis
203eaf62fffSJeremy L Thompson   CeedOperatorField *op_fields;
204eaf62fffSJeremy L Thompson   CeedQFunctionField *qf_fields;
2057e7773b5SJeremy L Thompson   ierr = CeedOperatorGetFields(op, NULL, &op_fields, NULL, NULL); CeedChk(ierr);
2067e7773b5SJeremy L Thompson   ierr = CeedQFunctionGetFields(qf, NULL, &qf_fields, NULL, NULL); CeedChk(ierr);
207eaf62fffSJeremy L Thompson   CeedInt num_eval_mode_in = 0, num_comp, dim = 1;
208eaf62fffSJeremy L Thompson   CeedEvalMode *eval_mode_in = NULL;
209eaf62fffSJeremy L Thompson   CeedBasis basis_in = NULL;
210eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_in = NULL;
211eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_input_fields; i++) {
212eaf62fffSJeremy L Thompson     CeedVector vec;
213eaf62fffSJeremy L Thompson     ierr = CeedOperatorFieldGetVector(op_fields[i], &vec); CeedChk(ierr);
214eaf62fffSJeremy L Thompson     if (vec == CEED_VECTOR_ACTIVE) {
215eaf62fffSJeremy L Thompson       CeedElemRestriction rstr;
216eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetBasis(op_fields[i], &basis_in); CeedChk(ierr);
217eaf62fffSJeremy L Thompson       ierr = CeedBasisGetNumComponents(basis_in, &num_comp); CeedChk(ierr);
218eaf62fffSJeremy L Thompson       ierr = CeedBasisGetDimension(basis_in, &dim); CeedChk(ierr);
219eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetElemRestriction(op_fields[i], &rstr); CeedChk(ierr);
220eaf62fffSJeremy L Thompson       if (rstr_in && rstr_in != rstr)
221eaf62fffSJeremy L Thompson         // LCOV_EXCL_START
222eaf62fffSJeremy L Thompson         return CeedError(ceed, CEED_ERROR_BACKEND,
223eaf62fffSJeremy L Thompson                          "Multi-field non-composite operator diagonal assembly not supported");
224eaf62fffSJeremy L Thompson       // LCOV_EXCL_STOP
225eaf62fffSJeremy L Thompson       rstr_in = rstr;
226eaf62fffSJeremy L Thompson       CeedEvalMode eval_mode;
227eaf62fffSJeremy L Thompson       ierr = CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode); CeedChk(ierr);
228eaf62fffSJeremy L Thompson       switch (eval_mode) {
229eaf62fffSJeremy L Thompson       case CEED_EVAL_NONE:
230eaf62fffSJeremy L Thompson       case CEED_EVAL_INTERP:
231eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_in + 1, &eval_mode_in); CeedChk(ierr);
232eaf62fffSJeremy L Thompson         eval_mode_in[num_eval_mode_in] = eval_mode;
233eaf62fffSJeremy L Thompson         num_eval_mode_in += 1;
234eaf62fffSJeremy L Thompson         break;
235eaf62fffSJeremy L Thompson       case CEED_EVAL_GRAD:
236eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_in + dim, &eval_mode_in); CeedChk(ierr);
237eaf62fffSJeremy L Thompson         for (CeedInt d=0; d<dim; d++)
238eaf62fffSJeremy L Thompson           eval_mode_in[num_eval_mode_in+d] = eval_mode;
239eaf62fffSJeremy L Thompson         num_eval_mode_in += dim;
240eaf62fffSJeremy L Thompson         break;
241eaf62fffSJeremy L Thompson       case CEED_EVAL_WEIGHT:
242eaf62fffSJeremy L Thompson       case CEED_EVAL_DIV:
243eaf62fffSJeremy L Thompson       case CEED_EVAL_CURL:
244eaf62fffSJeremy L Thompson         break; // Caught by QF Assembly
245eaf62fffSJeremy L Thompson       }
246eaf62fffSJeremy L Thompson     }
247eaf62fffSJeremy L Thompson   }
248eaf62fffSJeremy L Thompson 
249eaf62fffSJeremy L Thompson   // Determine active output basis
2507e7773b5SJeremy L Thompson   ierr = CeedOperatorGetFields(op, NULL, NULL, NULL, &op_fields); CeedChk(ierr);
2517e7773b5SJeremy L Thompson   ierr = CeedQFunctionGetFields(qf, NULL, NULL, NULL, &qf_fields); CeedChk(ierr);
252eaf62fffSJeremy L Thompson   CeedInt num_eval_mode_out = 0;
253eaf62fffSJeremy L Thompson   CeedEvalMode *eval_mode_out = NULL;
254eaf62fffSJeremy L Thompson   CeedBasis basis_out = NULL;
255eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_out = NULL;
256eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_output_fields; i++) {
257eaf62fffSJeremy L Thompson     CeedVector vec;
258eaf62fffSJeremy L Thompson     ierr = CeedOperatorFieldGetVector(op_fields[i], &vec); CeedChk(ierr);
259eaf62fffSJeremy L Thompson     if (vec == CEED_VECTOR_ACTIVE) {
260eaf62fffSJeremy L Thompson       CeedElemRestriction rstr;
261eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetBasis(op_fields[i], &basis_out); CeedChk(ierr);
262eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetElemRestriction(op_fields[i], &rstr); CeedChk(ierr);
263eaf62fffSJeremy L Thompson       if (rstr_out && rstr_out != rstr)
264eaf62fffSJeremy L Thompson         // LCOV_EXCL_START
265eaf62fffSJeremy L Thompson         return CeedError(ceed, CEED_ERROR_BACKEND,
266eaf62fffSJeremy L Thompson                          "Multi-field non-composite operator diagonal assembly not supported");
267eaf62fffSJeremy L Thompson       // LCOV_EXCL_STOP
268eaf62fffSJeremy L Thompson       rstr_out = rstr;
269eaf62fffSJeremy L Thompson       CeedEvalMode eval_mode;
270eaf62fffSJeremy L Thompson       ierr = CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode); CeedChk(ierr);
271eaf62fffSJeremy L Thompson       switch (eval_mode) {
272eaf62fffSJeremy L Thompson       case CEED_EVAL_NONE:
273eaf62fffSJeremy L Thompson       case CEED_EVAL_INTERP:
274eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_out + 1, &eval_mode_out); CeedChk(ierr);
275eaf62fffSJeremy L Thompson         eval_mode_out[num_eval_mode_out] = eval_mode;
276eaf62fffSJeremy L Thompson         num_eval_mode_out += 1;
277eaf62fffSJeremy L Thompson         break;
278eaf62fffSJeremy L Thompson       case CEED_EVAL_GRAD:
279eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_out + dim, &eval_mode_out); CeedChk(ierr);
280eaf62fffSJeremy L Thompson         for (CeedInt d=0; d<dim; d++)
281eaf62fffSJeremy L Thompson           eval_mode_out[num_eval_mode_out+d] = eval_mode;
282eaf62fffSJeremy L Thompson         num_eval_mode_out += dim;
283eaf62fffSJeremy L Thompson         break;
284eaf62fffSJeremy L Thompson       case CEED_EVAL_WEIGHT:
285eaf62fffSJeremy L Thompson       case CEED_EVAL_DIV:
286eaf62fffSJeremy L Thompson       case CEED_EVAL_CURL:
287eaf62fffSJeremy L Thompson         break; // Caught by QF Assembly
288eaf62fffSJeremy L Thompson       }
289eaf62fffSJeremy L Thompson     }
290eaf62fffSJeremy L Thompson   }
291eaf62fffSJeremy L Thompson 
292eaf62fffSJeremy L Thompson   // Assemble point block diagonal restriction, if needed
293eaf62fffSJeremy L Thompson   CeedElemRestriction diag_rstr = rstr_out;
294eaf62fffSJeremy L Thompson   if (is_pointblock) {
295eaf62fffSJeremy L Thompson     ierr = CeedOperatorCreateActivePointBlockRestriction(rstr_out, &diag_rstr);
296eaf62fffSJeremy L Thompson     CeedChk(ierr);
297eaf62fffSJeremy L Thompson   }
298eaf62fffSJeremy L Thompson 
299eaf62fffSJeremy L Thompson   // Create diagonal vector
300eaf62fffSJeremy L Thompson   CeedVector elem_diag;
301eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionCreateVector(diag_rstr, NULL, &elem_diag);
302eaf62fffSJeremy L Thompson   CeedChk(ierr);
303eaf62fffSJeremy L Thompson 
304eaf62fffSJeremy L Thompson   // Assemble element operator diagonals
3059c774eddSJeremy L Thompson   CeedScalar *elem_diag_array;
3069c774eddSJeremy L Thompson   const CeedScalar *assembled_qf_array;
307eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(elem_diag, 0.0); CeedChk(ierr);
308eaf62fffSJeremy L Thompson   ierr = CeedVectorGetArray(elem_diag, CEED_MEM_HOST, &elem_diag_array);
309eaf62fffSJeremy L Thompson   CeedChk(ierr);
3109c774eddSJeremy L Thompson   ierr = CeedVectorGetArrayRead(assembled_qf, CEED_MEM_HOST, &assembled_qf_array);
311eaf62fffSJeremy L Thompson   CeedChk(ierr);
312eaf62fffSJeremy L Thompson   CeedInt num_elem, num_nodes, num_qpts;
313eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumElements(diag_rstr, &num_elem); CeedChk(ierr);
314eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumNodes(basis_in, &num_nodes); CeedChk(ierr);
315eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_in, &num_qpts); CeedChk(ierr);
316eaf62fffSJeremy L Thompson   // Basis matrices
317eaf62fffSJeremy L Thompson   const CeedScalar *interp_in, *interp_out, *grad_in, *grad_out;
318eaf62fffSJeremy L Thompson   CeedScalar *identity = NULL;
319eaf62fffSJeremy L Thompson   bool evalNone = false;
320eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_eval_mode_in; i++)
321eaf62fffSJeremy L Thompson     evalNone = evalNone || (eval_mode_in[i] == CEED_EVAL_NONE);
322eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_eval_mode_out; i++)
323eaf62fffSJeremy L Thompson     evalNone = evalNone || (eval_mode_out[i] == CEED_EVAL_NONE);
324eaf62fffSJeremy L Thompson   if (evalNone) {
325eaf62fffSJeremy L Thompson     ierr = CeedCalloc(num_qpts*num_nodes, &identity); CeedChk(ierr);
326eaf62fffSJeremy L Thompson     for (CeedInt i=0; i<(num_nodes<num_qpts?num_nodes:num_qpts); i++)
327eaf62fffSJeremy L Thompson       identity[i*num_nodes+i] = 1.0;
328eaf62fffSJeremy L Thompson   }
329eaf62fffSJeremy L Thompson   ierr = CeedBasisGetInterp(basis_in, &interp_in); CeedChk(ierr);
330eaf62fffSJeremy L Thompson   ierr = CeedBasisGetInterp(basis_out, &interp_out); CeedChk(ierr);
331eaf62fffSJeremy L Thompson   ierr = CeedBasisGetGrad(basis_in, &grad_in); CeedChk(ierr);
332eaf62fffSJeremy L Thompson   ierr = CeedBasisGetGrad(basis_out, &grad_out); CeedChk(ierr);
333eaf62fffSJeremy L Thompson   // Compute the diagonal of B^T D B
334eaf62fffSJeremy L Thompson   // Each element
335eaf62fffSJeremy L Thompson   const CeedScalar qf_value_bound = max_norm*100*CEED_EPSILON;
336eaf62fffSJeremy L Thompson   for (CeedInt e=0; e<num_elem; e++) {
337eaf62fffSJeremy L Thompson     CeedInt d_out = -1;
338eaf62fffSJeremy L Thompson     // Each basis eval mode pair
339eaf62fffSJeremy L Thompson     for (CeedInt e_out=0; e_out<num_eval_mode_out; e_out++) {
340eaf62fffSJeremy L Thompson       const CeedScalar *bt = NULL;
341eaf62fffSJeremy L Thompson       if (eval_mode_out[e_out] == CEED_EVAL_GRAD)
342eaf62fffSJeremy L Thompson         d_out += 1;
343eaf62fffSJeremy L Thompson       CeedOperatorGetBasisPointer(eval_mode_out[e_out], identity, interp_out,
344eaf62fffSJeremy L Thompson                                   &grad_out[d_out*num_qpts*num_nodes], &bt);
345eaf62fffSJeremy L Thompson       CeedInt d_in = -1;
346eaf62fffSJeremy L Thompson       for (CeedInt e_in=0; e_in<num_eval_mode_in; e_in++) {
347eaf62fffSJeremy L Thompson         const CeedScalar *b = NULL;
348eaf62fffSJeremy L Thompson         if (eval_mode_in[e_in] == CEED_EVAL_GRAD)
349eaf62fffSJeremy L Thompson           d_in += 1;
350eaf62fffSJeremy L Thompson         CeedOperatorGetBasisPointer(eval_mode_in[e_in], identity, interp_in,
351eaf62fffSJeremy L Thompson                                     &grad_in[d_in*num_qpts*num_nodes], &b);
352eaf62fffSJeremy L Thompson         // Each component
353eaf62fffSJeremy L Thompson         for (CeedInt c_out=0; c_out<num_comp; c_out++)
354eaf62fffSJeremy L Thompson           // Each qpoint/node pair
355eaf62fffSJeremy L Thompson           for (CeedInt q=0; q<num_qpts; q++)
356eaf62fffSJeremy L Thompson             if (is_pointblock) {
357eaf62fffSJeremy L Thompson               // Point Block Diagonal
358eaf62fffSJeremy L Thompson               for (CeedInt c_in=0; c_in<num_comp; c_in++) {
359eaf62fffSJeremy L Thompson                 const CeedScalar qf_value =
360eaf62fffSJeremy L Thompson                   assembled_qf_array[q*layout[0] + (((e_in*num_comp+c_in)*
361eaf62fffSJeremy L Thompson                                                      num_eval_mode_out+e_out)*num_comp+c_out)*layout[1] + e*layout[2]];
362eaf62fffSJeremy L Thompson                 if (fabs(qf_value) > qf_value_bound)
363eaf62fffSJeremy L Thompson                   for (CeedInt n=0; n<num_nodes; n++)
364eaf62fffSJeremy L Thompson                     elem_diag_array[((e*num_comp+c_out)*num_comp+c_in)*num_nodes+n] +=
365eaf62fffSJeremy L Thompson                       bt[q*num_nodes+n] * qf_value * b[q*num_nodes+n];
366eaf62fffSJeremy L Thompson               }
367eaf62fffSJeremy L Thompson             } else {
368eaf62fffSJeremy L Thompson               // Diagonal Only
369eaf62fffSJeremy L Thompson               const CeedScalar qf_value =
370eaf62fffSJeremy L Thompson                 assembled_qf_array[q*layout[0] + (((e_in*num_comp+c_out)*
371eaf62fffSJeremy L Thompson                                                    num_eval_mode_out+e_out)*num_comp+c_out)*layout[1] + e*layout[2]];
372eaf62fffSJeremy L Thompson               if (fabs(qf_value) > qf_value_bound)
373eaf62fffSJeremy L Thompson                 for (CeedInt n=0; n<num_nodes; n++)
374eaf62fffSJeremy L Thompson                   elem_diag_array[(e*num_comp+c_out)*num_nodes+n] +=
375eaf62fffSJeremy L Thompson                     bt[q*num_nodes+n] * qf_value * b[q*num_nodes+n];
376eaf62fffSJeremy L Thompson             }
377eaf62fffSJeremy L Thompson       }
378eaf62fffSJeremy L Thompson     }
379eaf62fffSJeremy L Thompson   }
380eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArray(elem_diag, &elem_diag_array); CeedChk(ierr);
3819c774eddSJeremy L Thompson   ierr = CeedVectorRestoreArrayRead(assembled_qf, &assembled_qf_array);
3829c774eddSJeremy L Thompson   CeedChk(ierr);
383eaf62fffSJeremy L Thompson 
384eaf62fffSJeremy L Thompson   // Assemble local operator diagonal
385eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionApply(diag_rstr, CEED_TRANSPOSE, elem_diag,
386eaf62fffSJeremy L Thompson                                   assembled, request); CeedChk(ierr);
387eaf62fffSJeremy L Thompson 
388eaf62fffSJeremy L Thompson   // Cleanup
389eaf62fffSJeremy L Thompson   if (is_pointblock) {
390eaf62fffSJeremy L Thompson     ierr = CeedElemRestrictionDestroy(&diag_rstr); CeedChk(ierr);
391eaf62fffSJeremy L Thompson   }
392eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&assembled_qf); CeedChk(ierr);
393eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&elem_diag); CeedChk(ierr);
394eaf62fffSJeremy L Thompson   ierr = CeedFree(&eval_mode_in); CeedChk(ierr);
395eaf62fffSJeremy L Thompson   ierr = CeedFree(&eval_mode_out); CeedChk(ierr);
396eaf62fffSJeremy L Thompson   ierr = CeedFree(&identity); CeedChk(ierr);
397eaf62fffSJeremy L Thompson 
398eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
399eaf62fffSJeremy L Thompson }
400eaf62fffSJeremy L Thompson 
401eaf62fffSJeremy L Thompson /**
402eaf62fffSJeremy L Thompson   @brief Core logic for assembling composite operator diagonal
403eaf62fffSJeremy L Thompson 
404eaf62fffSJeremy L Thompson   @param[in] op             CeedOperator to assemble point block diagonal
405eaf62fffSJeremy L Thompson   @param[in] request        Address of CeedRequest for non-blocking completion, else
406eaf62fffSJeremy L Thompson                             CEED_REQUEST_IMMEDIATE
407eaf62fffSJeremy L Thompson   @param[in] is_pointblock  Boolean flag to assemble diagonal or point block diagonal
408eaf62fffSJeremy L Thompson   @param[out] assembled     CeedVector to store assembled diagonal
409eaf62fffSJeremy L Thompson 
410eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
411eaf62fffSJeremy L Thompson 
412eaf62fffSJeremy L Thompson   @ref Developer
413eaf62fffSJeremy L Thompson **/
414eaf62fffSJeremy L Thompson static inline int CeedCompositeOperatorLinearAssembleAddDiagonal(
415eaf62fffSJeremy L Thompson   CeedOperator op, CeedRequest *request, const bool is_pointblock,
416eaf62fffSJeremy L Thompson   CeedVector assembled) {
417eaf62fffSJeremy L Thompson   int ierr;
418eaf62fffSJeremy L Thompson   CeedInt num_sub;
419eaf62fffSJeremy L Thompson   CeedOperator *suboperators;
420eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetNumSub(op, &num_sub); CeedChk(ierr);
421eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetSubList(op, &suboperators); CeedChk(ierr);
422eaf62fffSJeremy L Thompson   for (CeedInt i = 0; i < num_sub; i++) {
423eaf62fffSJeremy L Thompson     ierr = CeedSingleOperatorAssembleAddDiagonal(suboperators[i], request,
424eaf62fffSJeremy L Thompson            is_pointblock, assembled); CeedChk(ierr);
425eaf62fffSJeremy L Thompson   }
426eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
427eaf62fffSJeremy L Thompson }
428eaf62fffSJeremy L Thompson 
429eaf62fffSJeremy L Thompson /**
430eaf62fffSJeremy L Thompson   @brief Build nonzero pattern for non-composite operator
431eaf62fffSJeremy L Thompson 
432eaf62fffSJeremy L Thompson   Users should generally use CeedOperatorLinearAssembleSymbolic()
433eaf62fffSJeremy L Thompson 
434eaf62fffSJeremy L Thompson   @param[in] op      CeedOperator to assemble nonzero pattern
435eaf62fffSJeremy L Thompson   @param[in] offset  Offset for number of entries
436eaf62fffSJeremy L Thompson   @param[out] rows   Row number for each entry
437eaf62fffSJeremy L Thompson   @param[out] cols   Column number for each entry
438eaf62fffSJeremy L Thompson 
439eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
440eaf62fffSJeremy L Thompson 
441eaf62fffSJeremy L Thompson   @ref Developer
442eaf62fffSJeremy L Thompson **/
443eaf62fffSJeremy L Thompson static int CeedSingleOperatorAssembleSymbolic(CeedOperator op, CeedInt offset,
444eaf62fffSJeremy L Thompson     CeedInt *rows, CeedInt *cols) {
445eaf62fffSJeremy L Thompson   int ierr;
446eaf62fffSJeremy L Thompson   Ceed ceed = op->ceed;
447f04ea552SJeremy L Thompson   if (op->is_composite)
448eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
449eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_UNSUPPORTED,
450eaf62fffSJeremy L Thompson                      "Composite operator not supported");
451eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
452eaf62fffSJeremy L Thompson 
453eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_in;
454eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetActiveElemRestriction(op, &rstr_in); CeedChk(ierr);
455e79b91d9SJeremy L Thompson   CeedSize num_nodes;
456e79b91d9SJeremy L Thompson   CeedInt num_elem, elem_size, num_comp;
457eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumElements(rstr_in, &num_elem); CeedChk(ierr);
458eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetElementSize(rstr_in, &elem_size); CeedChk(ierr);
459eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetLVectorSize(rstr_in, &num_nodes); CeedChk(ierr);
460eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumComponents(rstr_in, &num_comp); CeedChk(ierr);
461eaf62fffSJeremy L Thompson   CeedInt layout_er[3];
462eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetELayout(rstr_in, &layout_er); CeedChk(ierr);
463eaf62fffSJeremy L Thompson 
464eaf62fffSJeremy L Thompson   CeedInt local_num_entries = elem_size*num_comp * elem_size*num_comp * num_elem;
465eaf62fffSJeremy L Thompson 
466eaf62fffSJeremy L Thompson   // Determine elem_dof relation
467eaf62fffSJeremy L Thompson   CeedVector index_vec;
468eaf62fffSJeremy L Thompson   ierr = CeedVectorCreate(ceed, num_nodes, &index_vec); CeedChk(ierr);
469eaf62fffSJeremy L Thompson   CeedScalar *array;
4709c774eddSJeremy L Thompson   ierr = CeedVectorGetArrayWrite(index_vec, CEED_MEM_HOST, &array); CeedChk(ierr);
471eaf62fffSJeremy L Thompson   for (CeedInt i = 0; i < num_nodes; ++i) {
472eaf62fffSJeremy L Thompson     array[i] = i;
473eaf62fffSJeremy L Thompson   }
474eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArray(index_vec, &array); CeedChk(ierr);
475eaf62fffSJeremy L Thompson   CeedVector elem_dof;
476eaf62fffSJeremy L Thompson   ierr = CeedVectorCreate(ceed, num_elem * elem_size * num_comp, &elem_dof);
477eaf62fffSJeremy L Thompson   CeedChk(ierr);
478eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(elem_dof, 0.0); CeedChk(ierr);
479eaf62fffSJeremy L Thompson   CeedElemRestrictionApply(rstr_in, CEED_NOTRANSPOSE, index_vec,
480eaf62fffSJeremy L Thompson                            elem_dof, CEED_REQUEST_IMMEDIATE); CeedChk(ierr);
481eaf62fffSJeremy L Thompson   const CeedScalar *elem_dof_a;
482eaf62fffSJeremy L Thompson   ierr = CeedVectorGetArrayRead(elem_dof, CEED_MEM_HOST, &elem_dof_a);
483eaf62fffSJeremy L Thompson   CeedChk(ierr);
484eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&index_vec); CeedChk(ierr);
485eaf62fffSJeremy L Thompson 
486eaf62fffSJeremy L Thompson   // Determine i, j locations for element matrices
487eaf62fffSJeremy L Thompson   CeedInt count = 0;
488eaf62fffSJeremy L Thompson   for (int e = 0; e < num_elem; ++e) {
489eaf62fffSJeremy L Thompson     for (int comp_in = 0; comp_in < num_comp; ++comp_in) {
490eaf62fffSJeremy L Thompson       for (int comp_out = 0; comp_out < num_comp; ++comp_out) {
491eaf62fffSJeremy L Thompson         for (int i = 0; i < elem_size; ++i) {
492eaf62fffSJeremy L Thompson           for (int j = 0; j < elem_size; ++j) {
493eaf62fffSJeremy L Thompson             const CeedInt elem_dof_index_row = (i)*layout_er[0] +
494eaf62fffSJeremy L Thompson                                                (comp_out)*layout_er[1] + e*layout_er[2];
495eaf62fffSJeremy L Thompson             const CeedInt elem_dof_index_col = (j)*layout_er[0] +
496eaf62fffSJeremy L Thompson                                                (comp_in)*layout_er[1] + e*layout_er[2];
497eaf62fffSJeremy L Thompson 
498eaf62fffSJeremy L Thompson             const CeedInt row = elem_dof_a[elem_dof_index_row];
499eaf62fffSJeremy L Thompson             const CeedInt col = elem_dof_a[elem_dof_index_col];
500eaf62fffSJeremy L Thompson 
501eaf62fffSJeremy L Thompson             rows[offset + count] = row;
502eaf62fffSJeremy L Thompson             cols[offset + count] = col;
503eaf62fffSJeremy L Thompson             count++;
504eaf62fffSJeremy L Thompson           }
505eaf62fffSJeremy L Thompson         }
506eaf62fffSJeremy L Thompson       }
507eaf62fffSJeremy L Thompson     }
508eaf62fffSJeremy L Thompson   }
509eaf62fffSJeremy L Thompson   if (count != local_num_entries)
510eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
511eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_MAJOR, "Error computing assembled entries");
512eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
513eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArrayRead(elem_dof, &elem_dof_a); CeedChk(ierr);
514eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&elem_dof); CeedChk(ierr);
515eaf62fffSJeremy L Thompson 
516eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
517eaf62fffSJeremy L Thompson }
518eaf62fffSJeremy L Thompson 
519eaf62fffSJeremy L Thompson /**
520eaf62fffSJeremy L Thompson   @brief Assemble nonzero entries for non-composite operator
521eaf62fffSJeremy L Thompson 
522eaf62fffSJeremy L Thompson   Users should generally use CeedOperatorLinearAssemble()
523eaf62fffSJeremy L Thompson 
524eaf62fffSJeremy L Thompson   @param[in] op       CeedOperator to assemble
525eaf62fffSJeremy L Thompson   @param[out] offset  Offest for number of entries
526eaf62fffSJeremy L Thompson   @param[out] values  Values to assemble into matrix
527eaf62fffSJeremy L Thompson 
528eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
529eaf62fffSJeremy L Thompson 
530eaf62fffSJeremy L Thompson   @ref Developer
531eaf62fffSJeremy L Thompson **/
532eaf62fffSJeremy L Thompson static int CeedSingleOperatorAssemble(CeedOperator op, CeedInt offset,
533eaf62fffSJeremy L Thompson                                       CeedVector values) {
534eaf62fffSJeremy L Thompson   int ierr;
535eaf62fffSJeremy L Thompson   Ceed ceed = op->ceed;
536f04ea552SJeremy L Thompson   if (op->is_composite)
537eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
538eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_UNSUPPORTED,
539eaf62fffSJeremy L Thompson                      "Composite operator not supported");
540eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
541eaf62fffSJeremy L Thompson 
542eaf62fffSJeremy L Thompson   // Assemble QFunction
543eaf62fffSJeremy L Thompson   CeedQFunction qf;
544eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetQFunction(op, &qf); CeedChk(ierr);
545eaf62fffSJeremy L Thompson   CeedVector assembled_qf;
546eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_q;
54770a7ffb3SJeremy L Thompson   ierr = CeedOperatorLinearAssembleQFunctionBuildOrUpdate(
548eaf62fffSJeremy L Thompson            op, &assembled_qf, &rstr_q, CEED_REQUEST_IMMEDIATE); CeedChk(ierr);
549eaf62fffSJeremy L Thompson 
5501f9221feSJeremy L Thompson   CeedSize qf_length;
551eaf62fffSJeremy L Thompson   ierr = CeedVectorGetLength(assembled_qf, &qf_length); CeedChk(ierr);
552eaf62fffSJeremy L Thompson 
5537e7773b5SJeremy L Thompson   CeedInt num_input_fields, num_output_fields;
554eaf62fffSJeremy L Thompson   CeedOperatorField *input_fields;
555eaf62fffSJeremy L Thompson   CeedOperatorField *output_fields;
5567e7773b5SJeremy L Thompson   ierr = CeedOperatorGetFields(op, &num_input_fields, &input_fields,
5577e7773b5SJeremy L Thompson                                &num_output_fields, &output_fields); CeedChk(ierr);
558eaf62fffSJeremy L Thompson 
559eaf62fffSJeremy L Thompson   // Determine active input basis
560eaf62fffSJeremy L Thompson   CeedQFunctionField *qf_fields;
5617e7773b5SJeremy L Thompson   ierr = CeedQFunctionGetFields(qf, NULL, &qf_fields, NULL, NULL); CeedChk(ierr);
562eaf62fffSJeremy L Thompson   CeedInt num_eval_mode_in = 0, dim = 1;
563eaf62fffSJeremy L Thompson   CeedEvalMode *eval_mode_in = NULL;
564eaf62fffSJeremy L Thompson   CeedBasis basis_in = NULL;
565eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_in = NULL;
566eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_input_fields; i++) {
567eaf62fffSJeremy L Thompson     CeedVector vec;
568eaf62fffSJeremy L Thompson     ierr = CeedOperatorFieldGetVector(input_fields[i], &vec); CeedChk(ierr);
569eaf62fffSJeremy L Thompson     if (vec == CEED_VECTOR_ACTIVE) {
570eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetBasis(input_fields[i], &basis_in);
571eaf62fffSJeremy L Thompson       CeedChk(ierr);
572eaf62fffSJeremy L Thompson       ierr = CeedBasisGetDimension(basis_in, &dim); CeedChk(ierr);
573eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetElemRestriction(input_fields[i], &rstr_in);
574eaf62fffSJeremy L Thompson       CeedChk(ierr);
575eaf62fffSJeremy L Thompson       CeedEvalMode eval_mode;
576eaf62fffSJeremy L Thompson       ierr = CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode);
577eaf62fffSJeremy L Thompson       CeedChk(ierr);
578eaf62fffSJeremy L Thompson       switch (eval_mode) {
579eaf62fffSJeremy L Thompson       case CEED_EVAL_NONE:
580eaf62fffSJeremy L Thompson       case CEED_EVAL_INTERP:
581eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_in + 1, &eval_mode_in); CeedChk(ierr);
582eaf62fffSJeremy L Thompson         eval_mode_in[num_eval_mode_in] = eval_mode;
583eaf62fffSJeremy L Thompson         num_eval_mode_in += 1;
584eaf62fffSJeremy L Thompson         break;
585eaf62fffSJeremy L Thompson       case CEED_EVAL_GRAD:
586eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_in + dim, &eval_mode_in); CeedChk(ierr);
587eaf62fffSJeremy L Thompson         for (CeedInt d=0; d<dim; d++) {
588eaf62fffSJeremy L Thompson           eval_mode_in[num_eval_mode_in+d] = eval_mode;
589eaf62fffSJeremy L Thompson         }
590eaf62fffSJeremy L Thompson         num_eval_mode_in += dim;
591eaf62fffSJeremy L Thompson         break;
592eaf62fffSJeremy L Thompson       case CEED_EVAL_WEIGHT:
593eaf62fffSJeremy L Thompson       case CEED_EVAL_DIV:
594eaf62fffSJeremy L Thompson       case CEED_EVAL_CURL:
595eaf62fffSJeremy L Thompson         break; // Caught by QF Assembly
596eaf62fffSJeremy L Thompson       }
597eaf62fffSJeremy L Thompson     }
598eaf62fffSJeremy L Thompson   }
599eaf62fffSJeremy L Thompson 
600eaf62fffSJeremy L Thompson   // Determine active output basis
6017e7773b5SJeremy L Thompson   ierr = CeedQFunctionGetFields(qf, NULL, NULL, NULL, &qf_fields); CeedChk(ierr);
602eaf62fffSJeremy L Thompson   CeedInt num_eval_mode_out = 0;
603eaf62fffSJeremy L Thompson   CeedEvalMode *eval_mode_out = NULL;
604eaf62fffSJeremy L Thompson   CeedBasis basis_out = NULL;
605eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_out = NULL;
606eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_output_fields; i++) {
607eaf62fffSJeremy L Thompson     CeedVector vec;
608eaf62fffSJeremy L Thompson     ierr = CeedOperatorFieldGetVector(output_fields[i], &vec); CeedChk(ierr);
609eaf62fffSJeremy L Thompson     if (vec == CEED_VECTOR_ACTIVE) {
610eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetBasis(output_fields[i], &basis_out);
611eaf62fffSJeremy L Thompson       CeedChk(ierr);
612eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetElemRestriction(output_fields[i], &rstr_out);
613eaf62fffSJeremy L Thompson       CeedChk(ierr);
614eaf62fffSJeremy L Thompson       CeedEvalMode eval_mode;
615eaf62fffSJeremy L Thompson       ierr = CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode);
616eaf62fffSJeremy L Thompson       CeedChk(ierr);
617eaf62fffSJeremy L Thompson       switch (eval_mode) {
618eaf62fffSJeremy L Thompson       case CEED_EVAL_NONE:
619eaf62fffSJeremy L Thompson       case CEED_EVAL_INTERP:
620eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_out + 1, &eval_mode_out); CeedChk(ierr);
621eaf62fffSJeremy L Thompson         eval_mode_out[num_eval_mode_out] = eval_mode;
622eaf62fffSJeremy L Thompson         num_eval_mode_out += 1;
623eaf62fffSJeremy L Thompson         break;
624eaf62fffSJeremy L Thompson       case CEED_EVAL_GRAD:
625eaf62fffSJeremy L Thompson         ierr = CeedRealloc(num_eval_mode_out + dim, &eval_mode_out); CeedChk(ierr);
626eaf62fffSJeremy L Thompson         for (CeedInt d=0; d<dim; d++) {
627eaf62fffSJeremy L Thompson           eval_mode_out[num_eval_mode_out+d] = eval_mode;
628eaf62fffSJeremy L Thompson         }
629eaf62fffSJeremy L Thompson         num_eval_mode_out += dim;
630eaf62fffSJeremy L Thompson         break;
631eaf62fffSJeremy L Thompson       case CEED_EVAL_WEIGHT:
632eaf62fffSJeremy L Thompson       case CEED_EVAL_DIV:
633eaf62fffSJeremy L Thompson       case CEED_EVAL_CURL:
634eaf62fffSJeremy L Thompson         break; // Caught by QF Assembly
635eaf62fffSJeremy L Thompson       }
636eaf62fffSJeremy L Thompson     }
637eaf62fffSJeremy L Thompson   }
638eaf62fffSJeremy L Thompson 
639eaf62fffSJeremy L Thompson   if (num_eval_mode_in == 0 || num_eval_mode_out == 0)
640eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
641eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_UNSUPPORTED,
642eaf62fffSJeremy L Thompson                      "Cannot assemble operator with out inputs/outputs");
643eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
644eaf62fffSJeremy L Thompson 
645eaf62fffSJeremy L Thompson   CeedInt num_elem, elem_size, num_qpts, num_comp;
646eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumElements(rstr_in, &num_elem); CeedChk(ierr);
647eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetElementSize(rstr_in, &elem_size); CeedChk(ierr);
648eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumComponents(rstr_in, &num_comp); CeedChk(ierr);
649eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_in, &num_qpts); CeedChk(ierr);
650eaf62fffSJeremy L Thompson 
651eaf62fffSJeremy L Thompson   CeedInt local_num_entries = elem_size*num_comp * elem_size*num_comp * num_elem;
652eaf62fffSJeremy L Thompson 
653eaf62fffSJeremy L Thompson   // loop over elements and put in data structure
654eaf62fffSJeremy L Thompson   const CeedScalar *interp_in, *grad_in;
655eaf62fffSJeremy L Thompson   ierr = CeedBasisGetInterp(basis_in, &interp_in); CeedChk(ierr);
656eaf62fffSJeremy L Thompson   ierr = CeedBasisGetGrad(basis_in, &grad_in); CeedChk(ierr);
657eaf62fffSJeremy L Thompson 
658eaf62fffSJeremy L Thompson   const CeedScalar *assembled_qf_array;
659eaf62fffSJeremy L Thompson   ierr = CeedVectorGetArrayRead(assembled_qf, CEED_MEM_HOST, &assembled_qf_array);
660eaf62fffSJeremy L Thompson   CeedChk(ierr);
661eaf62fffSJeremy L Thompson 
662eaf62fffSJeremy L Thompson   CeedInt layout_qf[3];
663eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetELayout(rstr_q, &layout_qf); CeedChk(ierr);
664eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionDestroy(&rstr_q); CeedChk(ierr);
665eaf62fffSJeremy L Thompson 
666eaf62fffSJeremy L Thompson   // we store B_mat_in, B_mat_out, BTD, elem_mat in row-major order
667eaf62fffSJeremy L Thompson   CeedScalar B_mat_in[(num_qpts * num_eval_mode_in) * elem_size];
668eaf62fffSJeremy L Thompson   CeedScalar B_mat_out[(num_qpts * num_eval_mode_out) * elem_size];
669eaf62fffSJeremy L Thompson   CeedScalar D_mat[num_eval_mode_out * num_eval_mode_in *
670eaf62fffSJeremy L Thompson                                      num_qpts]; // logically 3-tensor
671eaf62fffSJeremy L Thompson   CeedScalar BTD[elem_size * num_qpts*num_eval_mode_in];
672eaf62fffSJeremy L Thompson   CeedScalar elem_mat[elem_size * elem_size];
673eaf62fffSJeremy L Thompson   int count = 0;
674eaf62fffSJeremy L Thompson   CeedScalar *vals;
6759c774eddSJeremy L Thompson   ierr = CeedVectorGetArrayWrite(values, CEED_MEM_HOST, &vals); CeedChk(ierr);
676eaf62fffSJeremy L Thompson   for (int e = 0; e < num_elem; ++e) {
677eaf62fffSJeremy L Thompson     for (int comp_in = 0; comp_in < num_comp; ++comp_in) {
678eaf62fffSJeremy L Thompson       for (int comp_out = 0; comp_out < num_comp; ++comp_out) {
679eaf62fffSJeremy L Thompson         for (int ell = 0; ell < (num_qpts * num_eval_mode_in) * elem_size; ++ell) {
680eaf62fffSJeremy L Thompson           B_mat_in[ell] = 0.0;
681eaf62fffSJeremy L Thompson         }
682eaf62fffSJeremy L Thompson         for (int ell = 0; ell < (num_qpts * num_eval_mode_out) * elem_size; ++ell) {
683eaf62fffSJeremy L Thompson           B_mat_out[ell] = 0.0;
684eaf62fffSJeremy L Thompson         }
685eaf62fffSJeremy L Thompson         // Store block-diagonal D matrix as collection of small dense blocks
686eaf62fffSJeremy L Thompson         for (int ell = 0; ell < num_eval_mode_in*num_eval_mode_out*num_qpts; ++ell) {
687eaf62fffSJeremy L Thompson           D_mat[ell] = 0.0;
688eaf62fffSJeremy L Thompson         }
689eaf62fffSJeremy L Thompson         // form element matrix itself (for each block component)
690eaf62fffSJeremy L Thompson         for (int ell = 0; ell < elem_size*elem_size; ++ell) {
691eaf62fffSJeremy L Thompson           elem_mat[ell] = 0.0;
692eaf62fffSJeremy L Thompson         }
693eaf62fffSJeremy L Thompson         for (int q = 0; q < num_qpts; ++q) {
694eaf62fffSJeremy L Thompson           for (int n = 0; n < elem_size; ++n) {
695eaf62fffSJeremy L Thompson             CeedInt d_in = -1;
696eaf62fffSJeremy L Thompson             for (int e_in = 0; e_in < num_eval_mode_in; ++e_in) {
697eaf62fffSJeremy L Thompson               const int qq = num_eval_mode_in*q;
698eaf62fffSJeremy L Thompson               if (eval_mode_in[e_in] == CEED_EVAL_INTERP) {
699eaf62fffSJeremy L Thompson                 B_mat_in[(qq+e_in)*elem_size + n] += interp_in[q * elem_size + n];
700eaf62fffSJeremy L Thompson               } else if (eval_mode_in[e_in] == CEED_EVAL_GRAD) {
701eaf62fffSJeremy L Thompson                 d_in += 1;
702eaf62fffSJeremy L Thompson                 B_mat_in[(qq+e_in)*elem_size + n] +=
703eaf62fffSJeremy L Thompson                   grad_in[(d_in*num_qpts+q) * elem_size + n];
704eaf62fffSJeremy L Thompson               } else {
705eaf62fffSJeremy L Thompson                 // LCOV_EXCL_START
706eaf62fffSJeremy L Thompson                 return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Not implemented!");
707eaf62fffSJeremy L Thompson                 // LCOV_EXCL_STOP
708eaf62fffSJeremy L Thompson               }
709eaf62fffSJeremy L Thompson             }
710eaf62fffSJeremy L Thompson             CeedInt d_out = -1;
711eaf62fffSJeremy L Thompson             for (int e_out = 0; e_out < num_eval_mode_out; ++e_out) {
712eaf62fffSJeremy L Thompson               const int qq = num_eval_mode_out*q;
713eaf62fffSJeremy L Thompson               if (eval_mode_out[e_out] == CEED_EVAL_INTERP) {
714eaf62fffSJeremy L Thompson                 B_mat_out[(qq+e_out)*elem_size + n] += interp_in[q * elem_size + n];
715eaf62fffSJeremy L Thompson               } else if (eval_mode_out[e_out] == CEED_EVAL_GRAD) {
716eaf62fffSJeremy L Thompson                 d_out += 1;
717eaf62fffSJeremy L Thompson                 B_mat_out[(qq+e_out)*elem_size + n] +=
718eaf62fffSJeremy L Thompson                   grad_in[(d_out*num_qpts+q) * elem_size + n];
719eaf62fffSJeremy L Thompson               } else {
720eaf62fffSJeremy L Thompson                 // LCOV_EXCL_START
721eaf62fffSJeremy L Thompson                 return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Not implemented!");
722eaf62fffSJeremy L Thompson                 // LCOV_EXCL_STOP
723eaf62fffSJeremy L Thompson               }
724eaf62fffSJeremy L Thompson             }
725eaf62fffSJeremy L Thompson           }
726eaf62fffSJeremy L Thompson           for (int ei = 0; ei < num_eval_mode_out; ++ei) {
727eaf62fffSJeremy L Thompson             for (int ej = 0; ej < num_eval_mode_in; ++ej) {
728eaf62fffSJeremy L Thompson               const int eval_mode_index = ((ei*num_comp+comp_in)*num_eval_mode_in+ej)*num_comp
729eaf62fffSJeremy L Thompson                                           +comp_out;
730eaf62fffSJeremy L Thompson               const int index = q*layout_qf[0] + eval_mode_index*layout_qf[1] +
731eaf62fffSJeremy L Thompson                                 e*layout_qf[2];
732eaf62fffSJeremy L Thompson               D_mat[(ei*num_eval_mode_in+ej)*num_qpts + q] += assembled_qf_array[index];
733eaf62fffSJeremy L Thompson             }
734eaf62fffSJeremy L Thompson           }
735eaf62fffSJeremy L Thompson         }
736eaf62fffSJeremy L Thompson         // Compute B^T*D
737eaf62fffSJeremy L Thompson         for (int ell = 0; ell < elem_size*num_qpts*num_eval_mode_in; ++ell) {
738eaf62fffSJeremy L Thompson           BTD[ell] = 0.0;
739eaf62fffSJeremy L Thompson         }
740eaf62fffSJeremy L Thompson         for (int j = 0; j<elem_size; ++j) {
741eaf62fffSJeremy L Thompson           for (int q = 0; q<num_qpts; ++q) {
742eaf62fffSJeremy L Thompson             int qq = num_eval_mode_out*q;
743eaf62fffSJeremy L Thompson             for (int ei = 0; ei < num_eval_mode_in; ++ei) {
744eaf62fffSJeremy L Thompson               for (int ej = 0; ej < num_eval_mode_out; ++ej) {
745eaf62fffSJeremy L Thompson                 BTD[j*(num_qpts*num_eval_mode_in) + (qq+ei)] +=
746eaf62fffSJeremy L Thompson                   B_mat_out[(qq+ej)*elem_size + j] * D_mat[(ei*num_eval_mode_in+ej)*num_qpts + q];
747eaf62fffSJeremy L Thompson               }
748eaf62fffSJeremy L Thompson             }
749eaf62fffSJeremy L Thompson           }
750eaf62fffSJeremy L Thompson         }
751eaf62fffSJeremy L Thompson 
752eaf62fffSJeremy L Thompson         ierr = CeedMatrixMultiply(ceed, BTD, B_mat_in, elem_mat, elem_size,
753eaf62fffSJeremy L Thompson                                   elem_size, num_qpts*num_eval_mode_in); CeedChk(ierr);
754eaf62fffSJeremy L Thompson 
755eaf62fffSJeremy L Thompson         // put element matrix in coordinate data structure
756eaf62fffSJeremy L Thompson         for (int i = 0; i < elem_size; ++i) {
757eaf62fffSJeremy L Thompson           for (int j = 0; j < elem_size; ++j) {
758eaf62fffSJeremy L Thompson             vals[offset + count] = elem_mat[i*elem_size + j];
759eaf62fffSJeremy L Thompson             count++;
760eaf62fffSJeremy L Thompson           }
761eaf62fffSJeremy L Thompson         }
762eaf62fffSJeremy L Thompson       }
763eaf62fffSJeremy L Thompson     }
764eaf62fffSJeremy L Thompson   }
765eaf62fffSJeremy L Thompson   if (count != local_num_entries)
766eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
767eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_MAJOR, "Error computing entries");
768eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
769eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArray(values, &vals); CeedChk(ierr);
770eaf62fffSJeremy L Thompson 
771eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArrayRead(assembled_qf, &assembled_qf_array);
772eaf62fffSJeremy L Thompson   CeedChk(ierr);
773eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&assembled_qf); CeedChk(ierr);
774eaf62fffSJeremy L Thompson   ierr = CeedFree(&eval_mode_in); CeedChk(ierr);
775eaf62fffSJeremy L Thompson   ierr = CeedFree(&eval_mode_out); CeedChk(ierr);
776eaf62fffSJeremy L Thompson 
777eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
778eaf62fffSJeremy L Thompson }
779eaf62fffSJeremy L Thompson 
780eaf62fffSJeremy L Thompson /**
781eaf62fffSJeremy L Thompson   @brief Count number of entries for assembled CeedOperator
782eaf62fffSJeremy L Thompson 
783eaf62fffSJeremy L Thompson   @param[in] op            CeedOperator to assemble
784eaf62fffSJeremy L Thompson   @param[out] num_entries  Number of entries in assembled representation
785eaf62fffSJeremy L Thompson 
786eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
787eaf62fffSJeremy L Thompson 
788eaf62fffSJeremy L Thompson   @ref Utility
789eaf62fffSJeremy L Thompson **/
790eaf62fffSJeremy L Thompson static int CeedSingleOperatorAssemblyCountEntries(CeedOperator op,
791eaf62fffSJeremy L Thompson     CeedInt *num_entries) {
792eaf62fffSJeremy L Thompson   int ierr;
793eaf62fffSJeremy L Thompson   CeedElemRestriction rstr;
794eaf62fffSJeremy L Thompson   CeedInt num_elem, elem_size, num_comp;
795eaf62fffSJeremy L Thompson 
796f04ea552SJeremy L Thompson   if (op->is_composite)
797eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
798eaf62fffSJeremy L Thompson     return CeedError(op->ceed, CEED_ERROR_UNSUPPORTED,
799eaf62fffSJeremy L Thompson                      "Composite operator not supported");
800eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
801eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetActiveElemRestriction(op, &rstr); CeedChk(ierr);
802eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumElements(rstr, &num_elem); CeedChk(ierr);
803eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetElementSize(rstr, &elem_size); CeedChk(ierr);
804eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumComponents(rstr, &num_comp); CeedChk(ierr);
805eaf62fffSJeremy L Thompson   *num_entries = elem_size*num_comp * elem_size*num_comp * num_elem;
806eaf62fffSJeremy L Thompson 
807eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
808eaf62fffSJeremy L Thompson }
809eaf62fffSJeremy L Thompson 
810eaf62fffSJeremy L Thompson /**
811eaf62fffSJeremy L Thompson   @brief Common code for creating a multigrid coarse operator and level
812eaf62fffSJeremy L Thompson            transfer operators for a CeedOperator
813eaf62fffSJeremy L Thompson 
814eaf62fffSJeremy L Thompson   @param[in] op_fine       Fine grid operator
815eaf62fffSJeremy L Thompson   @param[in] p_mult_fine   L-vector multiplicity in parallel gather/scatter
816eaf62fffSJeremy L Thompson   @param[in] rstr_coarse   Coarse grid restriction
817eaf62fffSJeremy L Thompson   @param[in] basis_coarse  Coarse grid active vector basis
818eaf62fffSJeremy L Thompson   @param[in] basis_c_to_f  Basis for coarse to fine interpolation
819eaf62fffSJeremy L Thompson   @param[out] op_coarse    Coarse grid operator
820eaf62fffSJeremy L Thompson   @param[out] op_prolong   Coarse to fine operator
821eaf62fffSJeremy L Thompson   @param[out] op_restrict  Fine to coarse operator
822eaf62fffSJeremy L Thompson 
823eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
824eaf62fffSJeremy L Thompson 
825eaf62fffSJeremy L Thompson   @ref Developer
826eaf62fffSJeremy L Thompson **/
827eaf62fffSJeremy L Thompson static int CeedSingleOperatorMultigridLevel(CeedOperator op_fine,
828eaf62fffSJeremy L Thompson     CeedVector p_mult_fine, CeedElemRestriction rstr_coarse, CeedBasis basis_coarse,
829eaf62fffSJeremy L Thompson     CeedBasis basis_c_to_f, CeedOperator *op_coarse, CeedOperator *op_prolong,
830eaf62fffSJeremy L Thompson     CeedOperator *op_restrict) {
831eaf62fffSJeremy L Thompson   int ierr;
832eaf62fffSJeremy L Thompson   Ceed ceed;
833eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetCeed(op_fine, &ceed); CeedChk(ierr);
834eaf62fffSJeremy L Thompson 
835eaf62fffSJeremy L Thompson   // Check for composite operator
836eaf62fffSJeremy L Thompson   bool is_composite;
837eaf62fffSJeremy L Thompson   ierr = CeedOperatorIsComposite(op_fine, &is_composite); CeedChk(ierr);
838eaf62fffSJeremy L Thompson   if (is_composite)
839eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
840eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_UNSUPPORTED,
841eaf62fffSJeremy L Thompson                      "Automatic multigrid setup for composite operators not supported");
842eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
843eaf62fffSJeremy L Thompson 
844eaf62fffSJeremy L Thompson   // Coarse Grid
845eaf62fffSJeremy L Thompson   ierr = CeedOperatorCreate(ceed, op_fine->qf, op_fine->dqf, op_fine->dqfT,
846eaf62fffSJeremy L Thompson                             op_coarse); CeedChk(ierr);
847eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_fine = NULL;
848eaf62fffSJeremy L Thompson   // -- Clone input fields
849eaf62fffSJeremy L Thompson   for (int i = 0; i < op_fine->qf->num_input_fields; i++) {
850eaf62fffSJeremy L Thompson     if (op_fine->input_fields[i]->vec == CEED_VECTOR_ACTIVE) {
851eaf62fffSJeremy L Thompson       rstr_fine = op_fine->input_fields[i]->elem_restr;
852eaf62fffSJeremy L Thompson       ierr = CeedOperatorSetField(*op_coarse, op_fine->input_fields[i]->field_name,
853eaf62fffSJeremy L Thompson                                   rstr_coarse, basis_coarse, CEED_VECTOR_ACTIVE);
854eaf62fffSJeremy L Thompson       CeedChk(ierr);
855eaf62fffSJeremy L Thompson     } else {
856eaf62fffSJeremy L Thompson       ierr = CeedOperatorSetField(*op_coarse, op_fine->input_fields[i]->field_name,
857eaf62fffSJeremy L Thompson                                   op_fine->input_fields[i]->elem_restr,
858eaf62fffSJeremy L Thompson                                   op_fine->input_fields[i]->basis,
859eaf62fffSJeremy L Thompson                                   op_fine->input_fields[i]->vec); CeedChk(ierr);
860eaf62fffSJeremy L Thompson     }
861eaf62fffSJeremy L Thompson   }
862eaf62fffSJeremy L Thompson   // -- Clone output fields
863eaf62fffSJeremy L Thompson   for (int i = 0; i < op_fine->qf->num_output_fields; i++) {
864eaf62fffSJeremy L Thompson     if (op_fine->output_fields[i]->vec == CEED_VECTOR_ACTIVE) {
865eaf62fffSJeremy L Thompson       ierr = CeedOperatorSetField(*op_coarse, op_fine->output_fields[i]->field_name,
866eaf62fffSJeremy L Thompson                                   rstr_coarse, basis_coarse, CEED_VECTOR_ACTIVE);
867eaf62fffSJeremy L Thompson       CeedChk(ierr);
868eaf62fffSJeremy L Thompson     } else {
869eaf62fffSJeremy L Thompson       ierr = CeedOperatorSetField(*op_coarse, op_fine->output_fields[i]->field_name,
870eaf62fffSJeremy L Thompson                                   op_fine->output_fields[i]->elem_restr,
871eaf62fffSJeremy L Thompson                                   op_fine->output_fields[i]->basis,
872eaf62fffSJeremy L Thompson                                   op_fine->output_fields[i]->vec); CeedChk(ierr);
873eaf62fffSJeremy L Thompson     }
874eaf62fffSJeremy L Thompson   }
875af99e877SJeremy L Thompson   // -- Clone QFunctionAssemblyData
876af99e877SJeremy L Thompson   ierr = CeedQFunctionAssemblyDataReferenceCopy(op_fine->qf_assembled,
877af99e877SJeremy L Thompson          &(*op_coarse)->qf_assembled); CeedChk(ierr);
878eaf62fffSJeremy L Thompson 
879eaf62fffSJeremy L Thompson   // Multiplicity vector
880eaf62fffSJeremy L Thompson   CeedVector mult_vec, mult_e_vec;
881eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionCreateVector(rstr_fine, &mult_vec, &mult_e_vec);
882eaf62fffSJeremy L Thompson   CeedChk(ierr);
883eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(mult_e_vec, 0.0); CeedChk(ierr);
884eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionApply(rstr_fine, CEED_NOTRANSPOSE, p_mult_fine,
885eaf62fffSJeremy L Thompson                                   mult_e_vec, CEED_REQUEST_IMMEDIATE); CeedChk(ierr);
886eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(mult_vec, 0.0); CeedChk(ierr);
887eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionApply(rstr_fine, CEED_TRANSPOSE, mult_e_vec, mult_vec,
888eaf62fffSJeremy L Thompson                                   CEED_REQUEST_IMMEDIATE); CeedChk(ierr);
889eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&mult_e_vec); CeedChk(ierr);
890eaf62fffSJeremy L Thompson   ierr = CeedVectorReciprocal(mult_vec); CeedChk(ierr);
891eaf62fffSJeremy L Thompson 
892eaf62fffSJeremy L Thompson   // Restriction
893eaf62fffSJeremy L Thompson   CeedInt num_comp;
894eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumComponents(basis_coarse, &num_comp); CeedChk(ierr);
895eaf62fffSJeremy L Thompson   CeedQFunction qf_restrict;
896eaf62fffSJeremy L Thompson   ierr = CeedQFunctionCreateInteriorByName(ceed, "Scale", &qf_restrict);
897eaf62fffSJeremy L Thompson   CeedChk(ierr);
898eaf62fffSJeremy L Thompson   CeedInt *num_comp_r_data;
899eaf62fffSJeremy L Thompson   ierr = CeedCalloc(1, &num_comp_r_data); CeedChk(ierr);
900eaf62fffSJeremy L Thompson   num_comp_r_data[0] = num_comp;
901eaf62fffSJeremy L Thompson   CeedQFunctionContext ctx_r;
902eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextCreate(ceed, &ctx_r); CeedChk(ierr);
903eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextSetData(ctx_r, CEED_MEM_HOST, CEED_OWN_POINTER,
904eaf62fffSJeremy L Thompson                                      sizeof(*num_comp_r_data), num_comp_r_data);
905eaf62fffSJeremy L Thompson   CeedChk(ierr);
906eaf62fffSJeremy L Thompson   ierr = CeedQFunctionSetContext(qf_restrict, ctx_r); CeedChk(ierr);
907eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextDestroy(&ctx_r); CeedChk(ierr);
908eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddInput(qf_restrict, "input", num_comp, CEED_EVAL_NONE);
909eaf62fffSJeremy L Thompson   CeedChk(ierr);
910eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddInput(qf_restrict, "scale", num_comp, CEED_EVAL_NONE);
911eaf62fffSJeremy L Thompson   CeedChk(ierr);
912eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddOutput(qf_restrict, "output", num_comp,
913eaf62fffSJeremy L Thompson                                 CEED_EVAL_INTERP); CeedChk(ierr);
914eaf62fffSJeremy L Thompson 
915eaf62fffSJeremy L Thompson   ierr = CeedOperatorCreate(ceed, qf_restrict, CEED_QFUNCTION_NONE,
916eaf62fffSJeremy L Thompson                             CEED_QFUNCTION_NONE, op_restrict);
917eaf62fffSJeremy L Thompson   CeedChk(ierr);
918eaf62fffSJeremy L Thompson   ierr = CeedOperatorSetField(*op_restrict, "input", rstr_fine,
919eaf62fffSJeremy L Thompson                               CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE);
920eaf62fffSJeremy L Thompson   CeedChk(ierr);
921eaf62fffSJeremy L Thompson   ierr = CeedOperatorSetField(*op_restrict, "scale", rstr_fine,
922eaf62fffSJeremy L Thompson                               CEED_BASIS_COLLOCATED, mult_vec);
923eaf62fffSJeremy L Thompson   CeedChk(ierr);
924eaf62fffSJeremy L Thompson   ierr = CeedOperatorSetField(*op_restrict, "output", rstr_coarse, basis_c_to_f,
925eaf62fffSJeremy L Thompson                               CEED_VECTOR_ACTIVE); CeedChk(ierr);
926eaf62fffSJeremy L Thompson 
927eaf62fffSJeremy L Thompson   // Prolongation
928eaf62fffSJeremy L Thompson   CeedQFunction qf_prolong;
929eaf62fffSJeremy L Thompson   ierr = CeedQFunctionCreateInteriorByName(ceed, "Scale", &qf_prolong);
930eaf62fffSJeremy L Thompson   CeedChk(ierr);
931eaf62fffSJeremy L Thompson   CeedInt *num_comp_p_data;
932eaf62fffSJeremy L Thompson   ierr = CeedCalloc(1, &num_comp_p_data); CeedChk(ierr);
933eaf62fffSJeremy L Thompson   num_comp_p_data[0] = num_comp;
934eaf62fffSJeremy L Thompson   CeedQFunctionContext ctx_p;
935eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextCreate(ceed, &ctx_p); CeedChk(ierr);
936eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextSetData(ctx_p, CEED_MEM_HOST, CEED_OWN_POINTER,
937eaf62fffSJeremy L Thompson                                      sizeof(*num_comp_p_data), num_comp_p_data);
938eaf62fffSJeremy L Thompson   CeedChk(ierr);
939eaf62fffSJeremy L Thompson   ierr = CeedQFunctionSetContext(qf_prolong, ctx_p); CeedChk(ierr);
940eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextDestroy(&ctx_p); CeedChk(ierr);
941eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddInput(qf_prolong, "input", num_comp, CEED_EVAL_INTERP);
942eaf62fffSJeremy L Thompson   CeedChk(ierr);
943eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddInput(qf_prolong, "scale", num_comp, CEED_EVAL_NONE);
944eaf62fffSJeremy L Thompson   CeedChk(ierr);
945eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddOutput(qf_prolong, "output", num_comp, CEED_EVAL_NONE);
946eaf62fffSJeremy L Thompson   CeedChk(ierr);
947eaf62fffSJeremy L Thompson 
948eaf62fffSJeremy L Thompson   ierr = CeedOperatorCreate(ceed, qf_prolong, CEED_QFUNCTION_NONE,
949eaf62fffSJeremy L Thompson                             CEED_QFUNCTION_NONE, op_prolong);
950eaf62fffSJeremy L Thompson   CeedChk(ierr);
951eaf62fffSJeremy L Thompson   ierr = CeedOperatorSetField(*op_prolong, "input", rstr_coarse, basis_c_to_f,
952eaf62fffSJeremy L Thompson                               CEED_VECTOR_ACTIVE); CeedChk(ierr);
953eaf62fffSJeremy L Thompson   ierr = CeedOperatorSetField(*op_prolong, "scale", rstr_fine,
954eaf62fffSJeremy L Thompson                               CEED_BASIS_COLLOCATED, mult_vec);
955eaf62fffSJeremy L Thompson   CeedChk(ierr);
956eaf62fffSJeremy L Thompson   ierr = CeedOperatorSetField(*op_prolong, "output", rstr_fine,
957eaf62fffSJeremy L Thompson                               CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE);
958eaf62fffSJeremy L Thompson   CeedChk(ierr);
959eaf62fffSJeremy L Thompson 
960eaf62fffSJeremy L Thompson   // Cleanup
961eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&mult_vec); CeedChk(ierr);
962eaf62fffSJeremy L Thompson   ierr = CeedBasisDestroy(&basis_c_to_f); CeedChk(ierr);
963eaf62fffSJeremy L Thompson   ierr = CeedQFunctionDestroy(&qf_restrict); CeedChk(ierr);
964eaf62fffSJeremy L Thompson   ierr = CeedQFunctionDestroy(&qf_prolong); CeedChk(ierr);
965eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
966eaf62fffSJeremy L Thompson }
967eaf62fffSJeremy L Thompson 
968eaf62fffSJeremy L Thompson /**
969eaf62fffSJeremy L Thompson   @brief Build 1D mass matrix and Laplacian with perturbation
970eaf62fffSJeremy L Thompson 
971eaf62fffSJeremy L Thompson   @param[in] interp_1d    Interpolation matrix in one dimension
972eaf62fffSJeremy L Thompson   @param[in] grad_1d      Gradient matrix in one dimension
973eaf62fffSJeremy L Thompson   @param[in] q_weight_1d  Quadrature weights in one dimension
974eaf62fffSJeremy L Thompson   @param[in] P_1d         Number of basis nodes in one dimension
975eaf62fffSJeremy L Thompson   @param[in] Q_1d         Number of quadrature points in one dimension
976eaf62fffSJeremy L Thompson   @param[in] dim          Dimension of basis
977eaf62fffSJeremy L Thompson   @param[out] mass        Assembled mass matrix in one dimension
978eaf62fffSJeremy L Thompson   @param[out] laplace     Assembled perturbed Laplacian in one dimension
979eaf62fffSJeremy L Thompson 
980eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
981eaf62fffSJeremy L Thompson 
982eaf62fffSJeremy L Thompson   @ref Developer
983eaf62fffSJeremy L Thompson **/
984eaf62fffSJeremy L Thompson CeedPragmaOptimizeOff
985eaf62fffSJeremy L Thompson static int CeedBuildMassLaplace(const CeedScalar *interp_1d,
986eaf62fffSJeremy L Thompson                                 const CeedScalar *grad_1d,
987eaf62fffSJeremy L Thompson                                 const CeedScalar *q_weight_1d, CeedInt P_1d,
988eaf62fffSJeremy L Thompson                                 CeedInt Q_1d, CeedInt dim,
989eaf62fffSJeremy L Thompson                                 CeedScalar *mass, CeedScalar *laplace) {
990eaf62fffSJeremy L Thompson 
991eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<P_1d; i++)
992eaf62fffSJeremy L Thompson     for (CeedInt j=0; j<P_1d; j++) {
993eaf62fffSJeremy L Thompson       CeedScalar sum = 0.0;
994eaf62fffSJeremy L Thompson       for (CeedInt k=0; k<Q_1d; k++)
995eaf62fffSJeremy L Thompson         sum += interp_1d[k*P_1d+i]*q_weight_1d[k]*interp_1d[k*P_1d+j];
996eaf62fffSJeremy L Thompson       mass[i+j*P_1d] = sum;
997eaf62fffSJeremy L Thompson     }
998eaf62fffSJeremy L Thompson   // -- Laplacian
999eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<P_1d; i++)
1000eaf62fffSJeremy L Thompson     for (CeedInt j=0; j<P_1d; j++) {
1001eaf62fffSJeremy L Thompson       CeedScalar sum = 0.0;
1002eaf62fffSJeremy L Thompson       for (CeedInt k=0; k<Q_1d; k++)
1003eaf62fffSJeremy L Thompson         sum += grad_1d[k*P_1d+i]*q_weight_1d[k]*grad_1d[k*P_1d+j];
1004eaf62fffSJeremy L Thompson       laplace[i+j*P_1d] = sum;
1005eaf62fffSJeremy L Thompson     }
1006eaf62fffSJeremy L Thompson   CeedScalar perturbation = dim>2 ? 1e-6 : 1e-4;
1007eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<P_1d; i++)
1008eaf62fffSJeremy L Thompson     laplace[i+P_1d*i] += perturbation;
1009eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1010eaf62fffSJeremy L Thompson }
1011eaf62fffSJeremy L Thompson CeedPragmaOptimizeOn
1012eaf62fffSJeremy L Thompson 
1013eaf62fffSJeremy L Thompson /// @}
1014eaf62fffSJeremy L Thompson 
1015eaf62fffSJeremy L Thompson /// ----------------------------------------------------------------------------
1016480fae85SJeremy L Thompson /// CeedOperator Backend API
1017480fae85SJeremy L Thompson /// ----------------------------------------------------------------------------
1018480fae85SJeremy L Thompson /// @addtogroup CeedOperatorBackend
1019480fae85SJeremy L Thompson /// @{
1020480fae85SJeremy L Thompson 
1021480fae85SJeremy L Thompson /**
1022480fae85SJeremy L Thompson   @brief Create object holding CeedQFunction assembly data for CeedOperator
1023480fae85SJeremy L Thompson 
1024480fae85SJeremy L Thompson   @param[in] ceed  A Ceed object where the CeedQFunctionAssemblyData will be created
1025480fae85SJeremy L Thompson   @param[out] data Address of the variable where the newly created
1026480fae85SJeremy L Thompson                      CeedQFunctionAssemblyData will be stored
1027480fae85SJeremy L Thompson 
1028480fae85SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1029480fae85SJeremy L Thompson 
1030480fae85SJeremy L Thompson   @ref Backend
1031480fae85SJeremy L Thompson **/
1032480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataCreate(Ceed ceed,
1033480fae85SJeremy L Thompson                                     CeedQFunctionAssemblyData *data) {
1034480fae85SJeremy L Thompson   int ierr;
1035480fae85SJeremy L Thompson 
1036480fae85SJeremy L Thompson   ierr = CeedCalloc(1, data); CeedChk(ierr);
1037480fae85SJeremy L Thompson   (*data)->ref_count = 1;
1038480fae85SJeremy L Thompson   (*data)->ceed = ceed;
1039480fae85SJeremy L Thompson   ierr = CeedReference(ceed); CeedChk(ierr);
1040480fae85SJeremy L Thompson 
1041480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1042480fae85SJeremy L Thompson }
1043480fae85SJeremy L Thompson 
1044480fae85SJeremy L Thompson /**
1045480fae85SJeremy L Thompson   @brief Increment the reference counter for a CeedQFunctionAssemblyData
1046480fae85SJeremy L Thompson 
1047480fae85SJeremy L Thompson   @param data  CeedQFunctionAssemblyData to increment the reference counter
1048480fae85SJeremy L Thompson 
1049480fae85SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1050480fae85SJeremy L Thompson 
1051480fae85SJeremy L Thompson   @ref Backend
1052480fae85SJeremy L Thompson **/
1053480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataReference(CeedQFunctionAssemblyData data) {
1054480fae85SJeremy L Thompson   data->ref_count++;
1055480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1056480fae85SJeremy L Thompson }
1057480fae85SJeremy L Thompson 
1058480fae85SJeremy L Thompson /**
1059beecbf24SJeremy L Thompson   @brief Set re-use of CeedQFunctionAssemblyData
10608b919e6bSJeremy L Thompson 
1061beecbf24SJeremy L Thompson   @param data       CeedQFunctionAssemblyData to mark for reuse
1062beecbf24SJeremy L Thompson   @param reuse_data Boolean flag indicating data re-use
10638b919e6bSJeremy L Thompson 
10648b919e6bSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
10658b919e6bSJeremy L Thompson 
10668b919e6bSJeremy L Thompson   @ref Backend
10678b919e6bSJeremy L Thompson **/
1068beecbf24SJeremy L Thompson int CeedQFunctionAssemblyDataSetReuse(CeedQFunctionAssemblyData data,
1069beecbf24SJeremy L Thompson                                       bool reuse_data) {
1070beecbf24SJeremy L Thompson   data->reuse_data = reuse_data;
1071beecbf24SJeremy L Thompson   data->needs_data_update = true;
1072beecbf24SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1073beecbf24SJeremy L Thompson }
1074beecbf24SJeremy L Thompson 
1075beecbf24SJeremy L Thompson /**
1076beecbf24SJeremy L Thompson   @brief Mark QFunctionAssemblyData as stale
1077beecbf24SJeremy L Thompson 
1078beecbf24SJeremy L Thompson   @param data              CeedQFunctionAssemblyData to mark as stale
1079beecbf24SJeremy L Thompson   @param needs_data_update Boolean flag indicating if update is needed or completed
1080beecbf24SJeremy L Thompson 
1081beecbf24SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1082beecbf24SJeremy L Thompson 
1083beecbf24SJeremy L Thompson   @ref Backend
1084beecbf24SJeremy L Thompson **/
1085beecbf24SJeremy L Thompson int CeedQFunctionAssemblyDataSetUpdateNeeded(CeedQFunctionAssemblyData data,
1086beecbf24SJeremy L Thompson     bool needs_data_update) {
1087beecbf24SJeremy L Thompson   data->needs_data_update = needs_data_update;
10888b919e6bSJeremy L Thompson   return CEED_ERROR_SUCCESS;
10898b919e6bSJeremy L Thompson }
10908b919e6bSJeremy L Thompson 
10918b919e6bSJeremy L Thompson /**
10928b919e6bSJeremy L Thompson   @brief Determine if QFunctionAssemblyData needs update
10938b919e6bSJeremy L Thompson 
10948b919e6bSJeremy L Thompson   @param[in] data              CeedQFunctionAssemblyData to mark as stale
10958b919e6bSJeremy L Thompson   @param[out] is_update_needed Boolean flag indicating if re-assembly is required
10968b919e6bSJeremy L Thompson 
10978b919e6bSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
10988b919e6bSJeremy L Thompson 
10998b919e6bSJeremy L Thompson   @ref Backend
11008b919e6bSJeremy L Thompson **/
11018b919e6bSJeremy L Thompson int CeedQFunctionAssemblyDataIsUpdateNeeded(CeedQFunctionAssemblyData data,
11028b919e6bSJeremy L Thompson     bool *is_update_needed) {
1103beecbf24SJeremy L Thompson   *is_update_needed = !data->reuse_data || data->needs_data_update;
11048b919e6bSJeremy L Thompson   return CEED_ERROR_SUCCESS;
11058b919e6bSJeremy L Thompson }
11068b919e6bSJeremy L Thompson 
11078b919e6bSJeremy L Thompson /**
1108480fae85SJeremy L Thompson   @brief Copy the pointer to a CeedQFunctionAssemblyData. Both pointers should
1109480fae85SJeremy L Thompson            be destroyed with `CeedCeedQFunctionAssemblyDataDestroy()`;
1110480fae85SJeremy L Thompson            Note: If `*data_copy` is non-NULL, then it is assumed that
1111480fae85SJeremy L Thompson            `*data_copy` is a pointer to a CeedQFunctionAssemblyData. This
1112480fae85SJeremy L Thompson            CeedQFunctionAssemblyData will be destroyed if `*data_copy` is
1113480fae85SJeremy L Thompson            the only reference to this CeedQFunctionAssemblyData.
1114480fae85SJeremy L Thompson 
1115480fae85SJeremy L Thompson   @param data            CeedQFunctionAssemblyData to copy reference to
1116480fae85SJeremy L Thompson   @param[out] data_copy  Variable to store copied reference
1117480fae85SJeremy L Thompson 
1118480fae85SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1119480fae85SJeremy L Thompson 
1120480fae85SJeremy L Thompson   @ref Backend
1121480fae85SJeremy L Thompson **/
1122480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataReferenceCopy(CeedQFunctionAssemblyData data,
1123480fae85SJeremy L Thompson     CeedQFunctionAssemblyData *data_copy) {
1124480fae85SJeremy L Thompson   int ierr;
1125480fae85SJeremy L Thompson 
1126480fae85SJeremy L Thompson   ierr = CeedQFunctionAssemblyDataReference(data); CeedChk(ierr);
1127480fae85SJeremy L Thompson   ierr = CeedQFunctionAssemblyDataDestroy(data_copy); CeedChk(ierr);
1128480fae85SJeremy L Thompson   *data_copy = data;
1129480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1130480fae85SJeremy L Thompson }
1131480fae85SJeremy L Thompson 
1132480fae85SJeremy L Thompson /**
1133480fae85SJeremy L Thompson   @brief Get setup status for internal objects for CeedQFunctionAssemblyData
1134480fae85SJeremy L Thompson 
1135480fae85SJeremy L Thompson   @param[in] data      CeedQFunctionAssemblyData to retreive status
1136480fae85SJeremy L Thompson   @param[out] is_setup Boolean flag for setup status
1137480fae85SJeremy L Thompson 
1138480fae85SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1139480fae85SJeremy L Thompson 
1140480fae85SJeremy L Thompson   @ref Backend
1141480fae85SJeremy L Thompson **/
1142480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataIsSetup(CeedQFunctionAssemblyData data,
1143480fae85SJeremy L Thompson                                      bool *is_setup) {
1144480fae85SJeremy L Thompson   *is_setup = data->is_setup;
1145480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1146480fae85SJeremy L Thompson }
1147480fae85SJeremy L Thompson 
1148480fae85SJeremy L Thompson /**
1149480fae85SJeremy L Thompson   @brief Set internal objects for CeedQFunctionAssemblyData
1150480fae85SJeremy L Thompson 
1151480fae85SJeremy L Thompson   @param[in] data  CeedQFunctionAssemblyData to set objects
1152480fae85SJeremy L Thompson   @param[in] vec   CeedVector to store assembled CeedQFunction at quadrature points
1153480fae85SJeremy L Thompson   @param[in] rstr  CeedElemRestriction for CeedVector containing assembled CeedQFunction
1154480fae85SJeremy L Thompson 
1155480fae85SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1156480fae85SJeremy L Thompson 
1157480fae85SJeremy L Thompson   @ref Backend
1158480fae85SJeremy L Thompson **/
1159480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataSetObjects(CeedQFunctionAssemblyData data,
1160480fae85SJeremy L Thompson                                         CeedVector vec, CeedElemRestriction rstr) {
1161480fae85SJeremy L Thompson   int ierr;
1162480fae85SJeremy L Thompson 
11632efa2d85SJeremy L Thompson   ierr = CeedVectorReferenceCopy(vec, &data->vec); CeedChk(ierr);
11642efa2d85SJeremy L Thompson   ierr = CeedElemRestrictionReferenceCopy(rstr, &data->rstr); CeedChk(ierr);
1165480fae85SJeremy L Thompson 
1166480fae85SJeremy L Thompson   data->is_setup = true;
1167480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1168480fae85SJeremy L Thompson }
1169480fae85SJeremy L Thompson 
1170480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataGetObjects(CeedQFunctionAssemblyData data,
1171480fae85SJeremy L Thompson                                         CeedVector *vec, CeedElemRestriction *rstr) {
11722efa2d85SJeremy L Thompson   int ierr;
11732efa2d85SJeremy L Thompson 
1174480fae85SJeremy L Thompson   if (!data->is_setup)
1175480fae85SJeremy L Thompson     // LCOV_EXCL_START
1176480fae85SJeremy L Thompson     return CeedError(data->ceed, CEED_ERROR_INCOMPLETE,
1177480fae85SJeremy L Thompson                      "Internal objects not set; must call CeedQFunctionAssemblyDataSetObjects first.");
1178480fae85SJeremy L Thompson   // LCOV_EXCL_STOP
1179480fae85SJeremy L Thompson 
11802efa2d85SJeremy L Thompson   ierr = CeedVectorReferenceCopy(data->vec, vec); CeedChk(ierr);
11812efa2d85SJeremy L Thompson   ierr = CeedElemRestrictionReferenceCopy(data->rstr, rstr); CeedChk(ierr);
1182480fae85SJeremy L Thompson 
1183480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1184480fae85SJeremy L Thompson }
1185480fae85SJeremy L Thompson 
1186480fae85SJeremy L Thompson /**
1187480fae85SJeremy L Thompson   @brief Destroy CeedQFunctionAssemblyData
1188480fae85SJeremy L Thompson 
1189480fae85SJeremy L Thompson   @param[out] data  CeedQFunctionAssemblyData to destroy
1190480fae85SJeremy L Thompson 
1191480fae85SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1192480fae85SJeremy L Thompson 
1193480fae85SJeremy L Thompson   @ref Backend
1194480fae85SJeremy L Thompson **/
1195480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataDestroy(CeedQFunctionAssemblyData *data) {
1196480fae85SJeremy L Thompson   int ierr;
1197480fae85SJeremy L Thompson 
1198480fae85SJeremy L Thompson   if (!*data || --(*data)->ref_count > 0) return CEED_ERROR_SUCCESS;
1199480fae85SJeremy L Thompson 
1200480fae85SJeremy L Thompson   ierr = CeedDestroy(&(*data)->ceed); CeedChk(ierr);
1201480fae85SJeremy L Thompson   ierr = CeedVectorDestroy(&(*data)->vec); CeedChk(ierr);
1202480fae85SJeremy L Thompson   ierr = CeedElemRestrictionDestroy(&(*data)->rstr); CeedChk(ierr);
1203480fae85SJeremy L Thompson 
1204480fae85SJeremy L Thompson   ierr = CeedFree(data); CeedChk(ierr);
1205480fae85SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1206480fae85SJeremy L Thompson }
1207480fae85SJeremy L Thompson 
1208480fae85SJeremy L Thompson /// @}
1209480fae85SJeremy L Thompson 
1210480fae85SJeremy L Thompson /// ----------------------------------------------------------------------------
1211eaf62fffSJeremy L Thompson /// CeedOperator Public API
1212eaf62fffSJeremy L Thompson /// ----------------------------------------------------------------------------
1213eaf62fffSJeremy L Thompson /// @addtogroup CeedOperatorUser
1214eaf62fffSJeremy L Thompson /// @{
1215eaf62fffSJeremy L Thompson 
1216eaf62fffSJeremy L Thompson /**
1217eaf62fffSJeremy L Thompson   @brief Assemble a linear CeedQFunction associated with a CeedOperator
1218eaf62fffSJeremy L Thompson 
1219eaf62fffSJeremy L Thompson   This returns a CeedVector containing a matrix at each quadrature point
1220eaf62fffSJeremy L Thompson     providing the action of the CeedQFunction associated with the CeedOperator.
1221eaf62fffSJeremy L Thompson     The vector 'assembled' is of shape
1222eaf62fffSJeremy L Thompson       [num_elements, num_input_fields, num_output_fields, num_quad_points]
1223eaf62fffSJeremy L Thompson     and contains column-major matrices representing the action of the
1224eaf62fffSJeremy L Thompson     CeedQFunction for a corresponding quadrature point on an element. Inputs and
1225eaf62fffSJeremy L Thompson     outputs are in the order provided by the user when adding CeedOperator fields.
1226eaf62fffSJeremy L Thompson     For example, a CeedQFunction with inputs 'u' and 'gradu' and outputs 'gradv' and
1227eaf62fffSJeremy L Thompson     'v', provided in that order, would result in an assembled QFunction that
1228eaf62fffSJeremy L Thompson     consists of (1 + dim) x (dim + 1) matrices at each quadrature point acting
1229eaf62fffSJeremy L Thompson     on the input [u, du_0, du_1] and producing the output [dv_0, dv_1, v].
1230eaf62fffSJeremy L Thompson 
1231f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1232f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1233f04ea552SJeremy L Thompson 
1234eaf62fffSJeremy L Thompson   @param op              CeedOperator to assemble CeedQFunction
1235eaf62fffSJeremy L Thompson   @param[out] assembled  CeedVector to store assembled CeedQFunction at
1236eaf62fffSJeremy L Thompson                            quadrature points
1237eaf62fffSJeremy L Thompson   @param[out] rstr       CeedElemRestriction for CeedVector containing assembled
1238eaf62fffSJeremy L Thompson                            CeedQFunction
1239eaf62fffSJeremy L Thompson   @param request         Address of CeedRequest for non-blocking completion, else
1240eaf62fffSJeremy L Thompson                            @ref CEED_REQUEST_IMMEDIATE
1241eaf62fffSJeremy L Thompson 
1242eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1243eaf62fffSJeremy L Thompson 
1244eaf62fffSJeremy L Thompson   @ref User
1245eaf62fffSJeremy L Thompson **/
1246eaf62fffSJeremy L Thompson int CeedOperatorLinearAssembleQFunction(CeedOperator op, CeedVector *assembled,
1247eaf62fffSJeremy L Thompson                                         CeedElemRestriction *rstr,
1248eaf62fffSJeremy L Thompson                                         CeedRequest *request) {
1249eaf62fffSJeremy L Thompson   int ierr;
1250eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1251eaf62fffSJeremy L Thompson 
1252eaf62fffSJeremy L Thompson   // Backend version
1253eaf62fffSJeremy L Thompson   if (op->LinearAssembleQFunction) {
125470a7ffb3SJeremy L Thompson     ierr = op->LinearAssembleQFunction(op, assembled, rstr, request);
125570a7ffb3SJeremy L Thompson     CeedChk(ierr);
1256eaf62fffSJeremy L Thompson   } else {
1257eaf62fffSJeremy L Thompson     // Fallback to reference Ceed
1258eaf62fffSJeremy L Thompson     if (!op->op_fallback) {
1259eaf62fffSJeremy L Thompson       ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1260eaf62fffSJeremy L Thompson     }
1261eaf62fffSJeremy L Thompson     // Assemble
1262eaf62fffSJeremy L Thompson     ierr = CeedOperatorLinearAssembleQFunction(op->op_fallback, assembled,
1263eaf62fffSJeremy L Thompson            rstr, request); CeedChk(ierr);
126470a7ffb3SJeremy L Thompson   }
1265eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1266eaf62fffSJeremy L Thompson }
126770a7ffb3SJeremy L Thompson 
126870a7ffb3SJeremy L Thompson /**
126970a7ffb3SJeremy L Thompson   @brief Assemble CeedQFunction and store result internall. Return copied
127070a7ffb3SJeremy L Thompson            references of stored data to the caller. Caller is responsible for
127170a7ffb3SJeremy L Thompson            ownership and destruction of the copied references. See also
127270a7ffb3SJeremy L Thompson            @ref CeedOperatorLinearAssembleQFunction
127370a7ffb3SJeremy L Thompson 
127470a7ffb3SJeremy L Thompson   @param op              CeedOperator to assemble CeedQFunction
127570a7ffb3SJeremy L Thompson   @param assembled       CeedVector to store assembled CeedQFunction at
127670a7ffb3SJeremy L Thompson                            quadrature points
127770a7ffb3SJeremy L Thompson   @param rstr            CeedElemRestriction for CeedVector containing assembled
127870a7ffb3SJeremy L Thompson                            CeedQFunction
127970a7ffb3SJeremy L Thompson   @param request         Address of CeedRequest for non-blocking completion, else
128070a7ffb3SJeremy L Thompson                            @ref CEED_REQUEST_IMMEDIATE
128170a7ffb3SJeremy L Thompson 
128270a7ffb3SJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
128370a7ffb3SJeremy L Thompson 
128470a7ffb3SJeremy L Thompson   @ref User
128570a7ffb3SJeremy L Thompson **/
128670a7ffb3SJeremy L Thompson int CeedOperatorLinearAssembleQFunctionBuildOrUpdate(CeedOperator op,
128770a7ffb3SJeremy L Thompson     CeedVector *assembled, CeedElemRestriction *rstr, CeedRequest *request) {
128870a7ffb3SJeremy L Thompson   int ierr;
128970a7ffb3SJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
129070a7ffb3SJeremy L Thompson 
129170a7ffb3SJeremy L Thompson   // Backend version
129270a7ffb3SJeremy L Thompson   if (op->LinearAssembleQFunctionUpdate) {
1293480fae85SJeremy L Thompson     bool qf_assembled_is_setup;
12942efa2d85SJeremy L Thompson     CeedVector assembled_vec = NULL;
12952efa2d85SJeremy L Thompson     CeedElemRestriction assembled_rstr = NULL;
1296480fae85SJeremy L Thompson 
1297480fae85SJeremy L Thompson     ierr = CeedQFunctionAssemblyDataIsSetup(op->qf_assembled,
1298480fae85SJeremy L Thompson                                             &qf_assembled_is_setup); CeedChk(ierr);
1299480fae85SJeremy L Thompson     if (qf_assembled_is_setup) {
1300480fae85SJeremy L Thompson       ierr = CeedQFunctionAssemblyDataGetObjects(op->qf_assembled, &assembled_vec,
1301480fae85SJeremy L Thompson              &assembled_rstr); CeedChk(ierr);
13028b919e6bSJeremy L Thompson 
13038b919e6bSJeremy L Thompson       bool update_needed;
13048b919e6bSJeremy L Thompson       ierr = CeedQFunctionAssemblyDataIsUpdateNeeded(op->qf_assembled,
13058b919e6bSJeremy L Thompson              &update_needed); CeedChk(ierr);
13068b919e6bSJeremy L Thompson       if (update_needed) {
1307480fae85SJeremy L Thompson         ierr = op->LinearAssembleQFunctionUpdate(op, assembled_vec, assembled_rstr,
1308480fae85SJeremy L Thompson                request); CeedChk(ierr);
13098b919e6bSJeremy L Thompson       }
131070a7ffb3SJeremy L Thompson     } else {
1311480fae85SJeremy L Thompson       ierr = op->LinearAssembleQFunction(op, &assembled_vec, &assembled_rstr,
1312480fae85SJeremy L Thompson                                          request); CeedChk(ierr);
1313480fae85SJeremy L Thompson       ierr = CeedQFunctionAssemblyDataSetObjects(op->qf_assembled, assembled_vec,
1314480fae85SJeremy L Thompson              assembled_rstr); CeedChk(ierr);
131570a7ffb3SJeremy L Thompson     }
1316beecbf24SJeremy L Thompson     ierr = CeedQFunctionAssemblyDataSetUpdateNeeded(op->qf_assembled, false);
13178b919e6bSJeremy L Thompson     CeedChk(ierr);
13182efa2d85SJeremy L Thompson 
131970a7ffb3SJeremy L Thompson     // Copy reference to internally held copy
132070a7ffb3SJeremy L Thompson     *assembled = NULL;
132170a7ffb3SJeremy L Thompson     *rstr = NULL;
1322480fae85SJeremy L Thompson     ierr = CeedVectorReferenceCopy(assembled_vec, assembled); CeedChk(ierr);
13232efa2d85SJeremy L Thompson     ierr = CeedVectorDestroy(&assembled_vec); CeedChk(ierr);
1324480fae85SJeremy L Thompson     ierr = CeedElemRestrictionReferenceCopy(assembled_rstr, rstr); CeedChk(ierr);
13252efa2d85SJeremy L Thompson     ierr = CeedElemRestrictionDestroy(&assembled_rstr); CeedChk(ierr);
132670a7ffb3SJeremy L Thompson   } else {
132770a7ffb3SJeremy L Thompson     // Fallback to reference Ceed
132870a7ffb3SJeremy L Thompson     if (!op->op_fallback) {
132970a7ffb3SJeremy L Thompson       ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
133070a7ffb3SJeremy L Thompson     }
133170a7ffb3SJeremy L Thompson     // Assemble
133270a7ffb3SJeremy L Thompson     ierr = CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op->op_fallback,
133370a7ffb3SJeremy L Thompson            assembled, rstr, request); CeedChk(ierr);
133470a7ffb3SJeremy L Thompson   }
133570a7ffb3SJeremy L Thompson 
133670a7ffb3SJeremy L Thompson   return CEED_ERROR_SUCCESS;
1337eaf62fffSJeremy L Thompson }
1338eaf62fffSJeremy L Thompson 
1339eaf62fffSJeremy L Thompson /**
1340eaf62fffSJeremy L Thompson   @brief Assemble the diagonal of a square linear CeedOperator
1341eaf62fffSJeremy L Thompson 
1342eaf62fffSJeremy L Thompson   This overwrites a CeedVector with the diagonal of a linear CeedOperator.
1343eaf62fffSJeremy L Thompson 
1344eaf62fffSJeremy L Thompson   Note: Currently only non-composite CeedOperators with a single field and
1345eaf62fffSJeremy L Thompson           composite CeedOperators with single field sub-operators are supported.
1346eaf62fffSJeremy L Thompson 
1347f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1348f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1349f04ea552SJeremy L Thompson 
1350eaf62fffSJeremy L Thompson   @param op              CeedOperator to assemble CeedQFunction
1351eaf62fffSJeremy L Thompson   @param[out] assembled  CeedVector to store assembled CeedOperator diagonal
1352eaf62fffSJeremy L Thompson   @param request         Address of CeedRequest for non-blocking completion, else
1353eaf62fffSJeremy L Thompson                            @ref CEED_REQUEST_IMMEDIATE
1354eaf62fffSJeremy L Thompson 
1355eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1356eaf62fffSJeremy L Thompson 
1357eaf62fffSJeremy L Thompson   @ref User
1358eaf62fffSJeremy L Thompson **/
1359eaf62fffSJeremy L Thompson int CeedOperatorLinearAssembleDiagonal(CeedOperator op, CeedVector assembled,
1360eaf62fffSJeremy L Thompson                                        CeedRequest *request) {
1361eaf62fffSJeremy L Thompson   int ierr;
1362eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1363eaf62fffSJeremy L Thompson 
1364eaf62fffSJeremy L Thompson   // Use backend version, if available
1365eaf62fffSJeremy L Thompson   if (op->LinearAssembleDiagonal) {
1366eaf62fffSJeremy L Thompson     ierr = op->LinearAssembleDiagonal(op, assembled, request); CeedChk(ierr);
1367eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1368eaf62fffSJeremy L Thompson   } else if (op->LinearAssembleAddDiagonal) {
1369eaf62fffSJeremy L Thompson     ierr = CeedVectorSetValue(assembled, 0.0); CeedChk(ierr);
1370eaf62fffSJeremy L Thompson     ierr = op->LinearAssembleAddDiagonal(op, assembled, request); CeedChk(ierr);
1371eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1372eaf62fffSJeremy L Thompson   } else {
1373eaf62fffSJeremy L Thompson     // Check for valid fallback resource
1374eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
1375eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
1376eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
1377eaf62fffSJeremy L Thompson     CeedChk(ierr);
1378eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
1379eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
1380eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
1381eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1382eaf62fffSJeremy L Thompson       }
1383eaf62fffSJeremy L Thompson       // Assemble
1384eaf62fffSJeremy L Thompson       ierr = CeedOperatorLinearAssembleDiagonal(op->op_fallback, assembled, request);
1385eaf62fffSJeremy L Thompson       CeedChk(ierr);
1386eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
1387eaf62fffSJeremy L Thompson     }
1388eaf62fffSJeremy L Thompson   }
1389eaf62fffSJeremy L Thompson 
1390eaf62fffSJeremy L Thompson   // Default interface implementation
1391eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(assembled, 0.0); CeedChk(ierr);
1392eaf62fffSJeremy L Thompson   ierr = CeedOperatorLinearAssembleAddDiagonal(op, assembled, request);
1393eaf62fffSJeremy L Thompson   CeedChk(ierr);
1394eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1395eaf62fffSJeremy L Thompson }
1396eaf62fffSJeremy L Thompson 
1397eaf62fffSJeremy L Thompson /**
1398eaf62fffSJeremy L Thompson   @brief Assemble the diagonal of a square linear CeedOperator
1399eaf62fffSJeremy L Thompson 
1400eaf62fffSJeremy L Thompson   This sums into a CeedVector the diagonal of a linear CeedOperator.
1401eaf62fffSJeremy L Thompson 
1402eaf62fffSJeremy L Thompson   Note: Currently only non-composite CeedOperators with a single field and
1403eaf62fffSJeremy L Thompson           composite CeedOperators with single field sub-operators are supported.
1404eaf62fffSJeremy L Thompson 
1405f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1406f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1407f04ea552SJeremy L Thompson 
1408eaf62fffSJeremy L Thompson   @param op              CeedOperator to assemble CeedQFunction
1409eaf62fffSJeremy L Thompson   @param[out] assembled  CeedVector to store assembled CeedOperator diagonal
1410eaf62fffSJeremy L Thompson   @param request         Address of CeedRequest for non-blocking completion, else
1411eaf62fffSJeremy L Thompson                            @ref CEED_REQUEST_IMMEDIATE
1412eaf62fffSJeremy L Thompson 
1413eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1414eaf62fffSJeremy L Thompson 
1415eaf62fffSJeremy L Thompson   @ref User
1416eaf62fffSJeremy L Thompson **/
1417eaf62fffSJeremy L Thompson int CeedOperatorLinearAssembleAddDiagonal(CeedOperator op, CeedVector assembled,
1418eaf62fffSJeremy L Thompson     CeedRequest *request) {
1419eaf62fffSJeremy L Thompson   int ierr;
1420eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1421eaf62fffSJeremy L Thompson 
1422eaf62fffSJeremy L Thompson   // Use backend version, if available
1423eaf62fffSJeremy L Thompson   if (op->LinearAssembleAddDiagonal) {
1424eaf62fffSJeremy L Thompson     ierr = op->LinearAssembleAddDiagonal(op, assembled, request); CeedChk(ierr);
1425eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1426eaf62fffSJeremy L Thompson   } else {
1427eaf62fffSJeremy L Thompson     // Check for valid fallback resource
1428eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
1429eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
1430eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
1431eaf62fffSJeremy L Thompson     CeedChk(ierr);
1432eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
1433eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
1434eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
1435eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1436eaf62fffSJeremy L Thompson       }
1437eaf62fffSJeremy L Thompson       // Assemble
1438eaf62fffSJeremy L Thompson       ierr = CeedOperatorLinearAssembleAddDiagonal(op->op_fallback, assembled,
1439eaf62fffSJeremy L Thompson              request); CeedChk(ierr);
1440eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
1441eaf62fffSJeremy L Thompson     }
1442eaf62fffSJeremy L Thompson   }
1443eaf62fffSJeremy L Thompson 
1444eaf62fffSJeremy L Thompson   // Default interface implementation
1445eaf62fffSJeremy L Thompson   bool is_composite;
1446eaf62fffSJeremy L Thompson   ierr = CeedOperatorIsComposite(op, &is_composite); CeedChk(ierr);
1447eaf62fffSJeremy L Thompson   if (is_composite) {
1448eaf62fffSJeremy L Thompson     ierr = CeedCompositeOperatorLinearAssembleAddDiagonal(op, request,
1449eaf62fffSJeremy L Thompson            false, assembled); CeedChk(ierr);
1450eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1451eaf62fffSJeremy L Thompson   } else {
1452eaf62fffSJeremy L Thompson     ierr = CeedSingleOperatorAssembleAddDiagonal(op, request, false, assembled);
1453eaf62fffSJeremy L Thompson     CeedChk(ierr);
1454eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1455eaf62fffSJeremy L Thompson   }
1456eaf62fffSJeremy L Thompson }
1457eaf62fffSJeremy L Thompson 
1458eaf62fffSJeremy L Thompson /**
1459eaf62fffSJeremy L Thompson   @brief Assemble the point block diagonal of a square linear CeedOperator
1460eaf62fffSJeremy L Thompson 
1461eaf62fffSJeremy L Thompson   This overwrites a CeedVector with the point block diagonal of a linear
1462eaf62fffSJeremy L Thompson     CeedOperator.
1463eaf62fffSJeremy L Thompson 
1464eaf62fffSJeremy L Thompson   Note: Currently only non-composite CeedOperators with a single field and
1465eaf62fffSJeremy L Thompson           composite CeedOperators with single field sub-operators are supported.
1466eaf62fffSJeremy L Thompson 
1467f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1468f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1469f04ea552SJeremy L Thompson 
1470eaf62fffSJeremy L Thompson   @param op              CeedOperator to assemble CeedQFunction
1471eaf62fffSJeremy L Thompson   @param[out] assembled  CeedVector to store assembled CeedOperator point block
1472eaf62fffSJeremy L Thompson                            diagonal, provided in row-major form with an
1473eaf62fffSJeremy L Thompson                            @a num_comp * @a num_comp block at each node. The dimensions
1474eaf62fffSJeremy L Thompson                            of this vector are derived from the active vector
1475eaf62fffSJeremy L Thompson                            for the CeedOperator. The array has shape
1476eaf62fffSJeremy L Thompson                            [nodes, component out, component in].
1477eaf62fffSJeremy L Thompson   @param request         Address of CeedRequest for non-blocking completion, else
1478eaf62fffSJeremy L Thompson                            CEED_REQUEST_IMMEDIATE
1479eaf62fffSJeremy L Thompson 
1480eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1481eaf62fffSJeremy L Thompson 
1482eaf62fffSJeremy L Thompson   @ref User
1483eaf62fffSJeremy L Thompson **/
1484eaf62fffSJeremy L Thompson int CeedOperatorLinearAssemblePointBlockDiagonal(CeedOperator op,
1485eaf62fffSJeremy L Thompson     CeedVector assembled, CeedRequest *request) {
1486eaf62fffSJeremy L Thompson   int ierr;
1487eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1488eaf62fffSJeremy L Thompson 
1489eaf62fffSJeremy L Thompson   // Use backend version, if available
1490eaf62fffSJeremy L Thompson   if (op->LinearAssemblePointBlockDiagonal) {
1491eaf62fffSJeremy L Thompson     ierr = op->LinearAssemblePointBlockDiagonal(op, assembled, request);
1492eaf62fffSJeremy L Thompson     CeedChk(ierr);
1493eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1494eaf62fffSJeremy L Thompson   } else if (op->LinearAssembleAddPointBlockDiagonal) {
1495eaf62fffSJeremy L Thompson     ierr = CeedVectorSetValue(assembled, 0.0); CeedChk(ierr);
1496eaf62fffSJeremy L Thompson     ierr = CeedOperatorLinearAssembleAddPointBlockDiagonal(op, assembled,
1497eaf62fffSJeremy L Thompson            request); CeedChk(ierr);
1498eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1499eaf62fffSJeremy L Thompson   } else {
1500eaf62fffSJeremy L Thompson     // Check for valid fallback resource
1501eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
1502eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
1503eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
1504eaf62fffSJeremy L Thompson     CeedChk(ierr);
1505eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
1506eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
1507eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
1508eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1509eaf62fffSJeremy L Thompson       }
1510eaf62fffSJeremy L Thompson       // Assemble
1511eaf62fffSJeremy L Thompson       ierr = CeedOperatorLinearAssemblePointBlockDiagonal(op->op_fallback,
1512eaf62fffSJeremy L Thompson              assembled, request); CeedChk(ierr);
1513eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
1514eaf62fffSJeremy L Thompson     }
1515eaf62fffSJeremy L Thompson   }
1516eaf62fffSJeremy L Thompson 
1517eaf62fffSJeremy L Thompson   // Default interface implementation
1518eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(assembled, 0.0); CeedChk(ierr);
1519eaf62fffSJeremy L Thompson   ierr = CeedOperatorLinearAssembleAddPointBlockDiagonal(op, assembled, request);
1520eaf62fffSJeremy L Thompson   CeedChk(ierr);
1521eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1522eaf62fffSJeremy L Thompson }
1523eaf62fffSJeremy L Thompson 
1524eaf62fffSJeremy L Thompson /**
1525eaf62fffSJeremy L Thompson   @brief Assemble the point block diagonal of a square linear CeedOperator
1526eaf62fffSJeremy L Thompson 
1527eaf62fffSJeremy L Thompson   This sums into a CeedVector with the point block diagonal of a linear
1528eaf62fffSJeremy L Thompson     CeedOperator.
1529eaf62fffSJeremy L Thompson 
1530eaf62fffSJeremy L Thompson   Note: Currently only non-composite CeedOperators with a single field and
1531eaf62fffSJeremy L Thompson           composite CeedOperators with single field sub-operators are supported.
1532eaf62fffSJeremy L Thompson 
1533f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1534f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1535f04ea552SJeremy L Thompson 
1536eaf62fffSJeremy L Thompson   @param op              CeedOperator to assemble CeedQFunction
1537eaf62fffSJeremy L Thompson   @param[out] assembled  CeedVector to store assembled CeedOperator point block
1538eaf62fffSJeremy L Thompson                            diagonal, provided in row-major form with an
1539eaf62fffSJeremy L Thompson                            @a num_comp * @a num_comp block at each node. The dimensions
1540eaf62fffSJeremy L Thompson                            of this vector are derived from the active vector
1541eaf62fffSJeremy L Thompson                            for the CeedOperator. The array has shape
1542eaf62fffSJeremy L Thompson                            [nodes, component out, component in].
1543eaf62fffSJeremy L Thompson   @param request         Address of CeedRequest for non-blocking completion, else
1544eaf62fffSJeremy L Thompson                            CEED_REQUEST_IMMEDIATE
1545eaf62fffSJeremy L Thompson 
1546eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1547eaf62fffSJeremy L Thompson 
1548eaf62fffSJeremy L Thompson   @ref User
1549eaf62fffSJeremy L Thompson **/
1550eaf62fffSJeremy L Thompson int CeedOperatorLinearAssembleAddPointBlockDiagonal(CeedOperator op,
1551eaf62fffSJeremy L Thompson     CeedVector assembled, CeedRequest *request) {
1552eaf62fffSJeremy L Thompson   int ierr;
1553eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1554eaf62fffSJeremy L Thompson 
1555eaf62fffSJeremy L Thompson   // Use backend version, if available
1556eaf62fffSJeremy L Thompson   if (op->LinearAssembleAddPointBlockDiagonal) {
1557eaf62fffSJeremy L Thompson     ierr = op->LinearAssembleAddPointBlockDiagonal(op, assembled, request);
1558eaf62fffSJeremy L Thompson     CeedChk(ierr);
1559eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1560eaf62fffSJeremy L Thompson   } else {
1561eaf62fffSJeremy L Thompson     // Check for valid fallback resource
1562eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
1563eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
1564eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
1565eaf62fffSJeremy L Thompson     CeedChk(ierr);
1566eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
1567eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
1568eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
1569eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1570eaf62fffSJeremy L Thompson       }
1571eaf62fffSJeremy L Thompson       // Assemble
1572eaf62fffSJeremy L Thompson       ierr = CeedOperatorLinearAssembleAddPointBlockDiagonal(op->op_fallback,
1573eaf62fffSJeremy L Thompson              assembled, request); CeedChk(ierr);
1574eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
1575eaf62fffSJeremy L Thompson     }
1576eaf62fffSJeremy L Thompson   }
1577eaf62fffSJeremy L Thompson 
1578eaf62fffSJeremy L Thompson   // Default interface implemenation
1579eaf62fffSJeremy L Thompson   bool is_composite;
1580eaf62fffSJeremy L Thompson   ierr = CeedOperatorIsComposite(op, &is_composite); CeedChk(ierr);
1581eaf62fffSJeremy L Thompson   if (is_composite) {
1582eaf62fffSJeremy L Thompson     ierr = CeedCompositeOperatorLinearAssembleAddDiagonal(op, request,
1583eaf62fffSJeremy L Thompson            true, assembled); CeedChk(ierr);
1584eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1585eaf62fffSJeremy L Thompson   } else {
1586eaf62fffSJeremy L Thompson     ierr = CeedSingleOperatorAssembleAddDiagonal(op, request, true, assembled);
1587eaf62fffSJeremy L Thompson     CeedChk(ierr);
1588eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1589eaf62fffSJeremy L Thompson   }
1590eaf62fffSJeremy L Thompson }
1591eaf62fffSJeremy L Thompson 
1592eaf62fffSJeremy L Thompson /**
1593eaf62fffSJeremy L Thompson    @brief Fully assemble the nonzero pattern of a linear operator.
1594eaf62fffSJeremy L Thompson 
1595eaf62fffSJeremy L Thompson    Expected to be used in conjunction with CeedOperatorLinearAssemble()
1596eaf62fffSJeremy L Thompson 
1597eaf62fffSJeremy L Thompson    The assembly routines use coordinate format, with num_entries tuples of the
1598eaf62fffSJeremy L Thompson    form (i, j, value) which indicate that value should be added to the matrix
1599eaf62fffSJeremy L Thompson    in entry (i, j). Note that the (i, j) pairs are not unique and may repeat.
1600eaf62fffSJeremy L Thompson    This function returns the number of entries and their (i, j) locations,
1601eaf62fffSJeremy L Thompson    while CeedOperatorLinearAssemble() provides the values in the same
1602eaf62fffSJeremy L Thompson    ordering.
1603eaf62fffSJeremy L Thompson 
1604eaf62fffSJeremy L Thompson    This will generally be slow unless your operator is low-order.
1605eaf62fffSJeremy L Thompson 
1606f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1607f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1608f04ea552SJeremy L Thompson 
1609eaf62fffSJeremy L Thompson    @param[in]  op           CeedOperator to assemble
1610eaf62fffSJeremy L Thompson    @param[out] num_entries  Number of entries in coordinate nonzero pattern
1611eaf62fffSJeremy L Thompson    @param[out] rows         Row number for each entry
1612eaf62fffSJeremy L Thompson    @param[out] cols         Column number for each entry
1613eaf62fffSJeremy L Thompson 
1614eaf62fffSJeremy L Thompson    @ref User
1615eaf62fffSJeremy L Thompson **/
1616c30b7fbdSJeremy L Thompson int CeedOperatorLinearAssembleSymbolic(CeedOperator op, CeedSize *num_entries,
1617eaf62fffSJeremy L Thompson                                        CeedInt **rows, CeedInt **cols) {
1618eaf62fffSJeremy L Thompson   int ierr;
1619eaf62fffSJeremy L Thompson   CeedInt num_suboperators, single_entries;
1620eaf62fffSJeremy L Thompson   CeedOperator *sub_operators;
1621eaf62fffSJeremy L Thompson   bool is_composite;
1622eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1623eaf62fffSJeremy L Thompson 
1624eaf62fffSJeremy L Thompson   // Use backend version, if available
1625eaf62fffSJeremy L Thompson   if (op->LinearAssembleSymbolic) {
1626eaf62fffSJeremy L Thompson     ierr = op->LinearAssembleSymbolic(op, num_entries, rows, cols); CeedChk(ierr);
1627eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1628eaf62fffSJeremy L Thompson   } else {
1629eaf62fffSJeremy L Thompson     // Check for valid fallback resource
1630eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
1631eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
1632eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
1633eaf62fffSJeremy L Thompson     CeedChk(ierr);
1634eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
1635eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
1636eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
1637eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1638eaf62fffSJeremy L Thompson       }
1639eaf62fffSJeremy L Thompson       // Assemble
1640eaf62fffSJeremy L Thompson       ierr = CeedOperatorLinearAssembleSymbolic(op->op_fallback, num_entries, rows,
1641eaf62fffSJeremy L Thompson              cols); CeedChk(ierr);
1642eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
1643eaf62fffSJeremy L Thompson     }
1644eaf62fffSJeremy L Thompson   }
1645eaf62fffSJeremy L Thompson 
1646eaf62fffSJeremy L Thompson   // Default interface implementation
1647eaf62fffSJeremy L Thompson 
1648eaf62fffSJeremy L Thompson   // count entries and allocate rows, cols arrays
1649eaf62fffSJeremy L Thompson   ierr = CeedOperatorIsComposite(op, &is_composite); CeedChk(ierr);
1650eaf62fffSJeremy L Thompson   *num_entries = 0;
1651eaf62fffSJeremy L Thompson   if (is_composite) {
1652eaf62fffSJeremy L Thompson     ierr = CeedOperatorGetNumSub(op, &num_suboperators); CeedChk(ierr);
1653eaf62fffSJeremy L Thompson     ierr = CeedOperatorGetSubList(op, &sub_operators); CeedChk(ierr);
1654eaf62fffSJeremy L Thompson     for (int k = 0; k < num_suboperators; ++k) {
1655eaf62fffSJeremy L Thompson       ierr = CeedSingleOperatorAssemblyCountEntries(sub_operators[k],
1656eaf62fffSJeremy L Thompson              &single_entries); CeedChk(ierr);
1657eaf62fffSJeremy L Thompson       *num_entries += single_entries;
1658eaf62fffSJeremy L Thompson     }
1659eaf62fffSJeremy L Thompson   } else {
1660eaf62fffSJeremy L Thompson     ierr = CeedSingleOperatorAssemblyCountEntries(op,
1661eaf62fffSJeremy L Thompson            &single_entries); CeedChk(ierr);
1662eaf62fffSJeremy L Thompson     *num_entries += single_entries;
1663eaf62fffSJeremy L Thompson   }
1664eaf62fffSJeremy L Thompson   ierr = CeedCalloc(*num_entries, rows); CeedChk(ierr);
1665eaf62fffSJeremy L Thompson   ierr = CeedCalloc(*num_entries, cols); CeedChk(ierr);
1666eaf62fffSJeremy L Thompson 
1667eaf62fffSJeremy L Thompson   // assemble nonzero locations
1668eaf62fffSJeremy L Thompson   CeedInt offset = 0;
1669eaf62fffSJeremy L Thompson   if (is_composite) {
1670eaf62fffSJeremy L Thompson     ierr = CeedOperatorGetNumSub(op, &num_suboperators); CeedChk(ierr);
1671eaf62fffSJeremy L Thompson     ierr = CeedOperatorGetSubList(op, &sub_operators); CeedChk(ierr);
1672eaf62fffSJeremy L Thompson     for (int k = 0; k < num_suboperators; ++k) {
1673eaf62fffSJeremy L Thompson       ierr = CeedSingleOperatorAssembleSymbolic(sub_operators[k], offset, *rows,
1674eaf62fffSJeremy L Thompson              *cols); CeedChk(ierr);
1675eaf62fffSJeremy L Thompson       ierr = CeedSingleOperatorAssemblyCountEntries(sub_operators[k],
1676eaf62fffSJeremy L Thompson              &single_entries);
1677eaf62fffSJeremy L Thompson       CeedChk(ierr);
1678eaf62fffSJeremy L Thompson       offset += single_entries;
1679eaf62fffSJeremy L Thompson     }
1680eaf62fffSJeremy L Thompson   } else {
1681eaf62fffSJeremy L Thompson     ierr = CeedSingleOperatorAssembleSymbolic(op, offset, *rows, *cols);
1682eaf62fffSJeremy L Thompson     CeedChk(ierr);
1683eaf62fffSJeremy L Thompson   }
1684eaf62fffSJeremy L Thompson 
1685eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1686eaf62fffSJeremy L Thompson }
1687eaf62fffSJeremy L Thompson 
1688eaf62fffSJeremy L Thompson /**
1689eaf62fffSJeremy L Thompson    @brief Fully assemble the nonzero entries of a linear operator.
1690eaf62fffSJeremy L Thompson 
1691eaf62fffSJeremy L Thompson    Expected to be used in conjunction with CeedOperatorLinearAssembleSymbolic()
1692eaf62fffSJeremy L Thompson 
1693eaf62fffSJeremy L Thompson    The assembly routines use coordinate format, with num_entries tuples of the
1694eaf62fffSJeremy L Thompson    form (i, j, value) which indicate that value should be added to the matrix
1695eaf62fffSJeremy L Thompson    in entry (i, j). Note that the (i, j) pairs are not unique and may repeat.
1696eaf62fffSJeremy L Thompson    This function returns the values of the nonzero entries to be added, their
1697eaf62fffSJeremy L Thompson    (i, j) locations are provided by CeedOperatorLinearAssembleSymbolic()
1698eaf62fffSJeremy L Thompson 
1699eaf62fffSJeremy L Thompson    This will generally be slow unless your operator is low-order.
1700eaf62fffSJeremy L Thompson 
1701f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1702f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1703f04ea552SJeremy L Thompson 
1704eaf62fffSJeremy L Thompson    @param[in]  op      CeedOperator to assemble
1705eaf62fffSJeremy L Thompson    @param[out] values  Values to assemble into matrix
1706eaf62fffSJeremy L Thompson 
1707eaf62fffSJeremy L Thompson    @ref User
1708eaf62fffSJeremy L Thompson **/
1709eaf62fffSJeremy L Thompson int CeedOperatorLinearAssemble(CeedOperator op, CeedVector values) {
1710eaf62fffSJeremy L Thompson   int ierr;
1711eaf62fffSJeremy L Thompson   CeedInt num_suboperators, single_entries = 0;
1712eaf62fffSJeremy L Thompson   CeedOperator *sub_operators;
1713eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
1714eaf62fffSJeremy L Thompson 
1715eaf62fffSJeremy L Thompson   // Use backend version, if available
1716eaf62fffSJeremy L Thompson   if (op->LinearAssemble) {
1717eaf62fffSJeremy L Thompson     ierr = op->LinearAssemble(op, values); CeedChk(ierr);
1718eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
1719eaf62fffSJeremy L Thompson   } else {
1720eaf62fffSJeremy L Thompson     // Check for valid fallback resource
1721eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
1722eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
1723eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
1724eaf62fffSJeremy L Thompson     CeedChk(ierr);
1725eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
1726eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
1727eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
1728eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
1729eaf62fffSJeremy L Thompson       }
1730eaf62fffSJeremy L Thompson       // Assemble
1731eaf62fffSJeremy L Thompson       ierr = CeedOperatorLinearAssemble(op->op_fallback, values); CeedChk(ierr);
1732eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
1733eaf62fffSJeremy L Thompson     }
1734eaf62fffSJeremy L Thompson   }
1735eaf62fffSJeremy L Thompson 
1736eaf62fffSJeremy L Thompson   // Default interface implementation
1737eaf62fffSJeremy L Thompson   bool is_composite;
1738eaf62fffSJeremy L Thompson   ierr = CeedOperatorIsComposite(op, &is_composite); CeedChk(ierr);
1739eaf62fffSJeremy L Thompson 
1740eaf62fffSJeremy L Thompson   CeedInt offset = 0;
1741eaf62fffSJeremy L Thompson   if (is_composite) {
1742eaf62fffSJeremy L Thompson     ierr = CeedOperatorGetNumSub(op, &num_suboperators); CeedChk(ierr);
1743eaf62fffSJeremy L Thompson     ierr = CeedOperatorGetSubList(op, &sub_operators); CeedChk(ierr);
1744eaf62fffSJeremy L Thompson     for (int k = 0; k < num_suboperators; ++k) {
1745eaf62fffSJeremy L Thompson       ierr = CeedSingleOperatorAssemble(sub_operators[k], offset, values);
1746eaf62fffSJeremy L Thompson       CeedChk(ierr);
1747eaf62fffSJeremy L Thompson       ierr = CeedSingleOperatorAssemblyCountEntries(sub_operators[k],
1748eaf62fffSJeremy L Thompson              &single_entries);
1749eaf62fffSJeremy L Thompson       CeedChk(ierr);
1750eaf62fffSJeremy L Thompson       offset += single_entries;
1751eaf62fffSJeremy L Thompson     }
1752eaf62fffSJeremy L Thompson   } else {
1753eaf62fffSJeremy L Thompson     ierr = CeedSingleOperatorAssemble(op, offset, values); CeedChk(ierr);
1754eaf62fffSJeremy L Thompson   }
1755eaf62fffSJeremy L Thompson 
1756eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1757eaf62fffSJeremy L Thompson }
1758eaf62fffSJeremy L Thompson 
1759eaf62fffSJeremy L Thompson /**
1760eaf62fffSJeremy L Thompson   @brief Create a multigrid coarse operator and level transfer operators
1761eaf62fffSJeremy L Thompson            for a CeedOperator, creating the prolongation basis from the
1762eaf62fffSJeremy L Thompson            fine and coarse grid interpolation
1763eaf62fffSJeremy L Thompson 
1764f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1765f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1766f04ea552SJeremy L Thompson 
1767eaf62fffSJeremy L Thompson   @param[in] op_fine       Fine grid operator
1768eaf62fffSJeremy L Thompson   @param[in] p_mult_fine   L-vector multiplicity in parallel gather/scatter
1769eaf62fffSJeremy L Thompson   @param[in] rstr_coarse   Coarse grid restriction
1770eaf62fffSJeremy L Thompson   @param[in] basis_coarse  Coarse grid active vector basis
1771eaf62fffSJeremy L Thompson   @param[out] op_coarse    Coarse grid operator
1772eaf62fffSJeremy L Thompson   @param[out] op_prolong   Coarse to fine operator
1773eaf62fffSJeremy L Thompson   @param[out] op_restrict  Fine to coarse operator
1774eaf62fffSJeremy L Thompson 
1775eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1776eaf62fffSJeremy L Thompson 
1777eaf62fffSJeremy L Thompson   @ref User
1778eaf62fffSJeremy L Thompson **/
1779eaf62fffSJeremy L Thompson int CeedOperatorMultigridLevelCreate(CeedOperator op_fine,
1780eaf62fffSJeremy L Thompson                                      CeedVector p_mult_fine,
1781eaf62fffSJeremy L Thompson                                      CeedElemRestriction rstr_coarse, CeedBasis basis_coarse,
1782eaf62fffSJeremy L Thompson                                      CeedOperator *op_coarse, CeedOperator *op_prolong,
1783eaf62fffSJeremy L Thompson                                      CeedOperator *op_restrict) {
1784eaf62fffSJeremy L Thompson   int ierr;
1785f04ea552SJeremy L Thompson   ierr = CeedOperatorCheckReady(op_fine); CeedChk(ierr);
1786eaf62fffSJeremy L Thompson   Ceed ceed;
1787eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetCeed(op_fine, &ceed); CeedChk(ierr);
1788eaf62fffSJeremy L Thompson 
1789eaf62fffSJeremy L Thompson   // Check for compatible quadrature spaces
1790eaf62fffSJeremy L Thompson   CeedBasis basis_fine;
1791eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetActiveBasis(op_fine, &basis_fine); CeedChk(ierr);
1792eaf62fffSJeremy L Thompson   CeedInt Q_f, Q_c;
1793eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_fine, &Q_f); CeedChk(ierr);
1794eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_coarse, &Q_c); CeedChk(ierr);
1795eaf62fffSJeremy L Thompson   if (Q_f != Q_c)
1796eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
1797eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_DIMENSION,
1798eaf62fffSJeremy L Thompson                      "Bases must have compatible quadrature spaces");
1799eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
1800eaf62fffSJeremy L Thompson 
1801eaf62fffSJeremy L Thompson   // Coarse to fine basis
1802eaf62fffSJeremy L Thompson   CeedInt P_f, P_c, Q = Q_f;
1803eaf62fffSJeremy L Thompson   bool is_tensor_f, is_tensor_c;
1804eaf62fffSJeremy L Thompson   ierr = CeedBasisIsTensor(basis_fine, &is_tensor_f); CeedChk(ierr);
1805eaf62fffSJeremy L Thompson   ierr = CeedBasisIsTensor(basis_coarse, &is_tensor_c); CeedChk(ierr);
1806eaf62fffSJeremy L Thompson   CeedScalar *interp_c, *interp_f, *interp_c_to_f, *tau;
1807eaf62fffSJeremy L Thompson   if (is_tensor_f && is_tensor_c) {
1808eaf62fffSJeremy L Thompson     ierr = CeedBasisGetNumNodes1D(basis_fine, &P_f); CeedChk(ierr);
1809eaf62fffSJeremy L Thompson     ierr = CeedBasisGetNumNodes1D(basis_coarse, &P_c); CeedChk(ierr);
1810eaf62fffSJeremy L Thompson     ierr = CeedBasisGetNumQuadraturePoints1D(basis_coarse, &Q); CeedChk(ierr);
1811eaf62fffSJeremy L Thompson   } else if (!is_tensor_f && !is_tensor_c) {
1812eaf62fffSJeremy L Thompson     ierr = CeedBasisGetNumNodes(basis_fine, &P_f); CeedChk(ierr);
1813eaf62fffSJeremy L Thompson     ierr = CeedBasisGetNumNodes(basis_coarse, &P_c); CeedChk(ierr);
1814eaf62fffSJeremy L Thompson   } else {
1815eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
1816eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_MINOR,
1817eaf62fffSJeremy L Thompson                      "Bases must both be tensor or non-tensor");
1818eaf62fffSJeremy L Thompson     // LCOV_EXCL_STOP
1819eaf62fffSJeremy L Thompson   }
1820eaf62fffSJeremy L Thompson 
1821eaf62fffSJeremy L Thompson   ierr = CeedMalloc(Q*P_f, &interp_f); CeedChk(ierr);
1822eaf62fffSJeremy L Thompson   ierr = CeedMalloc(Q*P_c, &interp_c); CeedChk(ierr);
1823eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_c*P_f, &interp_c_to_f); CeedChk(ierr);
1824eaf62fffSJeremy L Thompson   ierr = CeedMalloc(Q, &tau); CeedChk(ierr);
1825eaf62fffSJeremy L Thompson   if (is_tensor_f) {
1826eaf62fffSJeremy L Thompson     memcpy(interp_f, basis_fine->interp_1d, Q*P_f*sizeof basis_fine->interp_1d[0]);
1827eaf62fffSJeremy L Thompson     memcpy(interp_c, basis_coarse->interp_1d,
1828eaf62fffSJeremy L Thompson            Q*P_c*sizeof basis_coarse->interp_1d[0]);
1829eaf62fffSJeremy L Thompson   } else {
1830eaf62fffSJeremy L Thompson     memcpy(interp_f, basis_fine->interp, Q*P_f*sizeof basis_fine->interp[0]);
1831eaf62fffSJeremy L Thompson     memcpy(interp_c, basis_coarse->interp, Q*P_c*sizeof basis_coarse->interp[0]);
1832eaf62fffSJeremy L Thompson   }
1833eaf62fffSJeremy L Thompson 
1834eaf62fffSJeremy L Thompson   // -- QR Factorization, interp_f = Q R
1835eaf62fffSJeremy L Thompson   ierr = CeedQRFactorization(ceed, interp_f, tau, Q, P_f); CeedChk(ierr);
1836eaf62fffSJeremy L Thompson 
1837eaf62fffSJeremy L Thompson   // -- Apply Qtranspose, interp_c = Qtranspose interp_c
1838eaf62fffSJeremy L Thompson   ierr = CeedHouseholderApplyQ(interp_c, interp_f, tau, CEED_TRANSPOSE,
1839eaf62fffSJeremy L Thompson                                Q, P_c, P_f, P_c, 1); CeedChk(ierr);
1840eaf62fffSJeremy L Thompson 
1841eaf62fffSJeremy L Thompson   // -- Apply Rinv, interp_c_to_f = Rinv interp_c
1842eaf62fffSJeremy L Thompson   for (CeedInt j=0; j<P_c; j++) { // Column j
1843eaf62fffSJeremy L Thompson     interp_c_to_f[j+P_c*(P_f-1)] = interp_c[j+P_c*(P_f-1)]/interp_f[P_f*P_f-1];
1844eaf62fffSJeremy L Thompson     for (CeedInt i=P_f-2; i>=0; i--) { // Row i
1845eaf62fffSJeremy L Thompson       interp_c_to_f[j+P_c*i] = interp_c[j+P_c*i];
1846eaf62fffSJeremy L Thompson       for (CeedInt k=i+1; k<P_f; k++)
1847eaf62fffSJeremy L Thompson         interp_c_to_f[j+P_c*i] -= interp_f[k+P_f*i]*interp_c_to_f[j+P_c*k];
1848eaf62fffSJeremy L Thompson       interp_c_to_f[j+P_c*i] /= interp_f[i+P_f*i];
1849eaf62fffSJeremy L Thompson     }
1850eaf62fffSJeremy L Thompson   }
1851eaf62fffSJeremy L Thompson   ierr = CeedFree(&tau); CeedChk(ierr);
1852eaf62fffSJeremy L Thompson   ierr = CeedFree(&interp_c); CeedChk(ierr);
1853eaf62fffSJeremy L Thompson   ierr = CeedFree(&interp_f); CeedChk(ierr);
1854eaf62fffSJeremy L Thompson 
1855eaf62fffSJeremy L Thompson   // Complete with interp_c_to_f versions of code
1856eaf62fffSJeremy L Thompson   if (is_tensor_f) {
1857eaf62fffSJeremy L Thompson     ierr = CeedOperatorMultigridLevelCreateTensorH1(op_fine, p_mult_fine,
1858eaf62fffSJeremy L Thompson            rstr_coarse, basis_coarse, interp_c_to_f, op_coarse, op_prolong, op_restrict);
1859eaf62fffSJeremy L Thompson     CeedChk(ierr);
1860eaf62fffSJeremy L Thompson   } else {
1861eaf62fffSJeremy L Thompson     ierr = CeedOperatorMultigridLevelCreateH1(op_fine, p_mult_fine,
1862eaf62fffSJeremy L Thompson            rstr_coarse, basis_coarse, interp_c_to_f, op_coarse, op_prolong, op_restrict);
1863eaf62fffSJeremy L Thompson     CeedChk(ierr);
1864eaf62fffSJeremy L Thompson   }
1865eaf62fffSJeremy L Thompson 
1866eaf62fffSJeremy L Thompson   // Cleanup
1867eaf62fffSJeremy L Thompson   ierr = CeedFree(&interp_c_to_f); CeedChk(ierr);
1868eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1869eaf62fffSJeremy L Thompson }
1870eaf62fffSJeremy L Thompson 
1871eaf62fffSJeremy L Thompson /**
1872eaf62fffSJeremy L Thompson   @brief Create a multigrid coarse operator and level transfer operators
1873eaf62fffSJeremy L Thompson            for a CeedOperator with a tensor basis for the active basis
1874eaf62fffSJeremy L Thompson 
1875f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1876f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1877f04ea552SJeremy L Thompson 
1878eaf62fffSJeremy L Thompson   @param[in] op_fine        Fine grid operator
1879eaf62fffSJeremy L Thompson   @param[in] p_mult_fine    L-vector multiplicity in parallel gather/scatter
1880eaf62fffSJeremy L Thompson   @param[in] rstr_coarse    Coarse grid restriction
1881eaf62fffSJeremy L Thompson   @param[in] basis_coarse   Coarse grid active vector basis
1882eaf62fffSJeremy L Thompson   @param[in] interp_c_to_f  Matrix for coarse to fine interpolation
1883eaf62fffSJeremy L Thompson   @param[out] op_coarse     Coarse grid operator
1884eaf62fffSJeremy L Thompson   @param[out] op_prolong    Coarse to fine operator
1885eaf62fffSJeremy L Thompson   @param[out] op_restrict   Fine to coarse operator
1886eaf62fffSJeremy L Thompson 
1887eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1888eaf62fffSJeremy L Thompson 
1889eaf62fffSJeremy L Thompson   @ref User
1890eaf62fffSJeremy L Thompson **/
1891eaf62fffSJeremy L Thompson int CeedOperatorMultigridLevelCreateTensorH1(CeedOperator op_fine,
1892eaf62fffSJeremy L Thompson     CeedVector p_mult_fine, CeedElemRestriction rstr_coarse, CeedBasis basis_coarse,
1893eaf62fffSJeremy L Thompson     const CeedScalar *interp_c_to_f, CeedOperator *op_coarse,
1894eaf62fffSJeremy L Thompson     CeedOperator *op_prolong, CeedOperator *op_restrict) {
1895eaf62fffSJeremy L Thompson   int ierr;
1896f04ea552SJeremy L Thompson   ierr = CeedOperatorCheckReady(op_fine); CeedChk(ierr);
1897eaf62fffSJeremy L Thompson   Ceed ceed;
1898eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetCeed(op_fine, &ceed); CeedChk(ierr);
1899eaf62fffSJeremy L Thompson 
1900eaf62fffSJeremy L Thompson   // Check for compatible quadrature spaces
1901eaf62fffSJeremy L Thompson   CeedBasis basis_fine;
1902eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetActiveBasis(op_fine, &basis_fine); CeedChk(ierr);
1903eaf62fffSJeremy L Thompson   CeedInt Q_f, Q_c;
1904eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_fine, &Q_f); CeedChk(ierr);
1905eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_coarse, &Q_c); CeedChk(ierr);
1906eaf62fffSJeremy L Thompson   if (Q_f != Q_c)
1907eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
1908eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_DIMENSION,
1909eaf62fffSJeremy L Thompson                      "Bases must have compatible quadrature spaces");
1910eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
1911eaf62fffSJeremy L Thompson 
1912eaf62fffSJeremy L Thompson   // Coarse to fine basis
1913eaf62fffSJeremy L Thompson   CeedInt dim, num_comp, num_nodes_c, P_1d_f, P_1d_c;
1914eaf62fffSJeremy L Thompson   ierr = CeedBasisGetDimension(basis_fine, &dim); CeedChk(ierr);
1915eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumComponents(basis_fine, &num_comp); CeedChk(ierr);
1916eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumNodes1D(basis_fine, &P_1d_f); CeedChk(ierr);
1917eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetElementSize(rstr_coarse, &num_nodes_c);
1918eaf62fffSJeremy L Thompson   CeedChk(ierr);
1919eaf62fffSJeremy L Thompson   P_1d_c = dim == 1 ? num_nodes_c :
1920eaf62fffSJeremy L Thompson            dim == 2 ? sqrt(num_nodes_c) :
1921eaf62fffSJeremy L Thompson            cbrt(num_nodes_c);
1922eaf62fffSJeremy L Thompson   CeedScalar *q_ref, *q_weight, *grad;
1923eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d_f, &q_ref); CeedChk(ierr);
1924eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d_f, &q_weight); CeedChk(ierr);
1925eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d_f*P_1d_c*dim, &grad); CeedChk(ierr);
1926eaf62fffSJeremy L Thompson   CeedBasis basis_c_to_f;
1927eaf62fffSJeremy L Thompson   ierr = CeedBasisCreateTensorH1(ceed, dim, num_comp, P_1d_c, P_1d_f,
1928eaf62fffSJeremy L Thompson                                  interp_c_to_f, grad, q_ref, q_weight, &basis_c_to_f);
1929eaf62fffSJeremy L Thompson   CeedChk(ierr);
1930eaf62fffSJeremy L Thompson   ierr = CeedFree(&q_ref); CeedChk(ierr);
1931eaf62fffSJeremy L Thompson   ierr = CeedFree(&q_weight); CeedChk(ierr);
1932eaf62fffSJeremy L Thompson   ierr = CeedFree(&grad); CeedChk(ierr);
1933eaf62fffSJeremy L Thompson 
1934eaf62fffSJeremy L Thompson   // Core code
1935eaf62fffSJeremy L Thompson   ierr = CeedSingleOperatorMultigridLevel(op_fine, p_mult_fine, rstr_coarse,
1936eaf62fffSJeremy L Thompson                                           basis_coarse, basis_c_to_f, op_coarse,
1937eaf62fffSJeremy L Thompson                                           op_prolong, op_restrict);
1938eaf62fffSJeremy L Thompson   CeedChk(ierr);
1939eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
1940eaf62fffSJeremy L Thompson }
1941eaf62fffSJeremy L Thompson 
1942eaf62fffSJeremy L Thompson /**
1943eaf62fffSJeremy L Thompson   @brief Create a multigrid coarse operator and level transfer operators
1944eaf62fffSJeremy L Thompson            for a CeedOperator with a non-tensor basis for the active vector
1945eaf62fffSJeremy L Thompson 
1946f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
1947f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
1948f04ea552SJeremy L Thompson 
1949eaf62fffSJeremy L Thompson   @param[in] op_fine        Fine grid operator
1950eaf62fffSJeremy L Thompson   @param[in] p_mult_fine    L-vector multiplicity in parallel gather/scatter
1951eaf62fffSJeremy L Thompson   @param[in] rstr_coarse    Coarse grid restriction
1952eaf62fffSJeremy L Thompson   @param[in] basis_coarse   Coarse grid active vector basis
1953eaf62fffSJeremy L Thompson   @param[in] interp_c_to_f  Matrix for coarse to fine interpolation
1954eaf62fffSJeremy L Thompson   @param[out] op_coarse     Coarse grid operator
1955eaf62fffSJeremy L Thompson   @param[out] op_prolong    Coarse to fine operator
1956eaf62fffSJeremy L Thompson   @param[out] op_restrict   Fine to coarse operator
1957eaf62fffSJeremy L Thompson 
1958eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
1959eaf62fffSJeremy L Thompson 
1960eaf62fffSJeremy L Thompson   @ref User
1961eaf62fffSJeremy L Thompson **/
1962eaf62fffSJeremy L Thompson int CeedOperatorMultigridLevelCreateH1(CeedOperator op_fine,
1963eaf62fffSJeremy L Thompson                                        CeedVector p_mult_fine,
1964eaf62fffSJeremy L Thompson                                        CeedElemRestriction rstr_coarse,
1965eaf62fffSJeremy L Thompson                                        CeedBasis basis_coarse,
1966eaf62fffSJeremy L Thompson                                        const CeedScalar *interp_c_to_f,
1967eaf62fffSJeremy L Thompson                                        CeedOperator *op_coarse,
1968eaf62fffSJeremy L Thompson                                        CeedOperator *op_prolong,
1969eaf62fffSJeremy L Thompson                                        CeedOperator *op_restrict) {
1970eaf62fffSJeremy L Thompson   int ierr;
1971f04ea552SJeremy L Thompson   ierr = CeedOperatorCheckReady(op_fine); CeedChk(ierr);
1972eaf62fffSJeremy L Thompson   Ceed ceed;
1973eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetCeed(op_fine, &ceed); CeedChk(ierr);
1974eaf62fffSJeremy L Thompson 
1975eaf62fffSJeremy L Thompson   // Check for compatible quadrature spaces
1976eaf62fffSJeremy L Thompson   CeedBasis basis_fine;
1977eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetActiveBasis(op_fine, &basis_fine); CeedChk(ierr);
1978eaf62fffSJeremy L Thompson   CeedInt Q_f, Q_c;
1979eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_fine, &Q_f); CeedChk(ierr);
1980eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis_coarse, &Q_c); CeedChk(ierr);
1981eaf62fffSJeremy L Thompson   if (Q_f != Q_c)
1982eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
1983eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_DIMENSION,
1984eaf62fffSJeremy L Thompson                      "Bases must have compatible quadrature spaces");
1985eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
1986eaf62fffSJeremy L Thompson 
1987eaf62fffSJeremy L Thompson   // Coarse to fine basis
1988eaf62fffSJeremy L Thompson   CeedElemTopology topo;
1989eaf62fffSJeremy L Thompson   ierr = CeedBasisGetTopology(basis_fine, &topo); CeedChk(ierr);
1990eaf62fffSJeremy L Thompson   CeedInt dim, num_comp, num_nodes_c, num_nodes_f;
1991eaf62fffSJeremy L Thompson   ierr = CeedBasisGetDimension(basis_fine, &dim); CeedChk(ierr);
1992eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumComponents(basis_fine, &num_comp); CeedChk(ierr);
1993eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumNodes(basis_fine, &num_nodes_f); CeedChk(ierr);
1994eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetElementSize(rstr_coarse, &num_nodes_c);
1995eaf62fffSJeremy L Thompson   CeedChk(ierr);
1996eaf62fffSJeremy L Thompson   CeedScalar *q_ref, *q_weight, *grad;
1997f9e0419eSJeremy L Thompson   ierr = CeedCalloc(num_nodes_f*dim, &q_ref); CeedChk(ierr);
1998eaf62fffSJeremy L Thompson   ierr = CeedCalloc(num_nodes_f, &q_weight); CeedChk(ierr);
1999eaf62fffSJeremy L Thompson   ierr = CeedCalloc(num_nodes_f*num_nodes_c*dim, &grad); CeedChk(ierr);
2000eaf62fffSJeremy L Thompson   CeedBasis basis_c_to_f;
2001eaf62fffSJeremy L Thompson   ierr = CeedBasisCreateH1(ceed, topo, num_comp, num_nodes_c, num_nodes_f,
2002eaf62fffSJeremy L Thompson                            interp_c_to_f, grad, q_ref, q_weight, &basis_c_to_f);
2003eaf62fffSJeremy L Thompson   CeedChk(ierr);
2004eaf62fffSJeremy L Thompson   ierr = CeedFree(&q_ref); CeedChk(ierr);
2005eaf62fffSJeremy L Thompson   ierr = CeedFree(&q_weight); CeedChk(ierr);
2006eaf62fffSJeremy L Thompson   ierr = CeedFree(&grad); CeedChk(ierr);
2007eaf62fffSJeremy L Thompson 
2008eaf62fffSJeremy L Thompson   // Core code
2009eaf62fffSJeremy L Thompson   ierr = CeedSingleOperatorMultigridLevel(op_fine, p_mult_fine, rstr_coarse,
2010eaf62fffSJeremy L Thompson                                           basis_coarse, basis_c_to_f, op_coarse,
2011eaf62fffSJeremy L Thompson                                           op_prolong, op_restrict);
2012eaf62fffSJeremy L Thompson   CeedChk(ierr);
2013eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
2014eaf62fffSJeremy L Thompson }
2015eaf62fffSJeremy L Thompson 
2016eaf62fffSJeremy L Thompson /**
2017eaf62fffSJeremy L Thompson   @brief Build a FDM based approximate inverse for each element for a
2018eaf62fffSJeremy L Thompson            CeedOperator
2019eaf62fffSJeremy L Thompson 
2020eaf62fffSJeremy L Thompson   This returns a CeedOperator and CeedVector to apply a Fast Diagonalization
2021eaf62fffSJeremy L Thompson     Method based approximate inverse. This function obtains the simultaneous
2022eaf62fffSJeremy L Thompson     diagonalization for the 1D mass and Laplacian operators,
2023eaf62fffSJeremy L Thompson       M = V^T V, K = V^T S V.
2024eaf62fffSJeremy L Thompson     The assembled QFunction is used to modify the eigenvalues from simultaneous
2025eaf62fffSJeremy L Thompson     diagonalization and obtain an approximate inverse of the form
2026eaf62fffSJeremy L Thompson       V^T S^hat V. The CeedOperator must be linear and non-composite. The
2027eaf62fffSJeremy L Thompson     associated CeedQFunction must therefore also be linear.
2028eaf62fffSJeremy L Thompson 
2029f04ea552SJeremy L Thompson   Note: Calling this function asserts that setup is complete
2030f04ea552SJeremy L Thompson           and sets the CeedOperator as immutable.
2031f04ea552SJeremy L Thompson 
2032eaf62fffSJeremy L Thompson   @param op            CeedOperator to create element inverses
2033eaf62fffSJeremy L Thompson   @param[out] fdm_inv  CeedOperator to apply the action of a FDM based inverse
2034eaf62fffSJeremy L Thompson                          for each element
2035eaf62fffSJeremy L Thompson   @param request       Address of CeedRequest for non-blocking completion, else
2036eaf62fffSJeremy L Thompson                          @ref CEED_REQUEST_IMMEDIATE
2037eaf62fffSJeremy L Thompson 
2038eaf62fffSJeremy L Thompson   @return An error code: 0 - success, otherwise - failure
2039eaf62fffSJeremy L Thompson 
2040480fae85SJeremy L Thompson   @ref User
2041eaf62fffSJeremy L Thompson **/
2042eaf62fffSJeremy L Thompson int CeedOperatorCreateFDMElementInverse(CeedOperator op, CeedOperator *fdm_inv,
2043eaf62fffSJeremy L Thompson                                         CeedRequest *request) {
2044eaf62fffSJeremy L Thompson   int ierr;
2045eaf62fffSJeremy L Thompson   ierr = CeedOperatorCheckReady(op); CeedChk(ierr);
2046eaf62fffSJeremy L Thompson 
2047eaf62fffSJeremy L Thompson   // Use backend version, if available
2048eaf62fffSJeremy L Thompson   if (op->CreateFDMElementInverse) {
2049eaf62fffSJeremy L Thompson     ierr = op->CreateFDMElementInverse(op, fdm_inv, request); CeedChk(ierr);
2050eaf62fffSJeremy L Thompson     return CEED_ERROR_SUCCESS;
2051eaf62fffSJeremy L Thompson   } else {
2052eaf62fffSJeremy L Thompson     // Check for valid fallback resource
2053eaf62fffSJeremy L Thompson     const char *resource, *fallback_resource;
2054eaf62fffSJeremy L Thompson     ierr = CeedGetResource(op->ceed, &resource); CeedChk(ierr);
2055eaf62fffSJeremy L Thompson     ierr = CeedGetOperatorFallbackResource(op->ceed, &fallback_resource);
2056eaf62fffSJeremy L Thompson     CeedChk(ierr);
2057eaf62fffSJeremy L Thompson     if (strcmp(fallback_resource, "") && strcmp(resource, fallback_resource)) {
2058eaf62fffSJeremy L Thompson       // Fallback to reference Ceed
2059eaf62fffSJeremy L Thompson       if (!op->op_fallback) {
2060eaf62fffSJeremy L Thompson         ierr = CeedOperatorCreateFallback(op); CeedChk(ierr);
2061eaf62fffSJeremy L Thompson       }
2062eaf62fffSJeremy L Thompson       // Assemble
2063eaf62fffSJeremy L Thompson       ierr = CeedOperatorCreateFDMElementInverse(op->op_fallback, fdm_inv, request);
2064eaf62fffSJeremy L Thompson       CeedChk(ierr);
2065eaf62fffSJeremy L Thompson       return CEED_ERROR_SUCCESS;
2066eaf62fffSJeremy L Thompson     }
2067eaf62fffSJeremy L Thompson   }
2068eaf62fffSJeremy L Thompson 
2069eaf62fffSJeremy L Thompson   // Interface implementation
2070eaf62fffSJeremy L Thompson   Ceed ceed, ceed_parent;
2071eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetCeed(op, &ceed); CeedChk(ierr);
2072eaf62fffSJeremy L Thompson   ierr = CeedGetOperatorFallbackParentCeed(ceed, &ceed_parent); CeedChk(ierr);
2073eaf62fffSJeremy L Thompson   ceed_parent = ceed_parent ? ceed_parent : ceed;
2074eaf62fffSJeremy L Thompson   CeedQFunction qf;
2075eaf62fffSJeremy L Thompson   ierr = CeedOperatorGetQFunction(op, &qf); CeedChk(ierr);
2076eaf62fffSJeremy L Thompson 
2077eaf62fffSJeremy L Thompson   // Determine active input basis
2078eaf62fffSJeremy L Thompson   bool interp = false, grad = false;
2079eaf62fffSJeremy L Thompson   CeedBasis basis = NULL;
2080eaf62fffSJeremy L Thompson   CeedElemRestriction rstr = NULL;
2081eaf62fffSJeremy L Thompson   CeedOperatorField *op_fields;
2082eaf62fffSJeremy L Thompson   CeedQFunctionField *qf_fields;
2083eaf62fffSJeremy L Thompson   CeedInt num_input_fields;
20847e7773b5SJeremy L Thompson   ierr = CeedOperatorGetFields(op, &num_input_fields, &op_fields, NULL, NULL);
20857e7773b5SJeremy L Thompson   CeedChk(ierr);
20867e7773b5SJeremy L Thompson   ierr = CeedQFunctionGetFields(qf, NULL, &qf_fields, NULL, NULL); CeedChk(ierr);
2087eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<num_input_fields; i++) {
2088eaf62fffSJeremy L Thompson     CeedVector vec;
2089eaf62fffSJeremy L Thompson     ierr = CeedOperatorFieldGetVector(op_fields[i], &vec); CeedChk(ierr);
2090eaf62fffSJeremy L Thompson     if (vec == CEED_VECTOR_ACTIVE) {
2091eaf62fffSJeremy L Thompson       CeedEvalMode eval_mode;
2092eaf62fffSJeremy L Thompson       ierr = CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode); CeedChk(ierr);
2093eaf62fffSJeremy L Thompson       interp = interp || eval_mode == CEED_EVAL_INTERP;
2094eaf62fffSJeremy L Thompson       grad = grad || eval_mode == CEED_EVAL_GRAD;
2095eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetBasis(op_fields[i], &basis); CeedChk(ierr);
2096eaf62fffSJeremy L Thompson       ierr = CeedOperatorFieldGetElemRestriction(op_fields[i], &rstr); CeedChk(ierr);
2097eaf62fffSJeremy L Thompson     }
2098eaf62fffSJeremy L Thompson   }
2099eaf62fffSJeremy L Thompson   if (!basis)
2100eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
2101eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_BACKEND, "No active field set");
2102eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
2103e79b91d9SJeremy L Thompson   CeedSize l_size = 1;
2104e79b91d9SJeremy L Thompson   CeedInt P_1d, Q_1d, elem_size, num_qpts, dim, num_comp = 1, num_elem = 1;
2105eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumNodes1D(basis, &P_1d); CeedChk(ierr);
2106eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumNodes(basis, &elem_size); CeedChk(ierr);
2107eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d); CeedChk(ierr);
2108eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumQuadraturePoints(basis, &num_qpts); CeedChk(ierr);
2109eaf62fffSJeremy L Thompson   ierr = CeedBasisGetDimension(basis, &dim); CeedChk(ierr);
2110eaf62fffSJeremy L Thompson   ierr = CeedBasisGetNumComponents(basis, &num_comp); CeedChk(ierr);
2111eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetNumElements(rstr, &num_elem); CeedChk(ierr);
2112eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetLVectorSize(rstr, &l_size); CeedChk(ierr);
2113eaf62fffSJeremy L Thompson 
2114eaf62fffSJeremy L Thompson   // Build and diagonalize 1D Mass and Laplacian
2115eaf62fffSJeremy L Thompson   bool tensor_basis;
2116eaf62fffSJeremy L Thompson   ierr = CeedBasisIsTensor(basis, &tensor_basis); CeedChk(ierr);
2117eaf62fffSJeremy L Thompson   if (!tensor_basis)
2118eaf62fffSJeremy L Thompson     // LCOV_EXCL_START
2119eaf62fffSJeremy L Thompson     return CeedError(ceed, CEED_ERROR_BACKEND,
2120eaf62fffSJeremy L Thompson                      "FDMElementInverse only supported for tensor "
2121eaf62fffSJeremy L Thompson                      "bases");
2122eaf62fffSJeremy L Thompson   // LCOV_EXCL_STOP
2123eaf62fffSJeremy L Thompson   CeedScalar *mass, *laplace, *x, *fdm_interp, *lambda;
2124eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d*P_1d, &mass); CeedChk(ierr);
2125eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d*P_1d, &laplace); CeedChk(ierr);
2126eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d*P_1d, &x); CeedChk(ierr);
2127eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d*P_1d, &fdm_interp); CeedChk(ierr);
2128eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d, &lambda); CeedChk(ierr);
2129eaf62fffSJeremy L Thompson   // -- Build matrices
2130eaf62fffSJeremy L Thompson   const CeedScalar *interp_1d, *grad_1d, *q_weight_1d;
2131eaf62fffSJeremy L Thompson   ierr = CeedBasisGetInterp1D(basis, &interp_1d); CeedChk(ierr);
2132eaf62fffSJeremy L Thompson   ierr = CeedBasisGetGrad1D(basis, &grad_1d); CeedChk(ierr);
2133eaf62fffSJeremy L Thompson   ierr = CeedBasisGetQWeights(basis, &q_weight_1d); CeedChk(ierr);
2134eaf62fffSJeremy L Thompson   ierr = CeedBuildMassLaplace(interp_1d, grad_1d, q_weight_1d, P_1d, Q_1d, dim,
2135eaf62fffSJeremy L Thompson                               mass, laplace); CeedChk(ierr);
2136eaf62fffSJeremy L Thompson 
2137eaf62fffSJeremy L Thompson   // -- Diagonalize
2138eaf62fffSJeremy L Thompson   ierr = CeedSimultaneousDiagonalization(ceed, laplace, mass, x, lambda, P_1d);
2139eaf62fffSJeremy L Thompson   CeedChk(ierr);
2140eaf62fffSJeremy L Thompson   ierr = CeedFree(&mass); CeedChk(ierr);
2141eaf62fffSJeremy L Thompson   ierr = CeedFree(&laplace); CeedChk(ierr);
2142eaf62fffSJeremy L Thompson   for (CeedInt i=0; i<P_1d; i++)
2143eaf62fffSJeremy L Thompson     for (CeedInt j=0; j<P_1d; j++)
2144eaf62fffSJeremy L Thompson       fdm_interp[i+j*P_1d] = x[j+i*P_1d];
2145eaf62fffSJeremy L Thompson   ierr = CeedFree(&x); CeedChk(ierr);
2146eaf62fffSJeremy L Thompson 
2147eaf62fffSJeremy L Thompson   // Assemble QFunction
2148eaf62fffSJeremy L Thompson   CeedVector assembled;
2149eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_qf;
215070a7ffb3SJeremy L Thompson   ierr =  CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op, &assembled,
215170a7ffb3SJeremy L Thompson           &rstr_qf, request); CeedChk(ierr);
2152eaf62fffSJeremy L Thompson   CeedInt layout[3];
2153eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionGetELayout(rstr_qf, &layout); CeedChk(ierr);
2154eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionDestroy(&rstr_qf); CeedChk(ierr);
2155eaf62fffSJeremy L Thompson   CeedScalar max_norm = 0;
2156eaf62fffSJeremy L Thompson   ierr = CeedVectorNorm(assembled, CEED_NORM_MAX, &max_norm); CeedChk(ierr);
2157eaf62fffSJeremy L Thompson 
2158eaf62fffSJeremy L Thompson   // Calculate element averages
2159eaf62fffSJeremy L Thompson   CeedInt num_modes = (interp?1:0) + (grad?dim:0);
2160eaf62fffSJeremy L Thompson   CeedScalar *elem_avg;
2161eaf62fffSJeremy L Thompson   const CeedScalar *assembled_array, *q_weight_array;
2162eaf62fffSJeremy L Thompson   CeedVector q_weight;
2163eaf62fffSJeremy L Thompson   ierr = CeedVectorCreate(ceed_parent, num_qpts, &q_weight); CeedChk(ierr);
2164eaf62fffSJeremy L Thompson   ierr = CeedBasisApply(basis, 1, CEED_NOTRANSPOSE, CEED_EVAL_WEIGHT,
2165eaf62fffSJeremy L Thompson                         CEED_VECTOR_NONE, q_weight); CeedChk(ierr);
2166eaf62fffSJeremy L Thompson   ierr = CeedVectorGetArrayRead(assembled, CEED_MEM_HOST, &assembled_array);
2167eaf62fffSJeremy L Thompson   CeedChk(ierr);
2168eaf62fffSJeremy L Thompson   ierr = CeedVectorGetArrayRead(q_weight, CEED_MEM_HOST, &q_weight_array);
2169eaf62fffSJeremy L Thompson   CeedChk(ierr);
2170eaf62fffSJeremy L Thompson   ierr = CeedCalloc(num_elem, &elem_avg); CeedChk(ierr);
2171eaf62fffSJeremy L Thompson   const CeedScalar qf_value_bound = max_norm*100*CEED_EPSILON;
2172eaf62fffSJeremy L Thompson   for (CeedInt e=0; e<num_elem; e++) {
2173eaf62fffSJeremy L Thompson     CeedInt count = 0;
2174eaf62fffSJeremy L Thompson     for (CeedInt q=0; q<num_qpts; q++)
2175eaf62fffSJeremy L Thompson       for (CeedInt i=0; i<num_comp*num_comp*num_modes*num_modes; i++)
2176eaf62fffSJeremy L Thompson         if (fabs(assembled_array[q*layout[0] + i*layout[1] + e*layout[2]]) >
2177eaf62fffSJeremy L Thompson             qf_value_bound) {
2178eaf62fffSJeremy L Thompson           elem_avg[e] += assembled_array[q*layout[0] + i*layout[1] + e*layout[2]] /
2179eaf62fffSJeremy L Thompson                          q_weight_array[q];
2180eaf62fffSJeremy L Thompson           count++;
2181eaf62fffSJeremy L Thompson         }
2182eaf62fffSJeremy L Thompson     if (count) {
2183eaf62fffSJeremy L Thompson       elem_avg[e] /= count;
2184eaf62fffSJeremy L Thompson     } else {
2185eaf62fffSJeremy L Thompson       elem_avg[e] = 1.0;
2186eaf62fffSJeremy L Thompson     }
2187eaf62fffSJeremy L Thompson   }
2188eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArrayRead(assembled, &assembled_array); CeedChk(ierr);
2189eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&assembled); CeedChk(ierr);
2190eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArrayRead(q_weight, &q_weight_array); CeedChk(ierr);
2191eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&q_weight); CeedChk(ierr);
2192eaf62fffSJeremy L Thompson 
2193eaf62fffSJeremy L Thompson   // Build FDM diagonal
2194eaf62fffSJeremy L Thompson   CeedVector q_data;
2195eaf62fffSJeremy L Thompson   CeedScalar *q_data_array, *fdm_diagonal;
2196eaf62fffSJeremy L Thompson   ierr = CeedCalloc(num_comp*elem_size, &fdm_diagonal); CeedChk(ierr);
2197eaf62fffSJeremy L Thompson   const CeedScalar fdm_diagonal_bound = elem_size*CEED_EPSILON;
2198eaf62fffSJeremy L Thompson   for (CeedInt c=0; c<num_comp; c++)
2199eaf62fffSJeremy L Thompson     for (CeedInt n=0; n<elem_size; n++) {
2200eaf62fffSJeremy L Thompson       if (interp)
2201eaf62fffSJeremy L Thompson         fdm_diagonal[c*elem_size + n] = 1.0;
2202eaf62fffSJeremy L Thompson       if (grad)
2203eaf62fffSJeremy L Thompson         for (CeedInt d=0; d<dim; d++) {
2204eaf62fffSJeremy L Thompson           CeedInt i = (n / CeedIntPow(P_1d, d)) % P_1d;
2205eaf62fffSJeremy L Thompson           fdm_diagonal[c*elem_size + n] += lambda[i];
2206eaf62fffSJeremy L Thompson         }
2207eaf62fffSJeremy L Thompson       if (fabs(fdm_diagonal[c*elem_size + n]) < fdm_diagonal_bound)
2208eaf62fffSJeremy L Thompson         fdm_diagonal[c*elem_size + n] = fdm_diagonal_bound;
2209eaf62fffSJeremy L Thompson     }
2210eaf62fffSJeremy L Thompson   ierr = CeedVectorCreate(ceed_parent, num_elem*num_comp*elem_size, &q_data);
2211eaf62fffSJeremy L Thompson   CeedChk(ierr);
2212eaf62fffSJeremy L Thompson   ierr = CeedVectorSetValue(q_data, 0.0); CeedChk(ierr);
22139c774eddSJeremy L Thompson   ierr = CeedVectorGetArrayWrite(q_data, CEED_MEM_HOST, &q_data_array);
22149c774eddSJeremy L Thompson   CeedChk(ierr);
2215eaf62fffSJeremy L Thompson   for (CeedInt e=0; e<num_elem; e++)
2216eaf62fffSJeremy L Thompson     for (CeedInt c=0; c<num_comp; c++)
2217eaf62fffSJeremy L Thompson       for (CeedInt n=0; n<elem_size; n++)
2218eaf62fffSJeremy L Thompson         q_data_array[(e*num_comp+c)*elem_size+n] = 1. / (elem_avg[e] *
2219eaf62fffSJeremy L Thompson             fdm_diagonal[c*elem_size + n]);
2220eaf62fffSJeremy L Thompson   ierr = CeedFree(&elem_avg); CeedChk(ierr);
2221eaf62fffSJeremy L Thompson   ierr = CeedFree(&fdm_diagonal); CeedChk(ierr);
2222eaf62fffSJeremy L Thompson   ierr = CeedVectorRestoreArray(q_data, &q_data_array); CeedChk(ierr);
2223eaf62fffSJeremy L Thompson 
2224eaf62fffSJeremy L Thompson   // Setup FDM operator
2225eaf62fffSJeremy L Thompson   // -- Basis
2226eaf62fffSJeremy L Thompson   CeedBasis fdm_basis;
2227eaf62fffSJeremy L Thompson   CeedScalar *grad_dummy, *q_ref_dummy, *q_weight_dummy;
2228eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d*P_1d, &grad_dummy); CeedChk(ierr);
2229eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d, &q_ref_dummy); CeedChk(ierr);
2230eaf62fffSJeremy L Thompson   ierr = CeedCalloc(P_1d, &q_weight_dummy); CeedChk(ierr);
2231eaf62fffSJeremy L Thompson   ierr = CeedBasisCreateTensorH1(ceed_parent, dim, num_comp, P_1d, P_1d,
2232eaf62fffSJeremy L Thompson                                  fdm_interp, grad_dummy, q_ref_dummy,
2233eaf62fffSJeremy L Thompson                                  q_weight_dummy, &fdm_basis); CeedChk(ierr);
2234eaf62fffSJeremy L Thompson   ierr = CeedFree(&fdm_interp); CeedChk(ierr);
2235eaf62fffSJeremy L Thompson   ierr = CeedFree(&grad_dummy); CeedChk(ierr);
2236eaf62fffSJeremy L Thompson   ierr = CeedFree(&q_ref_dummy); CeedChk(ierr);
2237eaf62fffSJeremy L Thompson   ierr = CeedFree(&q_weight_dummy); CeedChk(ierr);
2238eaf62fffSJeremy L Thompson   ierr = CeedFree(&lambda); CeedChk(ierr);
2239eaf62fffSJeremy L Thompson 
2240eaf62fffSJeremy L Thompson   // -- Restriction
2241eaf62fffSJeremy L Thompson   CeedElemRestriction rstr_qd_i;
2242eaf62fffSJeremy L Thompson   CeedInt strides[3] = {1, elem_size, elem_size*num_comp};
2243eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionCreateStrided(ceed_parent, num_elem, elem_size,
2244eaf62fffSJeremy L Thompson                                           num_comp, num_elem*num_comp*elem_size,
2245eaf62fffSJeremy L Thompson                                           strides, &rstr_qd_i); CeedChk(ierr);
2246eaf62fffSJeremy L Thompson   // -- QFunction
2247eaf62fffSJeremy L Thompson   CeedQFunction qf_fdm;
2248eaf62fffSJeremy L Thompson   ierr = CeedQFunctionCreateInteriorByName(ceed_parent, "Scale", &qf_fdm);
2249eaf62fffSJeremy L Thompson   CeedChk(ierr);
2250eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddInput(qf_fdm, "input", num_comp, CEED_EVAL_INTERP);
2251eaf62fffSJeremy L Thompson   CeedChk(ierr);
2252eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddInput(qf_fdm, "scale", num_comp, CEED_EVAL_NONE);
2253eaf62fffSJeremy L Thompson   CeedChk(ierr);
2254eaf62fffSJeremy L Thompson   ierr = CeedQFunctionAddOutput(qf_fdm, "output", num_comp, CEED_EVAL_INTERP);
2255eaf62fffSJeremy L Thompson   CeedChk(ierr);
2256eaf62fffSJeremy L Thompson   // -- QFunction context
2257eaf62fffSJeremy L Thompson   CeedInt *num_comp_data;
2258eaf62fffSJeremy L Thompson   ierr = CeedCalloc(1, &num_comp_data); CeedChk(ierr);
2259eaf62fffSJeremy L Thompson   num_comp_data[0] = num_comp;
2260eaf62fffSJeremy L Thompson   CeedQFunctionContext ctx_fdm;
2261eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextCreate(ceed, &ctx_fdm); CeedChk(ierr);
2262eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextSetData(ctx_fdm, CEED_MEM_HOST, CEED_OWN_POINTER,
2263eaf62fffSJeremy L Thompson                                      sizeof(*num_comp_data), num_comp_data);
2264eaf62fffSJeremy L Thompson   CeedChk(ierr);
2265eaf62fffSJeremy L Thompson   ierr = CeedQFunctionSetContext(qf_fdm, ctx_fdm); CeedChk(ierr);
2266eaf62fffSJeremy L Thompson   ierr = CeedQFunctionContextDestroy(&ctx_fdm); CeedChk(ierr);
2267eaf62fffSJeremy L Thompson   // -- Operator
2268eaf62fffSJeremy L Thompson   ierr = CeedOperatorCreate(ceed_parent, qf_fdm, NULL, NULL, fdm_inv);
2269eaf62fffSJeremy L Thompson   CeedChk(ierr);
2270eaf62fffSJeremy L Thompson   CeedOperatorSetField(*fdm_inv, "input", rstr, fdm_basis, CEED_VECTOR_ACTIVE);
2271eaf62fffSJeremy L Thompson   CeedChk(ierr);
2272eaf62fffSJeremy L Thompson   CeedOperatorSetField(*fdm_inv, "scale", rstr_qd_i, CEED_BASIS_COLLOCATED,
2273eaf62fffSJeremy L Thompson                        q_data); CeedChk(ierr);
2274eaf62fffSJeremy L Thompson   CeedOperatorSetField(*fdm_inv, "output", rstr, fdm_basis, CEED_VECTOR_ACTIVE);
2275eaf62fffSJeremy L Thompson   CeedChk(ierr);
2276eaf62fffSJeremy L Thompson 
2277eaf62fffSJeremy L Thompson   // Cleanup
2278eaf62fffSJeremy L Thompson   ierr = CeedVectorDestroy(&q_data); CeedChk(ierr);
2279eaf62fffSJeremy L Thompson   ierr = CeedBasisDestroy(&fdm_basis); CeedChk(ierr);
2280eaf62fffSJeremy L Thompson   ierr = CeedElemRestrictionDestroy(&rstr_qd_i); CeedChk(ierr);
2281eaf62fffSJeremy L Thompson   ierr = CeedQFunctionDestroy(&qf_fdm); CeedChk(ierr);
2282eaf62fffSJeremy L Thompson 
2283eaf62fffSJeremy L Thompson   return CEED_ERROR_SUCCESS;
2284eaf62fffSJeremy L Thompson }
2285eaf62fffSJeremy L Thompson 
2286eaf62fffSJeremy L Thompson /// @}
2287