13d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3eaf62fffSJeremy L Thompson // 43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 5eaf62fffSJeremy L Thompson // 63d8e8822SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 7eaf62fffSJeremy L Thompson 8ed9e99e6SJeremy L Thompson #include <assert.h> 92b730f8bSJeremy L Thompson #include <ceed-impl.h> 1049aac155SJeremy L Thompson #include <ceed.h> 112b730f8bSJeremy L Thompson #include <ceed/backend.h> 122b730f8bSJeremy L Thompson #include <math.h> 13eaf62fffSJeremy L Thompson #include <stdbool.h> 14eaf62fffSJeremy L Thompson #include <stdio.h> 15eaf62fffSJeremy L Thompson #include <string.h> 16eaf62fffSJeremy L Thompson 17eaf62fffSJeremy L Thompson /// @file 18eaf62fffSJeremy L Thompson /// Implementation of CeedOperator preconditioning interfaces 19eaf62fffSJeremy L Thompson 20eaf62fffSJeremy L Thompson /// ---------------------------------------------------------------------------- 21eaf62fffSJeremy L Thompson /// CeedOperator Library Internal Preconditioning Functions 22eaf62fffSJeremy L Thompson /// ---------------------------------------------------------------------------- 23eaf62fffSJeremy L Thompson /// @addtogroup CeedOperatorDeveloper 24eaf62fffSJeremy L Thompson /// @{ 25eaf62fffSJeremy L Thompson 26eaf62fffSJeremy L Thompson /** 27ea61e9acSJeremy L Thompson @brief Duplicate a CeedQFunction with a reference Ceed to fallback for advanced CeedOperator functionality 289e77b9c8SJeremy L Thompson 2901ea9c81SJed Brown @param[in] fallback_ceed Ceed on which to create fallback CeedQFunction 309e77b9c8SJeremy L Thompson @param[in] qf CeedQFunction to create fallback for 3101ea9c81SJed Brown @param[out] qf_fallback fallback CeedQFunction 329e77b9c8SJeremy L Thompson 339e77b9c8SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 349e77b9c8SJeremy L Thompson 359e77b9c8SJeremy L Thompson @ref Developer 369e77b9c8SJeremy L Thompson **/ 372b730f8bSJeremy L Thompson static int CeedQFunctionCreateFallback(Ceed fallback_ceed, CeedQFunction qf, CeedQFunction *qf_fallback) { 389e77b9c8SJeremy L Thompson // Check if NULL qf passed in 399e77b9c8SJeremy L Thompson if (!qf) return CEED_ERROR_SUCCESS; 409e77b9c8SJeremy L Thompson 41d04bbc78SJeremy L Thompson CeedDebug256(qf->ceed, 1, "---------- CeedOperator Fallback ----------\n"); 4213f886e9SJeremy L Thompson CeedDebug(qf->ceed, "Creating fallback CeedQFunction\n"); 43d04bbc78SJeremy L Thompson 449e77b9c8SJeremy L Thompson char *source_path_with_name = ""; 459e77b9c8SJeremy L Thompson if (qf->source_path) { 462b730f8bSJeremy L Thompson size_t path_len = strlen(qf->source_path), name_len = strlen(qf->kernel_name); 472b730f8bSJeremy L Thompson CeedCall(CeedCalloc(path_len + name_len + 2, &source_path_with_name)); 489e77b9c8SJeremy L Thompson memcpy(source_path_with_name, qf->source_path, path_len); 499e77b9c8SJeremy L Thompson memcpy(&source_path_with_name[path_len], ":", 1); 509e77b9c8SJeremy L Thompson memcpy(&source_path_with_name[path_len + 1], qf->kernel_name, name_len); 519e77b9c8SJeremy L Thompson } else { 522b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, &source_path_with_name)); 539e77b9c8SJeremy L Thompson } 549e77b9c8SJeremy L Thompson 552b730f8bSJeremy L Thompson CeedCall(CeedQFunctionCreateInterior(fallback_ceed, qf->vec_length, qf->function, source_path_with_name, qf_fallback)); 569e77b9c8SJeremy L Thompson { 579e77b9c8SJeremy L Thompson CeedQFunctionContext ctx; 589e77b9c8SJeremy L Thompson 592b730f8bSJeremy L Thompson CeedCall(CeedQFunctionGetContext(qf, &ctx)); 602b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetContext(*qf_fallback, ctx)); 619e77b9c8SJeremy L Thompson } 629e77b9c8SJeremy L Thompson for (CeedInt i = 0; i < qf->num_input_fields; i++) { 632b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(*qf_fallback, qf->input_fields[i]->field_name, qf->input_fields[i]->size, qf->input_fields[i]->eval_mode)); 649e77b9c8SJeremy L Thompson } 659e77b9c8SJeremy L Thompson for (CeedInt i = 0; i < qf->num_output_fields; i++) { 662b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddOutput(*qf_fallback, qf->output_fields[i]->field_name, qf->output_fields[i]->size, qf->output_fields[i]->eval_mode)); 679e77b9c8SJeremy L Thompson } 682b730f8bSJeremy L Thompson CeedCall(CeedFree(&source_path_with_name)); 699e77b9c8SJeremy L Thompson 709e77b9c8SJeremy L Thompson return CEED_ERROR_SUCCESS; 719e77b9c8SJeremy L Thompson } 729e77b9c8SJeremy L Thompson 739e77b9c8SJeremy L Thompson /** 74ea61e9acSJeremy L Thompson @brief Duplicate a CeedOperator with a reference Ceed to fallback for advanced CeedOperator functionality 75eaf62fffSJeremy L Thompson 76ea61e9acSJeremy L Thompson @param[in,out] op CeedOperator to create fallback for 77eaf62fffSJeremy L Thompson 78eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 79eaf62fffSJeremy L Thompson 80eaf62fffSJeremy L Thompson @ref Developer 81eaf62fffSJeremy L Thompson **/ 82d04bbc78SJeremy L Thompson static int CeedOperatorCreateFallback(CeedOperator op) { 83b275c451SJeremy L Thompson bool is_composite; 849e77b9c8SJeremy L Thompson Ceed ceed_fallback; 85eaf62fffSJeremy L Thompson 86805fe78eSJeremy L Thompson // Check not already created 87805fe78eSJeremy L Thompson if (op->op_fallback) return CEED_ERROR_SUCCESS; 88805fe78eSJeremy L Thompson 89eaf62fffSJeremy L Thompson // Fallback Ceed 902b730f8bSJeremy L Thompson CeedCall(CeedGetOperatorFallbackCeed(op->ceed, &ceed_fallback)); 91d04bbc78SJeremy L Thompson if (!ceed_fallback) return CEED_ERROR_SUCCESS; 92d04bbc78SJeremy L Thompson 93d04bbc78SJeremy L Thompson CeedDebug256(op->ceed, 1, "---------- CeedOperator Fallback ----------\n"); 9413f886e9SJeremy L Thompson CeedDebug(op->ceed, "Creating fallback CeedOperator\n"); 95eaf62fffSJeremy L Thompson 96eaf62fffSJeremy L Thompson // Clone Op 97805fe78eSJeremy L Thompson CeedOperator op_fallback; 98b275c451SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 99b275c451SJeremy L Thompson if (is_composite) { 100b275c451SJeremy L Thompson CeedInt num_suboperators; 101b275c451SJeremy L Thompson CeedOperator *sub_operators; 102b275c451SJeremy L Thompson 1032b730f8bSJeremy L Thompson CeedCall(CeedCompositeOperatorCreate(ceed_fallback, &op_fallback)); 104b275c451SJeremy L Thompson CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators)); 105b275c451SJeremy L Thompson CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators)); 106b275c451SJeremy L Thompson for (CeedInt i = 0; i < num_suboperators; i++) { 107d04bbc78SJeremy L Thompson CeedOperator op_sub_fallback; 108d04bbc78SJeremy L Thompson 109b275c451SJeremy L Thompson CeedCall(CeedOperatorGetFallback(sub_operators[i], &op_sub_fallback)); 1102b730f8bSJeremy L Thompson CeedCall(CeedCompositeOperatorAddSub(op_fallback, op_sub_fallback)); 111805fe78eSJeremy L Thompson } 112805fe78eSJeremy L Thompson } else { 1139e77b9c8SJeremy L Thompson CeedQFunction qf_fallback = NULL, dqf_fallback = NULL, dqfT_fallback = NULL; 1142b730f8bSJeremy L Thompson CeedCall(CeedQFunctionCreateFallback(ceed_fallback, op->qf, &qf_fallback)); 1152b730f8bSJeremy L Thompson CeedCall(CeedQFunctionCreateFallback(ceed_fallback, op->dqf, &dqf_fallback)); 1162b730f8bSJeremy L Thompson CeedCall(CeedQFunctionCreateFallback(ceed_fallback, op->dqfT, &dqfT_fallback)); 1172b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreate(ceed_fallback, qf_fallback, dqf_fallback, dqfT_fallback, &op_fallback)); 118805fe78eSJeremy L Thompson for (CeedInt i = 0; i < op->qf->num_input_fields; i++) { 119437c7c90SJeremy L Thompson CeedCall(CeedOperatorSetField(op_fallback, op->input_fields[i]->field_name, op->input_fields[i]->elem_rstr, op->input_fields[i]->basis, 1202b730f8bSJeremy L Thompson op->input_fields[i]->vec)); 121805fe78eSJeremy L Thompson } 122805fe78eSJeremy L Thompson for (CeedInt i = 0; i < op->qf->num_output_fields; i++) { 123437c7c90SJeremy L Thompson CeedCall(CeedOperatorSetField(op_fallback, op->output_fields[i]->field_name, op->output_fields[i]->elem_rstr, op->output_fields[i]->basis, 1242b730f8bSJeremy L Thompson op->output_fields[i]->vec)); 125805fe78eSJeremy L Thompson } 1262b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataReferenceCopy(op->qf_assembled, &op_fallback->qf_assembled)); 127805fe78eSJeremy L Thompson if (op_fallback->num_qpts == 0) { 1282b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetNumQuadraturePoints(op_fallback, op->num_qpts)); 129805fe78eSJeremy L Thompson } 1309e77b9c8SJeremy L Thompson // Cleanup 1312b730f8bSJeremy L Thompson CeedCall(CeedQFunctionDestroy(&qf_fallback)); 1322b730f8bSJeremy L Thompson CeedCall(CeedQFunctionDestroy(&dqf_fallback)); 1332b730f8bSJeremy L Thompson CeedCall(CeedQFunctionDestroy(&dqfT_fallback)); 134805fe78eSJeremy L Thompson } 1352b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetName(op_fallback, op->name)); 1362b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op_fallback)); 137805fe78eSJeremy L Thompson op->op_fallback = op_fallback; 138eaf62fffSJeremy L Thompson 139eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 140eaf62fffSJeremy L Thompson } 141eaf62fffSJeremy L Thompson 142eaf62fffSJeremy L Thompson /** 143ea61e9acSJeremy L Thompson @brief Retrieve fallback CeedOperator with a reference Ceed for advanced CeedOperator functionality 144d04bbc78SJeremy L Thompson 145d04bbc78SJeremy L Thompson @param[in] op CeedOperator to retrieve fallback for 146d04bbc78SJeremy L Thompson @param[out] op_fallback Fallback CeedOperator 147d04bbc78SJeremy L Thompson 148d04bbc78SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 149d04bbc78SJeremy L Thompson 150d04bbc78SJeremy L Thompson @ref Developer 151d04bbc78SJeremy L Thompson **/ 152d04bbc78SJeremy L Thompson int CeedOperatorGetFallback(CeedOperator op, CeedOperator *op_fallback) { 153d04bbc78SJeremy L Thompson // Create if needed 154d04bbc78SJeremy L Thompson if (!op->op_fallback) { 1552b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreateFallback(op)); 156d04bbc78SJeremy L Thompson } 157d04bbc78SJeremy L Thompson if (op->op_fallback) { 158d04bbc78SJeremy L Thompson bool is_debug; 159d04bbc78SJeremy L Thompson 1602b730f8bSJeremy L Thompson CeedCall(CeedIsDebug(op->ceed, &is_debug)); 161d04bbc78SJeremy L Thompson if (is_debug) { 162b275c451SJeremy L Thompson Ceed ceed, ceed_fallback; 163d04bbc78SJeremy L Thompson const char *resource, *resource_fallback; 164d04bbc78SJeremy L Thompson 165b275c451SJeremy L Thompson CeedCall(CeedOperatorGetCeed(op, &ceed)); 166b275c451SJeremy L Thompson CeedCall(CeedGetOperatorFallbackCeed(ceed, &ceed_fallback)); 167b275c451SJeremy L Thompson CeedCall(CeedGetResource(ceed, &resource)); 1682b730f8bSJeremy L Thompson CeedCall(CeedGetResource(ceed_fallback, &resource_fallback)); 169d04bbc78SJeremy L Thompson 170b275c451SJeremy L Thompson CeedDebug256(ceed, 1, "---------- CeedOperator Fallback ----------\n"); 171b275c451SJeremy L Thompson CeedDebug(ceed, "Falling back from %s operator at address %ld to %s operator at address %ld\n", resource, op, resource_fallback, 1722b730f8bSJeremy L Thompson op->op_fallback); 173d04bbc78SJeremy L Thompson } 174d04bbc78SJeremy L Thompson } 175d04bbc78SJeremy L Thompson *op_fallback = op->op_fallback; 176d04bbc78SJeremy L Thompson 177d04bbc78SJeremy L Thompson return CEED_ERROR_SUCCESS; 178d04bbc78SJeremy L Thompson } 179d04bbc78SJeremy L Thompson 180d04bbc78SJeremy L Thompson /** 181eaf62fffSJeremy L Thompson @brief Select correct basis matrix pointer based on CeedEvalMode 182eaf62fffSJeremy L Thompson 183*352a5e7cSSebastian Grimberg @param[in] basis CeedBasis from which to get the basis matrix 184eaf62fffSJeremy L Thompson @param[in] eval_mode Current basis evaluation mode 185eaf62fffSJeremy L Thompson @param[in] identity Pointer to identity matrix 186eaf62fffSJeremy L Thompson @param[out] basis_ptr Basis pointer to set 187eaf62fffSJeremy L Thompson 188eaf62fffSJeremy L Thompson @ref Developer 189eaf62fffSJeremy L Thompson **/ 190*352a5e7cSSebastian Grimberg static inline int CeedOperatorGetBasisPointer(CeedBasis basis, CeedEvalMode eval_mode, const CeedScalar *identity, const CeedScalar **basis_ptr) { 191eaf62fffSJeremy L Thompson switch (eval_mode) { 192eaf62fffSJeremy L Thompson case CEED_EVAL_NONE: 193eaf62fffSJeremy L Thompson *basis_ptr = identity; 194eaf62fffSJeremy L Thompson break; 195eaf62fffSJeremy L Thompson case CEED_EVAL_INTERP: 196*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetInterp(basis, basis_ptr)); 197eaf62fffSJeremy L Thompson break; 198eaf62fffSJeremy L Thompson case CEED_EVAL_GRAD: 199*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetGrad(basis, basis_ptr)); 200*352a5e7cSSebastian Grimberg break; 201*352a5e7cSSebastian Grimberg case CEED_EVAL_DIV: 202*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetDiv(basis, basis_ptr)); 203*352a5e7cSSebastian Grimberg break; 204*352a5e7cSSebastian Grimberg case CEED_EVAL_CURL: 205*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetCurl(basis, basis_ptr)); 206eaf62fffSJeremy L Thompson break; 207eaf62fffSJeremy L Thompson case CEED_EVAL_WEIGHT: 208eaf62fffSJeremy L Thompson break; // Caught by QF Assembly 209eaf62fffSJeremy L Thompson } 210ed9e99e6SJeremy L Thompson assert(*basis_ptr != NULL); 211*352a5e7cSSebastian Grimberg 212*352a5e7cSSebastian Grimberg return CEED_ERROR_SUCCESS; 213eaf62fffSJeremy L Thompson } 214eaf62fffSJeremy L Thompson 215eaf62fffSJeremy L Thompson /** 216eaf62fffSJeremy L Thompson @brief Create point block restriction for active operator field 217eaf62fffSJeremy L Thompson 218eaf62fffSJeremy L Thompson @param[in] rstr Original CeedElemRestriction for active field 219ea61e9acSJeremy L Thompson @param[out] pointblock_rstr Address of the variable where the newly created CeedElemRestriction will be stored 220eaf62fffSJeremy L Thompson 221eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 222eaf62fffSJeremy L Thompson 223eaf62fffSJeremy L Thompson @ref Developer 224eaf62fffSJeremy L Thompson **/ 2252b730f8bSJeremy L Thompson static int CeedOperatorCreateActivePointBlockRestriction(CeedElemRestriction rstr, CeedElemRestriction *pointblock_rstr) { 226eaf62fffSJeremy L Thompson Ceed ceed; 2272b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetCeed(rstr, &ceed)); 228eaf62fffSJeremy L Thompson const CeedInt *offsets; 2292b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetOffsets(rstr, CEED_MEM_HOST, &offsets)); 230eaf62fffSJeremy L Thompson 231eaf62fffSJeremy L Thompson // Expand offsets 2327b63f5c6SJed Brown CeedInt num_elem, num_comp, elem_size, comp_stride, *pointblock_offsets; 2337b63f5c6SJed Brown CeedSize l_size; 2342b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); 2352b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); 2362b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetElementSize(rstr, &elem_size)); 2372b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetCompStride(rstr, &comp_stride)); 2382b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &l_size)); 239eaf62fffSJeremy L Thompson CeedInt shift = num_comp; 2402b730f8bSJeremy L Thompson if (comp_stride != 1) shift *= num_comp; 2412b730f8bSJeremy L Thompson CeedCall(CeedCalloc(num_elem * elem_size, &pointblock_offsets)); 242eaf62fffSJeremy L Thompson for (CeedInt i = 0; i < num_elem * elem_size; i++) { 243eaf62fffSJeremy L Thompson pointblock_offsets[i] = offsets[i] * shift; 244eaf62fffSJeremy L Thompson } 245eaf62fffSJeremy L Thompson 246eaf62fffSJeremy L Thompson // Create new restriction 2472b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionCreate(ceed, num_elem, elem_size, num_comp * num_comp, 1, l_size * num_comp, CEED_MEM_HOST, CEED_OWN_POINTER, 2482b730f8bSJeremy L Thompson pointblock_offsets, pointblock_rstr)); 249eaf62fffSJeremy L Thompson 250eaf62fffSJeremy L Thompson // Cleanup 2512b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionRestoreOffsets(rstr, &offsets)); 252eaf62fffSJeremy L Thompson 253eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 254eaf62fffSJeremy L Thompson } 255eaf62fffSJeremy L Thompson 256eaf62fffSJeremy L Thompson /** 257eaf62fffSJeremy L Thompson @brief Core logic for assembling operator diagonal or point block diagonal 258eaf62fffSJeremy L Thompson 259eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble point block diagonal 260ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else CEED_REQUEST_IMMEDIATE 261eaf62fffSJeremy L Thompson @param[in] is_pointblock Boolean flag to assemble diagonal or point block diagonal 262eaf62fffSJeremy L Thompson @param[out] assembled CeedVector to store assembled diagonal 263eaf62fffSJeremy L Thompson 264eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 265eaf62fffSJeremy L Thompson 266eaf62fffSJeremy L Thompson @ref Developer 267eaf62fffSJeremy L Thompson **/ 2682b730f8bSJeremy L Thompson static inline int CeedSingleOperatorAssembleAddDiagonal_Core(CeedOperator op, CeedRequest *request, const bool is_pointblock, CeedVector assembled) { 269eaf62fffSJeremy L Thompson Ceed ceed; 2702b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetCeed(op, &ceed)); 271eaf62fffSJeremy L Thompson 272eaf62fffSJeremy L Thompson // Assemble QFunction 273eaf62fffSJeremy L Thompson CeedQFunction qf; 274437c7c90SJeremy L Thompson const CeedScalar *assembled_qf_array; 275eaf62fffSJeremy L Thompson CeedVector assembled_qf; 276437c7c90SJeremy L Thompson CeedElemRestriction assembled_elem_rstr; 277437c7c90SJeremy L Thompson CeedInt num_input_fields, num_output_fields; 278eaf62fffSJeremy L Thompson CeedInt layout[3]; 279437c7c90SJeremy L Thompson 280437c7c90SJeremy L Thompson CeedCall(CeedOperatorGetQFunction(op, &qf)); 281437c7c90SJeremy L Thompson CeedCall(CeedQFunctionGetNumArgs(qf, &num_input_fields, &num_output_fields)); 282437c7c90SJeremy L Thompson CeedCall(CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op, &assembled_qf, &assembled_elem_rstr, request)); 283437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionGetELayout(assembled_elem_rstr, &layout)); 284437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&assembled_elem_rstr)); 285437c7c90SJeremy L Thompson CeedCall(CeedVectorGetArrayRead(assembled_qf, CEED_MEM_HOST, &assembled_qf_array)); 286eaf62fffSJeremy L Thompson 287ed9e99e6SJeremy L Thompson // Get assembly data 288ed9e99e6SJeremy L Thompson CeedOperatorAssemblyData data; 289437c7c90SJeremy L Thompson const CeedEvalMode **eval_modes_in, **eval_modes_out; 290437c7c90SJeremy L Thompson CeedInt *num_eval_modes_in, *num_eval_modes_out, num_active_bases; 291437c7c90SJeremy L Thompson CeedSize **eval_mode_offsets_in, **eval_mode_offsets_out, num_output_components; 292437c7c90SJeremy L Thompson CeedBasis *active_bases; 293437c7c90SJeremy L Thompson CeedElemRestriction *active_elem_rstrs; 294437c7c90SJeremy L Thompson CeedCall(CeedOperatorGetOperatorAssemblyData(op, &data)); 295437c7c90SJeremy L Thompson CeedCall(CeedOperatorAssemblyDataGetEvalModes(data, &num_active_bases, &num_eval_modes_in, &eval_modes_in, &eval_mode_offsets_in, 296437c7c90SJeremy L Thompson &num_eval_modes_out, &eval_modes_out, &eval_mode_offsets_out, &num_output_components)); 297437c7c90SJeremy L Thompson CeedCall(CeedOperatorAssemblyDataGetBases(data, NULL, &active_bases, NULL, NULL)); 298437c7c90SJeremy L Thompson CeedCall(CeedOperatorAssemblyDataGetElemRestrictions(data, NULL, &active_elem_rstrs)); 299437c7c90SJeremy L Thompson 300437c7c90SJeremy L Thompson // Loop over all active bases 301437c7c90SJeremy L Thompson for (CeedInt b = 0; b < num_active_bases; b++) { 302eaf62fffSJeremy L Thompson // Assemble point block diagonal restriction, if needed 303437c7c90SJeremy L Thompson CeedElemRestriction diag_elem_rstr = active_elem_rstrs[b]; 304437c7c90SJeremy L Thompson 305eaf62fffSJeremy L Thompson if (is_pointblock) { 306437c7c90SJeremy L Thompson CeedElemRestriction point_block_elem_rstr; 307437c7c90SJeremy L Thompson 308437c7c90SJeremy L Thompson CeedCall(CeedOperatorCreateActivePointBlockRestriction(diag_elem_rstr, &point_block_elem_rstr)); 309437c7c90SJeremy L Thompson diag_elem_rstr = point_block_elem_rstr; 310eaf62fffSJeremy L Thompson } 311eaf62fffSJeremy L Thompson 312eaf62fffSJeremy L Thompson // Create diagonal vector 313eaf62fffSJeremy L Thompson CeedVector elem_diag; 314437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionCreateVector(diag_elem_rstr, NULL, &elem_diag)); 315eaf62fffSJeremy L Thompson 316eaf62fffSJeremy L Thompson // Assemble element operator diagonals 3179c774eddSJeremy L Thompson CeedScalar *elem_diag_array; 318437c7c90SJeremy L Thompson CeedInt num_elem, num_nodes, num_qpts, num_components; 319437c7c90SJeremy L Thompson 3202b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(elem_diag, 0.0)); 3212b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArray(elem_diag, CEED_MEM_HOST, &elem_diag_array)); 322437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionGetNumElements(diag_elem_rstr, &num_elem)); 323437c7c90SJeremy L Thompson CeedCall(CeedBasisGetNumNodes(active_bases[b], &num_nodes)); 324437c7c90SJeremy L Thompson CeedCall(CeedBasisGetNumComponents(active_bases[b], &num_components)); 325437c7c90SJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(active_bases[b], &num_qpts)); 326ed9e99e6SJeremy L Thompson 327*352a5e7cSSebastian Grimberg // Construct identity matrix for basis if required 328ed9e99e6SJeremy L Thompson bool has_eval_none = false; 329*352a5e7cSSebastian Grimberg CeedScalar *identity = NULL; 330437c7c90SJeremy L Thompson for (CeedInt i = 0; i < num_eval_modes_in[b]; i++) { 331437c7c90SJeremy L Thompson has_eval_none = has_eval_none || (eval_modes_in[b][i] == CEED_EVAL_NONE); 332ed9e99e6SJeremy L Thompson } 333437c7c90SJeremy L Thompson for (CeedInt i = 0; i < num_eval_modes_out[b]; i++) { 334437c7c90SJeremy L Thompson has_eval_none = has_eval_none || (eval_modes_out[b][i] == CEED_EVAL_NONE); 335ed9e99e6SJeremy L Thompson } 336ed9e99e6SJeremy L Thompson if (has_eval_none) { 3372b730f8bSJeremy L Thompson CeedCall(CeedCalloc(num_qpts * num_nodes, &identity)); 3382b730f8bSJeremy L Thompson for (CeedInt i = 0; i < (num_nodes < num_qpts ? num_nodes : num_qpts); i++) identity[i * num_nodes + i] = 1.0; 339eaf62fffSJeremy L Thompson } 340*352a5e7cSSebastian Grimberg 341eaf62fffSJeremy L Thompson // Compute the diagonal of B^T D B 342eaf62fffSJeremy L Thompson // Each element 343eaf62fffSJeremy L Thompson for (CeedInt e = 0; e < num_elem; e++) { 344eaf62fffSJeremy L Thompson // Each basis eval mode pair 345*352a5e7cSSebastian Grimberg CeedInt d_out = 0, q_comp_out; 346*352a5e7cSSebastian Grimberg CeedEvalMode eval_mode_out_prev = CEED_EVAL_NONE; 347437c7c90SJeremy L Thompson for (CeedInt e_out = 0; e_out < num_eval_modes_out[b]; e_out++) { 348437c7c90SJeremy L Thompson const CeedScalar *B_t = NULL; 349*352a5e7cSSebastian Grimberg CeedOperatorGetBasisPointer(active_bases[b], eval_modes_out[b][e_out], identity, &B_t); 350*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumQuadratureComponents(active_bases[b], eval_modes_out[b][e_out], &q_comp_out)); 351*352a5e7cSSebastian Grimberg if (q_comp_out > 1) { 352*352a5e7cSSebastian Grimberg if (e_out == 0 || eval_modes_out[b][e_out] != eval_mode_out_prev) d_out = 0; 353*352a5e7cSSebastian Grimberg else B_t = &B_t[(++d_out) * num_qpts * num_nodes]; 354*352a5e7cSSebastian Grimberg } 355*352a5e7cSSebastian Grimberg eval_mode_out_prev = eval_modes_out[b][e_out]; 356*352a5e7cSSebastian Grimberg 357*352a5e7cSSebastian Grimberg CeedInt d_in = 0, q_comp_in; 358*352a5e7cSSebastian Grimberg CeedEvalMode eval_mode_in_prev = CEED_EVAL_NONE; 359437c7c90SJeremy L Thompson for (CeedInt e_in = 0; e_in < num_eval_modes_in[b]; e_in++) { 360437c7c90SJeremy L Thompson const CeedScalar *B = NULL; 361*352a5e7cSSebastian Grimberg CeedOperatorGetBasisPointer(active_bases[b], eval_modes_in[b][e_in], identity, &B); 362*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumQuadratureComponents(active_bases[b], eval_modes_in[b][e_in], &q_comp_in)); 363*352a5e7cSSebastian Grimberg if (q_comp_in > 1) { 364*352a5e7cSSebastian Grimberg if (e_in == 0 || eval_modes_in[b][e_in] != eval_mode_in_prev) d_in = 0; 365*352a5e7cSSebastian Grimberg else B = &B[(++d_in) * num_qpts * num_nodes]; 366*352a5e7cSSebastian Grimberg } 367*352a5e7cSSebastian Grimberg eval_mode_in_prev = eval_modes_in[b][e_in]; 368*352a5e7cSSebastian Grimberg 369eaf62fffSJeremy L Thompson // Each component 370437c7c90SJeremy L Thompson for (CeedInt c_out = 0; c_out < num_components; c_out++) { 371437c7c90SJeremy L Thompson // Each qpt/node pair 3722b730f8bSJeremy L Thompson for (CeedInt q = 0; q < num_qpts; q++) { 373eaf62fffSJeremy L Thompson if (is_pointblock) { 374eaf62fffSJeremy L Thompson // Point Block Diagonal 375437c7c90SJeremy L Thompson for (CeedInt c_in = 0; c_in < num_components; c_in++) { 376437c7c90SJeremy L Thompson const CeedInt c_offset = (eval_mode_offsets_in[b][e_in] + c_in) * num_output_components + eval_mode_offsets_out[b][e_out] + c_out; 377437c7c90SJeremy L Thompson const CeedScalar qf_value = assembled_qf_array[q * layout[0] + c_offset * layout[1] + e * layout[2]]; 3782b730f8bSJeremy L Thompson for (CeedInt n = 0; n < num_nodes; n++) { 379437c7c90SJeremy L Thompson elem_diag_array[((e * num_components + c_out) * num_components + c_in) * num_nodes + n] += 380437c7c90SJeremy L Thompson B_t[q * num_nodes + n] * qf_value * B[q * num_nodes + n]; 381eaf62fffSJeremy L Thompson } 3822b730f8bSJeremy L Thompson } 383eaf62fffSJeremy L Thompson } else { 384eaf62fffSJeremy L Thompson // Diagonal Only 385437c7c90SJeremy L Thompson const CeedInt c_offset = (eval_mode_offsets_in[b][e_in] + c_out) * num_output_components + eval_mode_offsets_out[b][e_out] + c_out; 386437c7c90SJeremy L Thompson const CeedScalar qf_value = assembled_qf_array[q * layout[0] + c_offset * layout[1] + e * layout[2]]; 3872b730f8bSJeremy L Thompson for (CeedInt n = 0; n < num_nodes; n++) { 388437c7c90SJeremy L Thompson elem_diag_array[(e * num_components + c_out) * num_nodes + n] += B_t[q * num_nodes + n] * qf_value * B[q * num_nodes + n]; 389eaf62fffSJeremy L Thompson } 390eaf62fffSJeremy L Thompson } 391eaf62fffSJeremy L Thompson } 392eaf62fffSJeremy L Thompson } 3932b730f8bSJeremy L Thompson } 3942b730f8bSJeremy L Thompson } 3952b730f8bSJeremy L Thompson } 3962b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(elem_diag, &elem_diag_array)); 397eaf62fffSJeremy L Thompson 398eaf62fffSJeremy L Thompson // Assemble local operator diagonal 399437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionApply(diag_elem_rstr, CEED_TRANSPOSE, elem_diag, assembled, request)); 400eaf62fffSJeremy L Thompson 401eaf62fffSJeremy L Thompson // Cleanup 402437c7c90SJeremy L Thompson if (is_pointblock) CeedCall(CeedElemRestrictionDestroy(&diag_elem_rstr)); 4032b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&elem_diag)); 4042b730f8bSJeremy L Thompson CeedCall(CeedFree(&identity)); 405437c7c90SJeremy L Thompson } 406437c7c90SJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(assembled_qf, &assembled_qf_array)); 407437c7c90SJeremy L Thompson CeedCall(CeedVectorDestroy(&assembled_qf)); 408eaf62fffSJeremy L Thompson 409eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 410eaf62fffSJeremy L Thompson } 411eaf62fffSJeremy L Thompson 412eaf62fffSJeremy L Thompson /** 413eaf62fffSJeremy L Thompson @brief Core logic for assembling composite operator diagonal 414eaf62fffSJeremy L Thompson 415eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble point block diagonal 416ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else CEED_REQUEST_IMMEDIATE 417eaf62fffSJeremy L Thompson @param[in] is_pointblock Boolean flag to assemble diagonal or point block diagonal 418eaf62fffSJeremy L Thompson @param[out] assembled CeedVector to store assembled diagonal 419eaf62fffSJeremy L Thompson 420eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 421eaf62fffSJeremy L Thompson 422eaf62fffSJeremy L Thompson @ref Developer 423eaf62fffSJeremy L Thompson **/ 4242b730f8bSJeremy L Thompson static inline int CeedCompositeOperatorLinearAssembleAddDiagonal(CeedOperator op, CeedRequest *request, const bool is_pointblock, 425eaf62fffSJeremy L Thompson CeedVector assembled) { 426eaf62fffSJeremy L Thompson CeedInt num_sub; 427eaf62fffSJeremy L Thompson CeedOperator *suboperators; 428c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetNumSub(op, &num_sub)); 429c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetSubList(op, &suboperators)); 430eaf62fffSJeremy L Thompson for (CeedInt i = 0; i < num_sub; i++) { 4316aa95790SJeremy L Thompson if (is_pointblock) { 4322b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddPointBlockDiagonal(suboperators[i], assembled, request)); 4336aa95790SJeremy L Thompson } else { 4342b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddDiagonal(suboperators[i], assembled, request)); 4356aa95790SJeremy L Thompson } 436eaf62fffSJeremy L Thompson } 437eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 438eaf62fffSJeremy L Thompson } 439eaf62fffSJeremy L Thompson 440eaf62fffSJeremy L Thompson /** 441eaf62fffSJeremy L Thompson @brief Build nonzero pattern for non-composite operator 442eaf62fffSJeremy L Thompson 443eaf62fffSJeremy L Thompson Users should generally use CeedOperatorLinearAssembleSymbolic() 444eaf62fffSJeremy L Thompson 445eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble nonzero pattern 446eaf62fffSJeremy L Thompson @param[in] offset Offset for number of entries 447eaf62fffSJeremy L Thompson @param[out] rows Row number for each entry 448eaf62fffSJeremy L Thompson @param[out] cols Column number for each entry 449eaf62fffSJeremy L Thompson 450eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 451eaf62fffSJeremy L Thompson 452eaf62fffSJeremy L Thompson @ref Developer 453eaf62fffSJeremy L Thompson **/ 4542b730f8bSJeremy L Thompson static int CeedSingleOperatorAssembleSymbolic(CeedOperator op, CeedInt offset, CeedInt *rows, CeedInt *cols) { 455f3d47e36SJeremy L Thompson Ceed ceed; 456f3d47e36SJeremy L Thompson bool is_composite; 457f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetCeed(op, &ceed)); 458f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 459f3d47e36SJeremy L Thompson 460b275c451SJeremy L Thompson if (is_composite) { 461eaf62fffSJeremy L Thompson // LCOV_EXCL_START 4622b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Composite operator not supported"); 463eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 4642b730f8bSJeremy L Thompson } 465eaf62fffSJeremy L Thompson 466c9366a6bSJeremy L Thompson CeedSize num_nodes; 4672b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveVectorLengths(op, &num_nodes, NULL)); 468eaf62fffSJeremy L Thompson CeedElemRestriction rstr_in; 4692b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveElemRestriction(op, &rstr_in)); 470e79b91d9SJeremy L Thompson CeedInt num_elem, elem_size, num_comp; 4712b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumElements(rstr_in, &num_elem)); 4722b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetElementSize(rstr_in, &elem_size)); 4732b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumComponents(rstr_in, &num_comp)); 474eaf62fffSJeremy L Thompson CeedInt layout_er[3]; 4752b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetELayout(rstr_in, &layout_er)); 476eaf62fffSJeremy L Thompson 477eaf62fffSJeremy L Thompson CeedInt local_num_entries = elem_size * num_comp * elem_size * num_comp * num_elem; 478eaf62fffSJeremy L Thompson 479eaf62fffSJeremy L Thompson // Determine elem_dof relation 480eaf62fffSJeremy L Thompson CeedVector index_vec; 4812b730f8bSJeremy L Thompson CeedCall(CeedVectorCreate(ceed, num_nodes, &index_vec)); 482eaf62fffSJeremy L Thompson CeedScalar *array; 4832b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayWrite(index_vec, CEED_MEM_HOST, &array)); 484ed9e99e6SJeremy L Thompson for (CeedInt i = 0; i < num_nodes; i++) array[i] = i; 4852b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(index_vec, &array)); 486eaf62fffSJeremy L Thompson CeedVector elem_dof; 4872b730f8bSJeremy L Thompson CeedCall(CeedVectorCreate(ceed, num_elem * elem_size * num_comp, &elem_dof)); 4882b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(elem_dof, 0.0)); 4892b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionApply(rstr_in, CEED_NOTRANSPOSE, index_vec, elem_dof, CEED_REQUEST_IMMEDIATE)); 490eaf62fffSJeremy L Thompson const CeedScalar *elem_dof_a; 4912b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(elem_dof, CEED_MEM_HOST, &elem_dof_a)); 4922b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&index_vec)); 493eaf62fffSJeremy L Thompson 494eaf62fffSJeremy L Thompson // Determine i, j locations for element matrices 495eaf62fffSJeremy L Thompson CeedInt count = 0; 496ed9e99e6SJeremy L Thompson for (CeedInt e = 0; e < num_elem; e++) { 497ed9e99e6SJeremy L Thompson for (CeedInt comp_in = 0; comp_in < num_comp; comp_in++) { 498ed9e99e6SJeremy L Thompson for (CeedInt comp_out = 0; comp_out < num_comp; comp_out++) { 499ed9e99e6SJeremy L Thompson for (CeedInt i = 0; i < elem_size; i++) { 500ed9e99e6SJeremy L Thompson for (CeedInt j = 0; j < elem_size; j++) { 5012b730f8bSJeremy L Thompson const CeedInt elem_dof_index_row = i * layout_er[0] + (comp_out)*layout_er[1] + e * layout_er[2]; 5022b730f8bSJeremy L Thompson const CeedInt elem_dof_index_col = j * layout_er[0] + comp_in * layout_er[1] + e * layout_er[2]; 503eaf62fffSJeremy L Thompson 504eaf62fffSJeremy L Thompson const CeedInt row = elem_dof_a[elem_dof_index_row]; 505eaf62fffSJeremy L Thompson const CeedInt col = elem_dof_a[elem_dof_index_col]; 506eaf62fffSJeremy L Thompson 507eaf62fffSJeremy L Thompson rows[offset + count] = row; 508eaf62fffSJeremy L Thompson cols[offset + count] = col; 509eaf62fffSJeremy L Thompson count++; 510eaf62fffSJeremy L Thompson } 511eaf62fffSJeremy L Thompson } 512eaf62fffSJeremy L Thompson } 513eaf62fffSJeremy L Thompson } 514eaf62fffSJeremy L Thompson } 5152b730f8bSJeremy L Thompson if (count != local_num_entries) { 516eaf62fffSJeremy L Thompson // LCOV_EXCL_START 517eaf62fffSJeremy L Thompson return CeedError(ceed, CEED_ERROR_MAJOR, "Error computing assembled entries"); 518eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 5192b730f8bSJeremy L Thompson } 5202b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(elem_dof, &elem_dof_a)); 5212b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&elem_dof)); 522eaf62fffSJeremy L Thompson 523eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 524eaf62fffSJeremy L Thompson } 525eaf62fffSJeremy L Thompson 526eaf62fffSJeremy L Thompson /** 527eaf62fffSJeremy L Thompson @brief Assemble nonzero entries for non-composite operator 528eaf62fffSJeremy L Thompson 529eaf62fffSJeremy L Thompson Users should generally use CeedOperatorLinearAssemble() 530eaf62fffSJeremy L Thompson 531eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble 532ea61e9acSJeremy L Thompson @param[in] offset Offset for number of entries 533eaf62fffSJeremy L Thompson @param[out] values Values to assemble into matrix 534eaf62fffSJeremy L Thompson 535eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 536eaf62fffSJeremy L Thompson 537eaf62fffSJeremy L Thompson @ref Developer 538eaf62fffSJeremy L Thompson **/ 5392b730f8bSJeremy L Thompson static int CeedSingleOperatorAssemble(CeedOperator op, CeedInt offset, CeedVector values) { 540f3d47e36SJeremy L Thompson Ceed ceed; 541f3d47e36SJeremy L Thompson bool is_composite; 542f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetCeed(op, &ceed)); 543f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 544f3d47e36SJeremy L Thompson 545f3d47e36SJeremy L Thompson if (is_composite) { 546eaf62fffSJeremy L Thompson // LCOV_EXCL_START 5472b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Composite operator not supported"); 548eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 5492b730f8bSJeremy L Thompson } 550f3d47e36SJeremy L Thompson 551f3d47e36SJeremy L Thompson // Early exit for empty operator 552f3d47e36SJeremy L Thompson { 553f3d47e36SJeremy L Thompson CeedInt num_elem = 0; 554f3d47e36SJeremy L Thompson 555f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetNumElements(op, &num_elem)); 556f3d47e36SJeremy L Thompson if (num_elem == 0) return CEED_ERROR_SUCCESS; 557f3d47e36SJeremy L Thompson } 558eaf62fffSJeremy L Thompson 559cefa2673SJeremy L Thompson if (op->LinearAssembleSingle) { 560cefa2673SJeremy L Thompson // Backend version 5612b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleSingle(op, offset, values)); 562cefa2673SJeremy L Thompson return CEED_ERROR_SUCCESS; 563cefa2673SJeremy L Thompson } else { 564cefa2673SJeremy L Thompson // Operator fallback 565cefa2673SJeremy L Thompson CeedOperator op_fallback; 566cefa2673SJeremy L Thompson 5672b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 568cefa2673SJeremy L Thompson if (op_fallback) { 5692b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemble(op_fallback, offset, values)); 570cefa2673SJeremy L Thompson return CEED_ERROR_SUCCESS; 571cefa2673SJeremy L Thompson } 572cefa2673SJeremy L Thompson } 573cefa2673SJeremy L Thompson 574eaf62fffSJeremy L Thompson // Assemble QFunction 575eaf62fffSJeremy L Thompson CeedQFunction qf; 5762b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetQFunction(op, &qf)); 577eaf62fffSJeremy L Thompson CeedVector assembled_qf; 578eaf62fffSJeremy L Thompson CeedElemRestriction rstr_q; 5792b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op, &assembled_qf, &rstr_q, CEED_REQUEST_IMMEDIATE)); 5801f9221feSJeremy L Thompson CeedSize qf_length; 5812b730f8bSJeremy L Thompson CeedCall(CeedVectorGetLength(assembled_qf, &qf_length)); 582eaf62fffSJeremy L Thompson 5837e7773b5SJeremy L Thompson CeedInt num_input_fields, num_output_fields; 584eaf62fffSJeremy L Thompson CeedOperatorField *input_fields; 585eaf62fffSJeremy L Thompson CeedOperatorField *output_fields; 5862b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFields(op, &num_input_fields, &input_fields, &num_output_fields, &output_fields)); 587eaf62fffSJeremy L Thompson 588ed9e99e6SJeremy L Thompson // Get assembly data 589ed9e99e6SJeremy L Thompson CeedOperatorAssemblyData data; 5902b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetOperatorAssemblyData(op, &data)); 591437c7c90SJeremy L Thompson const CeedEvalMode **eval_modes_in, **eval_modes_out; 592437c7c90SJeremy L Thompson CeedInt *num_eval_modes_in, *num_eval_modes_out, num_active_bases; 593437c7c90SJeremy L Thompson CeedCall(CeedOperatorAssemblyDataGetEvalModes(data, &num_active_bases, &num_eval_modes_in, &eval_modes_in, NULL, &num_eval_modes_out, 594437c7c90SJeremy L Thompson &eval_modes_out, NULL, NULL)); 595437c7c90SJeremy L Thompson CeedBasis *bases; 596437c7c90SJeremy L Thompson CeedCall(CeedOperatorAssemblyDataGetBases(data, NULL, &bases, NULL, NULL)); 597437c7c90SJeremy L Thompson CeedBasis basis_in = bases[0]; 598eaf62fffSJeremy L Thompson 599437c7c90SJeremy L Thompson if (num_active_bases > 1) { 600437c7c90SJeremy L Thompson // LCOV_EXCL_START 601437c7c90SJeremy L Thompson return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Cannot assemble operator with multiple active bases"); 602437c7c90SJeremy L Thompson // LCOV_EXCL_STOP 603437c7c90SJeremy L Thompson } 604437c7c90SJeremy L Thompson if (num_eval_modes_in[0] == 0 || num_eval_modes_out[0] == 0) { 605eaf62fffSJeremy L Thompson // LCOV_EXCL_START 6062b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Cannot assemble operator with out inputs/outputs"); 607eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 6082b730f8bSJeremy L Thompson } 609eaf62fffSJeremy L Thompson 610ed9e99e6SJeremy L Thompson CeedElemRestriction active_rstr; 611eaf62fffSJeremy L Thompson CeedInt num_elem, elem_size, num_qpts, num_comp; 6122b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveElemRestriction(op, &active_rstr)); 6132b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumElements(active_rstr, &num_elem)); 6142b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetElementSize(active_rstr, &elem_size)); 6152b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumComponents(active_rstr, &num_comp)); 6162b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(basis_in, &num_qpts)); 617eaf62fffSJeremy L Thompson 618eaf62fffSJeremy L Thompson CeedInt local_num_entries = elem_size * num_comp * elem_size * num_comp * num_elem; 619eaf62fffSJeremy L Thompson 620eaf62fffSJeremy L Thompson // loop over elements and put in data structure 621eaf62fffSJeremy L Thompson const CeedScalar *assembled_qf_array; 6222b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(assembled_qf, CEED_MEM_HOST, &assembled_qf_array)); 623eaf62fffSJeremy L Thompson 624eaf62fffSJeremy L Thompson CeedInt layout_qf[3]; 6252b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetELayout(rstr_q, &layout_qf)); 6262b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&rstr_q)); 627eaf62fffSJeremy L Thompson 628eaf62fffSJeremy L Thompson // we store B_mat_in, B_mat_out, BTD, elem_mat in row-major order 629437c7c90SJeremy L Thompson const CeedScalar **B_mats_in, **B_mats_out; 630437c7c90SJeremy L Thompson CeedCall(CeedOperatorAssemblyDataGetBases(data, NULL, NULL, &B_mats_in, &B_mats_out)); 631437c7c90SJeremy L Thompson const CeedScalar *B_mat_in = B_mats_in[0], *B_mat_out = B_mats_out[0]; 632437c7c90SJeremy L Thompson CeedScalar BTD_mat[elem_size * num_qpts * num_eval_modes_in[0]]; 633eaf62fffSJeremy L Thompson CeedScalar elem_mat[elem_size * elem_size]; 63492ae7e47SJeremy L Thompson CeedInt count = 0; 635eaf62fffSJeremy L Thompson CeedScalar *vals; 63628ec399dSJeremy L Thompson CeedCall(CeedVectorGetArray(values, CEED_MEM_HOST, &vals)); 637ed9e99e6SJeremy L Thompson for (CeedInt e = 0; e < num_elem; e++) { 638ed9e99e6SJeremy L Thompson for (CeedInt comp_in = 0; comp_in < num_comp; comp_in++) { 639ed9e99e6SJeremy L Thompson for (CeedInt comp_out = 0; comp_out < num_comp; comp_out++) { 640ed9e99e6SJeremy L Thompson // Compute B^T*D 641ed9e99e6SJeremy L Thompson for (CeedInt n = 0; n < elem_size; n++) { 642ed9e99e6SJeremy L Thompson for (CeedInt q = 0; q < num_qpts; q++) { 643437c7c90SJeremy L Thompson for (CeedInt e_in = 0; e_in < num_eval_modes_in[0]; e_in++) { 644437c7c90SJeremy L Thompson const CeedInt btd_index = n * (num_qpts * num_eval_modes_in[0]) + (num_eval_modes_in[0] * q + e_in); 645067fd99fSJeremy L Thompson CeedScalar sum = 0.0; 646437c7c90SJeremy L Thompson for (CeedInt e_out = 0; e_out < num_eval_modes_out[0]; e_out++) { 647437c7c90SJeremy L Thompson const CeedInt b_out_index = (num_eval_modes_out[0] * q + e_out) * elem_size + n; 648437c7c90SJeremy L Thompson const CeedInt eval_mode_index = ((e_in * num_comp + comp_in) * num_eval_modes_out[0] + e_out) * num_comp + comp_out; 6492b730f8bSJeremy L Thompson const CeedInt qf_index = q * layout_qf[0] + eval_mode_index * layout_qf[1] + e * layout_qf[2]; 650067fd99fSJeremy L Thompson sum += B_mat_out[b_out_index] * assembled_qf_array[qf_index]; 651eaf62fffSJeremy L Thompson } 652067fd99fSJeremy L Thompson BTD_mat[btd_index] = sum; 653ed9e99e6SJeremy L Thompson } 654ed9e99e6SJeremy L Thompson } 655eaf62fffSJeremy L Thompson } 656eaf62fffSJeremy L Thompson // form element matrix itself (for each block component) 657437c7c90SJeremy L Thompson CeedCall(CeedMatrixMatrixMultiply(ceed, BTD_mat, B_mat_in, elem_mat, elem_size, elem_size, num_qpts * num_eval_modes_in[0])); 658eaf62fffSJeremy L Thompson 659eaf62fffSJeremy L Thompson // put element matrix in coordinate data structure 660ed9e99e6SJeremy L Thompson for (CeedInt i = 0; i < elem_size; i++) { 661ed9e99e6SJeremy L Thompson for (CeedInt j = 0; j < elem_size; j++) { 662eaf62fffSJeremy L Thompson vals[offset + count] = elem_mat[i * elem_size + j]; 663eaf62fffSJeremy L Thompson count++; 664eaf62fffSJeremy L Thompson } 665eaf62fffSJeremy L Thompson } 666eaf62fffSJeremy L Thompson } 667eaf62fffSJeremy L Thompson } 668eaf62fffSJeremy L Thompson } 6692b730f8bSJeremy L Thompson if (count != local_num_entries) { 670eaf62fffSJeremy L Thompson // LCOV_EXCL_START 671eaf62fffSJeremy L Thompson return CeedError(ceed, CEED_ERROR_MAJOR, "Error computing entries"); 672eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 6732b730f8bSJeremy L Thompson } 6742b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(values, &vals)); 675eaf62fffSJeremy L Thompson 6762b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(assembled_qf, &assembled_qf_array)); 6772b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&assembled_qf)); 678eaf62fffSJeremy L Thompson 679eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 680eaf62fffSJeremy L Thompson } 681eaf62fffSJeremy L Thompson 682eaf62fffSJeremy L Thompson /** 683eaf62fffSJeremy L Thompson @brief Count number of entries for assembled CeedOperator 684eaf62fffSJeremy L Thompson 685eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble 686eaf62fffSJeremy L Thompson @param[out] num_entries Number of entries in assembled representation 687eaf62fffSJeremy L Thompson 688eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 689eaf62fffSJeremy L Thompson 690eaf62fffSJeremy L Thompson @ref Utility 691eaf62fffSJeremy L Thompson **/ 6922b730f8bSJeremy L Thompson static int CeedSingleOperatorAssemblyCountEntries(CeedOperator op, CeedInt *num_entries) { 693b275c451SJeremy L Thompson bool is_composite; 694eaf62fffSJeremy L Thompson CeedElemRestriction rstr; 695eaf62fffSJeremy L Thompson CeedInt num_elem, elem_size, num_comp; 696eaf62fffSJeremy L Thompson 697b275c451SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 698b275c451SJeremy L Thompson if (is_composite) { 699eaf62fffSJeremy L Thompson // LCOV_EXCL_START 7002b730f8bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_UNSUPPORTED, "Composite operator not supported"); 701eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 7022b730f8bSJeremy L Thompson } 7032b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveElemRestriction(op, &rstr)); 7042b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); 7052b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetElementSize(rstr, &elem_size)); 7062b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); 707eaf62fffSJeremy L Thompson *num_entries = elem_size * num_comp * elem_size * num_comp * num_elem; 708eaf62fffSJeremy L Thompson 709eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 710eaf62fffSJeremy L Thompson } 711eaf62fffSJeremy L Thompson 712eaf62fffSJeremy L Thompson /** 713ea61e9acSJeremy L Thompson @brief Common code for creating a multigrid coarse operator and level transfer operators for a CeedOperator 714eaf62fffSJeremy L Thompson 715eaf62fffSJeremy L Thompson @param[in] op_fine Fine grid operator 71685bb9dcfSJeremy L Thompson @param[in] p_mult_fine L-vector multiplicity in parallel gather/scatter, or NULL if not creating prolongation/restriction operators 717eaf62fffSJeremy L Thompson @param[in] rstr_coarse Coarse grid restriction 718eaf62fffSJeremy L Thompson @param[in] basis_coarse Coarse grid active vector basis 71985bb9dcfSJeremy L Thompson @param[in] basis_c_to_f Basis for coarse to fine interpolation, or NULL if not creating prolongation/restriction operators 720eaf62fffSJeremy L Thompson @param[out] op_coarse Coarse grid operator 72185bb9dcfSJeremy L Thompson @param[out] op_prolong Coarse to fine operator, or NULL 72285bb9dcfSJeremy L Thompson @param[out] op_restrict Fine to coarse operator, or NULL 723eaf62fffSJeremy L Thompson 724eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 725eaf62fffSJeremy L Thompson 726eaf62fffSJeremy L Thompson @ref Developer 727eaf62fffSJeremy L Thompson **/ 7282b730f8bSJeremy L Thompson static int CeedSingleOperatorMultigridLevel(CeedOperator op_fine, CeedVector p_mult_fine, CeedElemRestriction rstr_coarse, CeedBasis basis_coarse, 7292b730f8bSJeremy L Thompson CeedBasis basis_c_to_f, CeedOperator *op_coarse, CeedOperator *op_prolong, CeedOperator *op_restrict) { 730eaf62fffSJeremy L Thompson Ceed ceed; 73185bb9dcfSJeremy L Thompson CeedVector mult_vec = NULL; 7322b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetCeed(op_fine, &ceed)); 733eaf62fffSJeremy L Thompson 734eaf62fffSJeremy L Thompson // Check for composite operator 735eaf62fffSJeremy L Thompson bool is_composite; 7362b730f8bSJeremy L Thompson CeedCall(CeedOperatorIsComposite(op_fine, &is_composite)); 7372b730f8bSJeremy L Thompson if (is_composite) { 738eaf62fffSJeremy L Thompson // LCOV_EXCL_START 7392b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_UNSUPPORTED, "Automatic multigrid setup for composite operators not supported"); 740eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 7412b730f8bSJeremy L Thompson } 742eaf62fffSJeremy L Thompson 743eaf62fffSJeremy L Thompson // Coarse Grid 7442b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreate(ceed, op_fine->qf, op_fine->dqf, op_fine->dqfT, op_coarse)); 745eaf62fffSJeremy L Thompson CeedElemRestriction rstr_fine = NULL; 746eaf62fffSJeremy L Thompson // -- Clone input fields 74792ae7e47SJeremy L Thompson for (CeedInt i = 0; i < op_fine->qf->num_input_fields; i++) { 748eaf62fffSJeremy L Thompson if (op_fine->input_fields[i]->vec == CEED_VECTOR_ACTIVE) { 749437c7c90SJeremy L Thompson rstr_fine = op_fine->input_fields[i]->elem_rstr; 7502b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_coarse, op_fine->input_fields[i]->field_name, rstr_coarse, basis_coarse, CEED_VECTOR_ACTIVE)); 751eaf62fffSJeremy L Thompson } else { 752437c7c90SJeremy L Thompson CeedCall(CeedOperatorSetField(*op_coarse, op_fine->input_fields[i]->field_name, op_fine->input_fields[i]->elem_rstr, 7532b730f8bSJeremy L Thompson op_fine->input_fields[i]->basis, op_fine->input_fields[i]->vec)); 754eaf62fffSJeremy L Thompson } 755eaf62fffSJeremy L Thompson } 756eaf62fffSJeremy L Thompson // -- Clone output fields 75792ae7e47SJeremy L Thompson for (CeedInt i = 0; i < op_fine->qf->num_output_fields; i++) { 758eaf62fffSJeremy L Thompson if (op_fine->output_fields[i]->vec == CEED_VECTOR_ACTIVE) { 7592b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_coarse, op_fine->output_fields[i]->field_name, rstr_coarse, basis_coarse, CEED_VECTOR_ACTIVE)); 760eaf62fffSJeremy L Thompson } else { 761437c7c90SJeremy L Thompson CeedCall(CeedOperatorSetField(*op_coarse, op_fine->output_fields[i]->field_name, op_fine->output_fields[i]->elem_rstr, 7622b730f8bSJeremy L Thompson op_fine->output_fields[i]->basis, op_fine->output_fields[i]->vec)); 763eaf62fffSJeremy L Thompson } 764eaf62fffSJeremy L Thompson } 765af99e877SJeremy L Thompson // -- Clone QFunctionAssemblyData 7662b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataReferenceCopy(op_fine->qf_assembled, &(*op_coarse)->qf_assembled)); 767eaf62fffSJeremy L Thompson 768eaf62fffSJeremy L Thompson // Multiplicity vector 76985bb9dcfSJeremy L Thompson if (op_restrict || op_prolong) { 77085bb9dcfSJeremy L Thompson CeedVector mult_e_vec; 77185bb9dcfSJeremy L Thompson 77285bb9dcfSJeremy L Thompson if (!p_mult_fine) { 77385bb9dcfSJeremy L Thompson // LCOV_EXCL_START 77485bb9dcfSJeremy L Thompson return CeedError(ceed, CEED_ERROR_INCOMPATIBLE, "Prolongation or restriction operator creation requires fine grid multiplicity vector"); 77585bb9dcfSJeremy L Thompson // LCOV_EXCL_STOP 77685bb9dcfSJeremy L Thompson } 7772b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionCreateVector(rstr_fine, &mult_vec, &mult_e_vec)); 7782b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(mult_e_vec, 0.0)); 7792b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionApply(rstr_fine, CEED_NOTRANSPOSE, p_mult_fine, mult_e_vec, CEED_REQUEST_IMMEDIATE)); 7802b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(mult_vec, 0.0)); 7812b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionApply(rstr_fine, CEED_TRANSPOSE, mult_e_vec, mult_vec, CEED_REQUEST_IMMEDIATE)); 7822b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&mult_e_vec)); 7832b730f8bSJeremy L Thompson CeedCall(CeedVectorReciprocal(mult_vec)); 78485bb9dcfSJeremy L Thompson } 785eaf62fffSJeremy L Thompson 786addd79feSZach Atkins // Clone name 787addd79feSZach Atkins bool has_name = op_fine->name; 788addd79feSZach Atkins size_t name_len = op_fine->name ? strlen(op_fine->name) : 0; 789addd79feSZach Atkins CeedCall(CeedOperatorSetName(*op_coarse, op_fine->name)); 790addd79feSZach Atkins 79183d6adf3SZach Atkins // Check that coarse to fine basis is provided if prolong/restrict operators are requested 79283d6adf3SZach Atkins if ((op_restrict || op_prolong) && !basis_c_to_f) { 79383d6adf3SZach Atkins // LCOV_EXCL_START 79483d6adf3SZach Atkins return CeedError(ceed, CEED_ERROR_INCOMPATIBLE, "Prolongation or restriction operator creation requires coarse-to-fine basis"); 79583d6adf3SZach Atkins // LCOV_EXCL_STOP 79683d6adf3SZach Atkins } 79783d6adf3SZach Atkins 79885bb9dcfSJeremy L Thompson // Restriction/Prolongation Operators 799eaf62fffSJeremy L Thompson CeedInt num_comp; 8002b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumComponents(basis_coarse, &num_comp)); 801addd79feSZach Atkins 802addd79feSZach Atkins // Restriction 803addd79feSZach Atkins if (op_restrict) { 804eaf62fffSJeremy L Thompson CeedInt *num_comp_r_data; 80585bb9dcfSJeremy L Thompson CeedQFunction qf_restrict; 80685bb9dcfSJeremy L Thompson CeedQFunctionContext ctx_r; 80785bb9dcfSJeremy L Thompson 80885bb9dcfSJeremy L Thompson CeedCall(CeedQFunctionCreateInteriorByName(ceed, "Scale", &qf_restrict)); 8092b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, &num_comp_r_data)); 810eaf62fffSJeremy L Thompson num_comp_r_data[0] = num_comp; 8112b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextCreate(ceed, &ctx_r)); 8122b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextSetData(ctx_r, CEED_MEM_HOST, CEED_OWN_POINTER, sizeof(*num_comp_r_data), num_comp_r_data)); 8132b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetContext(qf_restrict, ctx_r)); 8142b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextDestroy(&ctx_r)); 8152b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(qf_restrict, "input", num_comp, CEED_EVAL_NONE)); 8162b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(qf_restrict, "scale", num_comp, CEED_EVAL_NONE)); 8172b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddOutput(qf_restrict, "output", num_comp, CEED_EVAL_INTERP)); 8182b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetUserFlopsEstimate(qf_restrict, num_comp)); 819eaf62fffSJeremy L Thompson 8202b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreate(ceed, qf_restrict, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, op_restrict)); 8212b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_restrict, "input", rstr_fine, CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE)); 8222b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_restrict, "scale", rstr_fine, CEED_BASIS_COLLOCATED, mult_vec)); 8232b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_restrict, "output", rstr_coarse, basis_c_to_f, CEED_VECTOR_ACTIVE)); 824eaf62fffSJeremy L Thompson 825addd79feSZach Atkins // Set name 826addd79feSZach Atkins char *restriction_name; 827addd79feSZach Atkins CeedCall(CeedCalloc(17 + name_len, &restriction_name)); 828addd79feSZach Atkins sprintf(restriction_name, "restriction%s%s", has_name ? " for " : "", has_name ? op_fine->name : ""); 829addd79feSZach Atkins CeedCall(CeedOperatorSetName(*op_restrict, restriction_name)); 830addd79feSZach Atkins CeedCall(CeedFree(&restriction_name)); 831addd79feSZach Atkins 832addd79feSZach Atkins // Check 833addd79feSZach Atkins CeedCall(CeedOperatorCheckReady(*op_restrict)); 834addd79feSZach Atkins 835addd79feSZach Atkins // Cleanup 836addd79feSZach Atkins CeedCall(CeedQFunctionDestroy(&qf_restrict)); 837addd79feSZach Atkins } 838addd79feSZach Atkins 839eaf62fffSJeremy L Thompson // Prolongation 840addd79feSZach Atkins if (op_prolong) { 841eaf62fffSJeremy L Thompson CeedInt *num_comp_p_data; 84285bb9dcfSJeremy L Thompson CeedQFunction qf_prolong; 84385bb9dcfSJeremy L Thompson CeedQFunctionContext ctx_p; 84485bb9dcfSJeremy L Thompson 84585bb9dcfSJeremy L Thompson CeedCall(CeedQFunctionCreateInteriorByName(ceed, "Scale", &qf_prolong)); 8462b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, &num_comp_p_data)); 847eaf62fffSJeremy L Thompson num_comp_p_data[0] = num_comp; 8482b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextCreate(ceed, &ctx_p)); 8492b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextSetData(ctx_p, CEED_MEM_HOST, CEED_OWN_POINTER, sizeof(*num_comp_p_data), num_comp_p_data)); 8502b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetContext(qf_prolong, ctx_p)); 8512b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextDestroy(&ctx_p)); 8522b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(qf_prolong, "input", num_comp, CEED_EVAL_INTERP)); 8532b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(qf_prolong, "scale", num_comp, CEED_EVAL_NONE)); 8542b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddOutput(qf_prolong, "output", num_comp, CEED_EVAL_NONE)); 8552b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetUserFlopsEstimate(qf_prolong, num_comp)); 856eaf62fffSJeremy L Thompson 8572b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreate(ceed, qf_prolong, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, op_prolong)); 8582b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_prolong, "input", rstr_coarse, basis_c_to_f, CEED_VECTOR_ACTIVE)); 8592b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_prolong, "scale", rstr_fine, CEED_BASIS_COLLOCATED, mult_vec)); 8602b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*op_prolong, "output", rstr_fine, CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE)); 861eaf62fffSJeremy L Thompson 862addd79feSZach Atkins // Set name 863ea6b5821SJeremy L Thompson char *prolongation_name; 8642b730f8bSJeremy L Thompson CeedCall(CeedCalloc(18 + name_len, &prolongation_name)); 8652b730f8bSJeremy L Thompson sprintf(prolongation_name, "prolongation%s%s", has_name ? " for " : "", has_name ? op_fine->name : ""); 8662b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetName(*op_prolong, prolongation_name)); 8672b730f8bSJeremy L Thompson CeedCall(CeedFree(&prolongation_name)); 868addd79feSZach Atkins 869addd79feSZach Atkins // Check 870addd79feSZach Atkins CeedCall(CeedOperatorCheckReady(*op_prolong)); 871addd79feSZach Atkins 872addd79feSZach Atkins // Cleanup 873addd79feSZach Atkins CeedCall(CeedQFunctionDestroy(&qf_prolong)); 874ea6b5821SJeremy L Thompson } 875ea6b5821SJeremy L Thompson 87658e4b056SJeremy L Thompson // Check 87758e4b056SJeremy L Thompson CeedCall(CeedOperatorCheckReady(*op_coarse)); 87858e4b056SJeremy L Thompson 879eaf62fffSJeremy L Thompson // Cleanup 8802b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&mult_vec)); 8812b730f8bSJeremy L Thompson CeedCall(CeedBasisDestroy(&basis_c_to_f)); 882805fe78eSJeremy L Thompson 883eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 884eaf62fffSJeremy L Thompson } 885eaf62fffSJeremy L Thompson 886eaf62fffSJeremy L Thompson /** 887eaf62fffSJeremy L Thompson @brief Build 1D mass matrix and Laplacian with perturbation 888eaf62fffSJeremy L Thompson 889eaf62fffSJeremy L Thompson @param[in] interp_1d Interpolation matrix in one dimension 890eaf62fffSJeremy L Thompson @param[in] grad_1d Gradient matrix in one dimension 891eaf62fffSJeremy L Thompson @param[in] q_weight_1d Quadrature weights in one dimension 892eaf62fffSJeremy L Thompson @param[in] P_1d Number of basis nodes in one dimension 893eaf62fffSJeremy L Thompson @param[in] Q_1d Number of quadrature points in one dimension 894eaf62fffSJeremy L Thompson @param[in] dim Dimension of basis 895eaf62fffSJeremy L Thompson @param[out] mass Assembled mass matrix in one dimension 896eaf62fffSJeremy L Thompson @param[out] laplace Assembled perturbed Laplacian in one dimension 897eaf62fffSJeremy L Thompson 898eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 899eaf62fffSJeremy L Thompson 900eaf62fffSJeremy L Thompson @ref Developer 901eaf62fffSJeremy L Thompson **/ 9022b730f8bSJeremy L Thompson CeedPragmaOptimizeOff static int CeedBuildMassLaplace(const CeedScalar *interp_1d, const CeedScalar *grad_1d, const CeedScalar *q_weight_1d, 9032b730f8bSJeremy L Thompson CeedInt P_1d, CeedInt Q_1d, CeedInt dim, CeedScalar *mass, CeedScalar *laplace) { 9042b730f8bSJeremy L Thompson for (CeedInt i = 0; i < P_1d; i++) { 905eaf62fffSJeremy L Thompson for (CeedInt j = 0; j < P_1d; j++) { 906eaf62fffSJeremy L Thompson CeedScalar sum = 0.0; 9072b730f8bSJeremy L Thompson for (CeedInt k = 0; k < Q_1d; k++) sum += interp_1d[k * P_1d + i] * q_weight_1d[k] * interp_1d[k * P_1d + j]; 908eaf62fffSJeremy L Thompson mass[i + j * P_1d] = sum; 909eaf62fffSJeremy L Thompson } 9102b730f8bSJeremy L Thompson } 911eaf62fffSJeremy L Thompson // -- Laplacian 9122b730f8bSJeremy L Thompson for (CeedInt i = 0; i < P_1d; i++) { 913eaf62fffSJeremy L Thompson for (CeedInt j = 0; j < P_1d; j++) { 914eaf62fffSJeremy L Thompson CeedScalar sum = 0.0; 9152b730f8bSJeremy L Thompson for (CeedInt k = 0; k < Q_1d; k++) sum += grad_1d[k * P_1d + i] * q_weight_1d[k] * grad_1d[k * P_1d + j]; 916eaf62fffSJeremy L Thompson laplace[i + j * P_1d] = sum; 917eaf62fffSJeremy L Thompson } 9182b730f8bSJeremy L Thompson } 919eaf62fffSJeremy L Thompson CeedScalar perturbation = dim > 2 ? 1e-6 : 1e-4; 9202b730f8bSJeremy L Thompson for (CeedInt i = 0; i < P_1d; i++) laplace[i + P_1d * i] += perturbation; 921eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 922eaf62fffSJeremy L Thompson } 923ea61e9acSJeremy L Thompson CeedPragmaOptimizeOn; 924eaf62fffSJeremy L Thompson 925eaf62fffSJeremy L Thompson /// @} 926eaf62fffSJeremy L Thompson 927eaf62fffSJeremy L Thompson /// ---------------------------------------------------------------------------- 928480fae85SJeremy L Thompson /// CeedOperator Backend API 929480fae85SJeremy L Thompson /// ---------------------------------------------------------------------------- 930480fae85SJeremy L Thompson /// @addtogroup CeedOperatorBackend 931480fae85SJeremy L Thompson /// @{ 932480fae85SJeremy L Thompson 933480fae85SJeremy L Thompson /** 934480fae85SJeremy L Thompson @brief Create object holding CeedQFunction assembly data for CeedOperator 935480fae85SJeremy L Thompson 936480fae85SJeremy L Thompson @param[in] ceed A Ceed object where the CeedQFunctionAssemblyData will be created 937ea61e9acSJeremy L Thompson @param[out] data Address of the variable where the newly created CeedQFunctionAssemblyData will be stored 938480fae85SJeremy L Thompson 939480fae85SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 940480fae85SJeremy L Thompson 941480fae85SJeremy L Thompson @ref Backend 942480fae85SJeremy L Thompson **/ 943ea61e9acSJeremy L Thompson int CeedQFunctionAssemblyDataCreate(Ceed ceed, CeedQFunctionAssemblyData *data) { 9442b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, data)); 945480fae85SJeremy L Thompson (*data)->ref_count = 1; 946480fae85SJeremy L Thompson (*data)->ceed = ceed; 9472b730f8bSJeremy L Thompson CeedCall(CeedReference(ceed)); 948480fae85SJeremy L Thompson 949480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 950480fae85SJeremy L Thompson } 951480fae85SJeremy L Thompson 952480fae85SJeremy L Thompson /** 953480fae85SJeremy L Thompson @brief Increment the reference counter for a CeedQFunctionAssemblyData 954480fae85SJeremy L Thompson 955ea61e9acSJeremy L Thompson @param[in,out] data CeedQFunctionAssemblyData to increment the reference counter 956480fae85SJeremy L Thompson 957480fae85SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 958480fae85SJeremy L Thompson 959480fae85SJeremy L Thompson @ref Backend 960480fae85SJeremy L Thompson **/ 961480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataReference(CeedQFunctionAssemblyData data) { 962480fae85SJeremy L Thompson data->ref_count++; 963480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 964480fae85SJeremy L Thompson } 965480fae85SJeremy L Thompson 966480fae85SJeremy L Thompson /** 967beecbf24SJeremy L Thompson @brief Set re-use of CeedQFunctionAssemblyData 9688b919e6bSJeremy L Thompson 969ea61e9acSJeremy L Thompson @param[in,out] data CeedQFunctionAssemblyData to mark for reuse 970ea61e9acSJeremy L Thompson @param[in] reuse_data Boolean flag indicating data re-use 9718b919e6bSJeremy L Thompson 9728b919e6bSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 9738b919e6bSJeremy L Thompson 9748b919e6bSJeremy L Thompson @ref Backend 9758b919e6bSJeremy L Thompson **/ 9762b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataSetReuse(CeedQFunctionAssemblyData data, bool reuse_data) { 977beecbf24SJeremy L Thompson data->reuse_data = reuse_data; 978beecbf24SJeremy L Thompson data->needs_data_update = true; 979beecbf24SJeremy L Thompson return CEED_ERROR_SUCCESS; 980beecbf24SJeremy L Thompson } 981beecbf24SJeremy L Thompson 982beecbf24SJeremy L Thompson /** 983beecbf24SJeremy L Thompson @brief Mark QFunctionAssemblyData as stale 984beecbf24SJeremy L Thompson 985ea61e9acSJeremy L Thompson @param[in,out] data CeedQFunctionAssemblyData to mark as stale 986ea61e9acSJeremy L Thompson @param[in] needs_data_update Boolean flag indicating if update is needed or completed 987beecbf24SJeremy L Thompson 988beecbf24SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 989beecbf24SJeremy L Thompson 990beecbf24SJeremy L Thompson @ref Backend 991beecbf24SJeremy L Thompson **/ 9922b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataSetUpdateNeeded(CeedQFunctionAssemblyData data, bool needs_data_update) { 993beecbf24SJeremy L Thompson data->needs_data_update = needs_data_update; 9948b919e6bSJeremy L Thompson return CEED_ERROR_SUCCESS; 9958b919e6bSJeremy L Thompson } 9968b919e6bSJeremy L Thompson 9978b919e6bSJeremy L Thompson /** 9988b919e6bSJeremy L Thompson @brief Determine if QFunctionAssemblyData needs update 9998b919e6bSJeremy L Thompson 10008b919e6bSJeremy L Thompson @param[in] data CeedQFunctionAssemblyData to mark as stale 10018b919e6bSJeremy L Thompson @param[out] is_update_needed Boolean flag indicating if re-assembly is required 10028b919e6bSJeremy L Thompson 10038b919e6bSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 10048b919e6bSJeremy L Thompson 10058b919e6bSJeremy L Thompson @ref Backend 10068b919e6bSJeremy L Thompson **/ 10072b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataIsUpdateNeeded(CeedQFunctionAssemblyData data, bool *is_update_needed) { 1008beecbf24SJeremy L Thompson *is_update_needed = !data->reuse_data || data->needs_data_update; 10098b919e6bSJeremy L Thompson return CEED_ERROR_SUCCESS; 10108b919e6bSJeremy L Thompson } 10118b919e6bSJeremy L Thompson 10128b919e6bSJeremy L Thompson /** 1013ea61e9acSJeremy L Thompson @brief Copy the pointer to a CeedQFunctionAssemblyData. 1014ea61e9acSJeremy L Thompson Both pointers should be destroyed with `CeedCeedQFunctionAssemblyDataDestroy()`. 1015512bb800SJeremy L Thompson 1016512bb800SJeremy L Thompson Note: If the value of `data_copy` passed to this function is non-NULL, then it is assumed that `*data_copy` is a pointer to a 1017512bb800SJeremy L Thompson CeedQFunctionAssemblyData. This CeedQFunctionAssemblyData will be destroyed if `data_copy` is the only reference to this 1018512bb800SJeremy L Thompson CeedQFunctionAssemblyData. 1019480fae85SJeremy L Thompson 1020ea61e9acSJeremy L Thompson @param[in] data CeedQFunctionAssemblyData to copy reference to 1021ea61e9acSJeremy L Thompson @param[in,out] data_copy Variable to store copied reference 1022480fae85SJeremy L Thompson 1023480fae85SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1024480fae85SJeremy L Thompson 1025480fae85SJeremy L Thompson @ref Backend 1026480fae85SJeremy L Thompson **/ 10272b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataReferenceCopy(CeedQFunctionAssemblyData data, CeedQFunctionAssemblyData *data_copy) { 10282b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataReference(data)); 10292b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataDestroy(data_copy)); 1030480fae85SJeremy L Thompson *data_copy = data; 1031480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 1032480fae85SJeremy L Thompson } 1033480fae85SJeremy L Thompson 1034480fae85SJeremy L Thompson /** 1035480fae85SJeremy L Thompson @brief Get setup status for internal objects for CeedQFunctionAssemblyData 1036480fae85SJeremy L Thompson 1037ea61e9acSJeremy L Thompson @param[in] data CeedQFunctionAssemblyData to retrieve status 1038480fae85SJeremy L Thompson @param[out] is_setup Boolean flag for setup status 1039480fae85SJeremy L Thompson 1040480fae85SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1041480fae85SJeremy L Thompson 1042480fae85SJeremy L Thompson @ref Backend 1043480fae85SJeremy L Thompson **/ 10442b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataIsSetup(CeedQFunctionAssemblyData data, bool *is_setup) { 1045480fae85SJeremy L Thompson *is_setup = data->is_setup; 1046480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 1047480fae85SJeremy L Thompson } 1048480fae85SJeremy L Thompson 1049480fae85SJeremy L Thompson /** 1050480fae85SJeremy L Thompson @brief Set internal objects for CeedQFunctionAssemblyData 1051480fae85SJeremy L Thompson 1052ea61e9acSJeremy L Thompson @param[in,out] data CeedQFunctionAssemblyData to set objects 1053480fae85SJeremy L Thompson @param[in] vec CeedVector to store assembled CeedQFunction at quadrature points 1054480fae85SJeremy L Thompson @param[in] rstr CeedElemRestriction for CeedVector containing assembled CeedQFunction 1055480fae85SJeremy L Thompson 1056480fae85SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1057480fae85SJeremy L Thompson 1058480fae85SJeremy L Thompson @ref Backend 1059480fae85SJeremy L Thompson **/ 10602b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataSetObjects(CeedQFunctionAssemblyData data, CeedVector vec, CeedElemRestriction rstr) { 10612b730f8bSJeremy L Thompson CeedCall(CeedVectorReferenceCopy(vec, &data->vec)); 10622b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionReferenceCopy(rstr, &data->rstr)); 1063480fae85SJeremy L Thompson 1064480fae85SJeremy L Thompson data->is_setup = true; 1065480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 1066480fae85SJeremy L Thompson } 1067480fae85SJeremy L Thompson 10682b730f8bSJeremy L Thompson int CeedQFunctionAssemblyDataGetObjects(CeedQFunctionAssemblyData data, CeedVector *vec, CeedElemRestriction *rstr) { 10692b730f8bSJeremy L Thompson if (!data->is_setup) { 1070480fae85SJeremy L Thompson // LCOV_EXCL_START 10712b730f8bSJeremy L Thompson return CeedError(data->ceed, CEED_ERROR_INCOMPLETE, "Internal objects not set; must call CeedQFunctionAssemblyDataSetObjects first."); 1072480fae85SJeremy L Thompson // LCOV_EXCL_STOP 10732b730f8bSJeremy L Thompson } 1074480fae85SJeremy L Thompson 10752b730f8bSJeremy L Thompson CeedCall(CeedVectorReferenceCopy(data->vec, vec)); 10762b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionReferenceCopy(data->rstr, rstr)); 1077480fae85SJeremy L Thompson 1078480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 1079480fae85SJeremy L Thompson } 1080480fae85SJeremy L Thompson 1081480fae85SJeremy L Thompson /** 1082480fae85SJeremy L Thompson @brief Destroy CeedQFunctionAssemblyData 1083480fae85SJeremy L Thompson 1084ea61e9acSJeremy L Thompson @param[in,out] data CeedQFunctionAssemblyData to destroy 1085480fae85SJeremy L Thompson 1086480fae85SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1087480fae85SJeremy L Thompson 1088480fae85SJeremy L Thompson @ref Backend 1089480fae85SJeremy L Thompson **/ 1090480fae85SJeremy L Thompson int CeedQFunctionAssemblyDataDestroy(CeedQFunctionAssemblyData *data) { 1091ad6481ceSJeremy L Thompson if (!*data || --(*data)->ref_count > 0) { 1092ad6481ceSJeremy L Thompson *data = NULL; 1093ad6481ceSJeremy L Thompson return CEED_ERROR_SUCCESS; 1094ad6481ceSJeremy L Thompson } 10952b730f8bSJeremy L Thompson CeedCall(CeedDestroy(&(*data)->ceed)); 10962b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&(*data)->vec)); 10972b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&(*data)->rstr)); 1098480fae85SJeremy L Thompson 10992b730f8bSJeremy L Thompson CeedCall(CeedFree(data)); 1100480fae85SJeremy L Thompson return CEED_ERROR_SUCCESS; 1101480fae85SJeremy L Thompson } 1102480fae85SJeremy L Thompson 1103ed9e99e6SJeremy L Thompson /** 1104ed9e99e6SJeremy L Thompson @brief Get CeedOperatorAssemblyData 1105ed9e99e6SJeremy L Thompson 1106ed9e99e6SJeremy L Thompson @param[in] op CeedOperator to assemble 1107ed9e99e6SJeremy L Thompson @param[out] data CeedQFunctionAssemblyData 1108ed9e99e6SJeremy L Thompson 1109ed9e99e6SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1110ed9e99e6SJeremy L Thompson 1111ed9e99e6SJeremy L Thompson @ref Backend 1112ed9e99e6SJeremy L Thompson **/ 11132b730f8bSJeremy L Thompson int CeedOperatorGetOperatorAssemblyData(CeedOperator op, CeedOperatorAssemblyData *data) { 1114ed9e99e6SJeremy L Thompson if (!op->op_assembled) { 1115ed9e99e6SJeremy L Thompson CeedOperatorAssemblyData data; 1116ed9e99e6SJeremy L Thompson 11172b730f8bSJeremy L Thompson CeedCall(CeedOperatorAssemblyDataCreate(op->ceed, op, &data)); 1118ed9e99e6SJeremy L Thompson op->op_assembled = data; 1119ed9e99e6SJeremy L Thompson } 1120ed9e99e6SJeremy L Thompson *data = op->op_assembled; 1121ed9e99e6SJeremy L Thompson 1122ed9e99e6SJeremy L Thompson return CEED_ERROR_SUCCESS; 1123ed9e99e6SJeremy L Thompson } 1124ed9e99e6SJeremy L Thompson 1125ed9e99e6SJeremy L Thompson /** 1126ba746a46SJeremy L Thompson @brief Create object holding CeedOperator assembly data. 1127ba746a46SJeremy L Thompson 1128ba746a46SJeremy L Thompson The CeedOperatorAssemblyData holds an array with references to every active CeedBasis used in the CeedOperator. 1129ba746a46SJeremy L Thompson An array with references to the corresponding active CeedElemRestrictions is also stored. 1130ba746a46SJeremy L Thompson For each active CeedBasis, the CeedOperatorAssemblyData holds an array of all input and output CeedEvalModes for this CeedBasis. 1131ba746a46SJeremy L Thompson The CeedOperatorAssemblyData holds an array of offsets for indexing into the assembled CeedQFunction arrays to the row representing each 1132ba746a46SJeremy L Thompson CeedEvalMode. 1133ba746a46SJeremy L Thompson The number of input columns across all active bases for the assembled CeedQFunction is also stored. 1134ba746a46SJeremy L Thompson Lastly, the CeedOperatorAssembly data holds assembled matrices representing the full action of the CeedBasis for all CeedEvalModes. 1135ed9e99e6SJeremy L Thompson 1136ea61e9acSJeremy L Thompson @param[in] ceed Ceed object where the CeedOperatorAssemblyData will be created 1137ed9e99e6SJeremy L Thompson @param[in] op CeedOperator to be assembled 1138ea61e9acSJeremy L Thompson @param[out] data Address of the variable where the newly created CeedOperatorAssemblyData will be stored 1139ed9e99e6SJeremy L Thompson 1140ed9e99e6SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1141ed9e99e6SJeremy L Thompson 1142ed9e99e6SJeremy L Thompson @ref Backend 1143ed9e99e6SJeremy L Thompson **/ 11442b730f8bSJeremy L Thompson int CeedOperatorAssemblyDataCreate(Ceed ceed, CeedOperator op, CeedOperatorAssemblyData *data) { 1145437c7c90SJeremy L Thompson CeedInt num_active_bases = 0; 1146437c7c90SJeremy L Thompson 1147437c7c90SJeremy L Thompson // Allocate 11482b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, data)); 1149ed9e99e6SJeremy L Thompson (*data)->ceed = ceed; 11502b730f8bSJeremy L Thompson CeedCall(CeedReference(ceed)); 1151ed9e99e6SJeremy L Thompson 1152ed9e99e6SJeremy L Thompson // Build OperatorAssembly data 1153ed9e99e6SJeremy L Thompson CeedQFunction qf; 1154ed9e99e6SJeremy L Thompson CeedQFunctionField *qf_fields; 1155ed9e99e6SJeremy L Thompson CeedOperatorField *op_fields; 1156ed9e99e6SJeremy L Thompson CeedInt num_input_fields; 11572b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetQFunction(op, &qf)); 11582b730f8bSJeremy L Thompson CeedCall(CeedQFunctionGetFields(qf, &num_input_fields, &qf_fields, NULL, NULL)); 11592b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFields(op, NULL, &op_fields, NULL, NULL)); 1160ed9e99e6SJeremy L Thompson 1161ed9e99e6SJeremy L Thompson // Determine active input basis 1162437c7c90SJeremy L Thompson CeedInt *num_eval_modes_in = NULL, *num_eval_modes_out = NULL, offset = 0; 1163437c7c90SJeremy L Thompson CeedEvalMode **eval_modes_in = NULL, **eval_modes_out = NULL; 1164437c7c90SJeremy L Thompson CeedSize **eval_mode_offsets_in = NULL, **eval_mode_offsets_out = NULL; 1165ed9e99e6SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1166ed9e99e6SJeremy L Thompson CeedVector vec; 11672b730f8bSJeremy L Thompson CeedCall(CeedOperatorFieldGetVector(op_fields[i], &vec)); 1168ed9e99e6SJeremy L Thompson if (vec == CEED_VECTOR_ACTIVE) { 1169437c7c90SJeremy L Thompson CeedBasis basis_in = NULL; 1170437c7c90SJeremy L Thompson CeedEvalMode eval_mode; 1171*352a5e7cSSebastian Grimberg CeedInt index = -1, dim, num_comp, q_comp; 11722b730f8bSJeremy L Thompson CeedCall(CeedOperatorFieldGetBasis(op_fields[i], &basis_in)); 11732b730f8bSJeremy L Thompson CeedCall(CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode)); 1174*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetDimension(basis_in, &dim)); 1175*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumComponents(basis_in, &num_comp)); 1176*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumQuadratureComponents(basis_in, eval_mode, &q_comp)); 1177437c7c90SJeremy L Thompson for (CeedInt i = 0; i < num_active_bases; i++) { 1178437c7c90SJeremy L Thompson if ((*data)->active_bases[i] == basis_in) index = i; 1179437c7c90SJeremy L Thompson } 1180437c7c90SJeremy L Thompson if (index == -1) { 1181437c7c90SJeremy L Thompson CeedElemRestriction elem_rstr_in; 1182437c7c90SJeremy L Thompson index = num_active_bases; 1183437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->active_bases)); 1184437c7c90SJeremy L Thompson (*data)->active_bases[num_active_bases] = NULL; 1185437c7c90SJeremy L Thompson CeedCall(CeedBasisReferenceCopy(basis_in, &(*data)->active_bases[num_active_bases])); 1186437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->active_elem_rstrs)); 1187437c7c90SJeremy L Thompson (*data)->active_elem_rstrs[num_active_bases] = NULL; 1188437c7c90SJeremy L Thompson CeedCall(CeedOperatorFieldGetElemRestriction(op_fields[i], &elem_rstr_in)); 1189437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionReferenceCopy(elem_rstr_in, &(*data)->active_elem_rstrs[num_active_bases])); 1190437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &num_eval_modes_in)); 1191437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &num_eval_modes_out)); 1192437c7c90SJeremy L Thompson num_eval_modes_in[index] = 0; 1193437c7c90SJeremy L Thompson num_eval_modes_out[index] = 0; 1194437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_modes_in)); 1195437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_modes_out)); 1196437c7c90SJeremy L Thompson eval_modes_in[index] = NULL; 1197437c7c90SJeremy L Thompson eval_modes_out[index] = NULL; 1198437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_mode_offsets_in)); 1199437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_mode_offsets_out)); 1200437c7c90SJeremy L Thompson eval_mode_offsets_in[index] = NULL; 1201437c7c90SJeremy L Thompson eval_mode_offsets_out[index] = NULL; 1202437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->assembled_bases_in)); 1203437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->assembled_bases_out)); 1204437c7c90SJeremy L Thompson (*data)->assembled_bases_in[index] = NULL; 1205437c7c90SJeremy L Thompson (*data)->assembled_bases_out[index] = NULL; 1206437c7c90SJeremy L Thompson num_active_bases++; 1207437c7c90SJeremy L Thompson } 1208*352a5e7cSSebastian Grimberg if (eval_mode != CEED_EVAL_WEIGHT) { 1209*352a5e7cSSebastian Grimberg // q_comp = 1 if CEED_EVAL_NONE, CEED_EVAL_WEIGHT caught by QF Assembly 1210*352a5e7cSSebastian Grimberg CeedCall(CeedRealloc(num_eval_modes_in[index] + q_comp, &eval_modes_in[index])); 1211*352a5e7cSSebastian Grimberg CeedCall(CeedRealloc(num_eval_modes_in[index] + q_comp, &eval_mode_offsets_in[index])); 1212*352a5e7cSSebastian Grimberg for (CeedInt d = 0; d < q_comp; d++) { 1213437c7c90SJeremy L Thompson eval_modes_in[index][num_eval_modes_in[index] + d] = eval_mode; 1214437c7c90SJeremy L Thompson eval_mode_offsets_in[index][num_eval_modes_in[index] + d] = offset; 1215*352a5e7cSSebastian Grimberg offset += num_comp; 1216ed9e99e6SJeremy L Thompson } 1217*352a5e7cSSebastian Grimberg num_eval_modes_in[index] += q_comp; 1218ed9e99e6SJeremy L Thompson } 1219ed9e99e6SJeremy L Thompson } 1220ed9e99e6SJeremy L Thompson } 1221437c7c90SJeremy L Thompson (*data)->num_eval_modes_in = num_eval_modes_in; 1222437c7c90SJeremy L Thompson (*data)->eval_modes_in = eval_modes_in; 1223437c7c90SJeremy L Thompson (*data)->eval_mode_offsets_in = eval_mode_offsets_in; 1224ed9e99e6SJeremy L Thompson 1225ed9e99e6SJeremy L Thompson // Determine active output basis 1226ed9e99e6SJeremy L Thompson CeedInt num_output_fields; 12272b730f8bSJeremy L Thompson CeedCall(CeedQFunctionGetFields(qf, NULL, NULL, &num_output_fields, &qf_fields)); 12282b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFields(op, NULL, NULL, NULL, &op_fields)); 1229437c7c90SJeremy L Thompson offset = 0; 1230ed9e99e6SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 1231ed9e99e6SJeremy L Thompson CeedVector vec; 12322b730f8bSJeremy L Thompson CeedCall(CeedOperatorFieldGetVector(op_fields[i], &vec)); 1233ed9e99e6SJeremy L Thompson if (vec == CEED_VECTOR_ACTIVE) { 1234437c7c90SJeremy L Thompson CeedBasis basis_out = NULL; 1235ed9e99e6SJeremy L Thompson CeedEvalMode eval_mode; 1236*352a5e7cSSebastian Grimberg CeedInt index = -1, dim, num_comp, q_comp; 1237437c7c90SJeremy L Thompson CeedCall(CeedOperatorFieldGetBasis(op_fields[i], &basis_out)); 12382b730f8bSJeremy L Thompson CeedCall(CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode)); 1239*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetDimension(basis_out, &dim)); 1240*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumComponents(basis_out, &num_comp)); 1241*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumQuadratureComponents(basis_out, eval_mode, &q_comp)); 1242437c7c90SJeremy L Thompson for (CeedInt i = 0; i < num_active_bases; i++) { 1243437c7c90SJeremy L Thompson if ((*data)->active_bases[i] == basis_out) index = i; 1244437c7c90SJeremy L Thompson } 1245437c7c90SJeremy L Thompson if (index == -1) { 1246437c7c90SJeremy L Thompson CeedElemRestriction elem_rstr_out; 1247437c7c90SJeremy L Thompson 1248437c7c90SJeremy L Thompson index = num_active_bases; 1249437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->active_bases)); 1250437c7c90SJeremy L Thompson (*data)->active_bases[num_active_bases] = NULL; 1251437c7c90SJeremy L Thompson CeedCall(CeedBasisReferenceCopy(basis_out, &(*data)->active_bases[num_active_bases])); 1252437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->active_elem_rstrs)); 1253437c7c90SJeremy L Thompson (*data)->active_elem_rstrs[num_active_bases] = NULL; 1254437c7c90SJeremy L Thompson CeedCall(CeedOperatorFieldGetElemRestriction(op_fields[i], &elem_rstr_out)); 1255437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionReferenceCopy(elem_rstr_out, &(*data)->active_elem_rstrs[num_active_bases])); 1256437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &num_eval_modes_in)); 1257437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &num_eval_modes_out)); 1258437c7c90SJeremy L Thompson num_eval_modes_in[index] = 0; 1259437c7c90SJeremy L Thompson num_eval_modes_out[index] = 0; 1260437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_modes_in)); 1261437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_modes_out)); 1262437c7c90SJeremy L Thompson eval_modes_in[index] = NULL; 1263437c7c90SJeremy L Thompson eval_modes_out[index] = NULL; 1264437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_mode_offsets_in)); 1265437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &eval_mode_offsets_out)); 1266437c7c90SJeremy L Thompson eval_mode_offsets_in[index] = NULL; 1267437c7c90SJeremy L Thompson eval_mode_offsets_out[index] = NULL; 1268437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->assembled_bases_in)); 1269437c7c90SJeremy L Thompson CeedCall(CeedRealloc(num_active_bases + 1, &(*data)->assembled_bases_out)); 1270437c7c90SJeremy L Thompson (*data)->assembled_bases_in[index] = NULL; 1271437c7c90SJeremy L Thompson (*data)->assembled_bases_out[index] = NULL; 1272437c7c90SJeremy L Thompson num_active_bases++; 1273437c7c90SJeremy L Thompson } 1274*352a5e7cSSebastian Grimberg if (eval_mode != CEED_EVAL_WEIGHT) { 1275*352a5e7cSSebastian Grimberg // q_comp = 1 if CEED_EVAL_NONE, CEED_EVAL_WEIGHT caught by QF Assembly 1276*352a5e7cSSebastian Grimberg CeedCall(CeedRealloc(num_eval_modes_out[index] + q_comp, &eval_modes_out[index])); 1277*352a5e7cSSebastian Grimberg CeedCall(CeedRealloc(num_eval_modes_out[index] + q_comp, &eval_mode_offsets_out[index])); 1278*352a5e7cSSebastian Grimberg for (CeedInt d = 0; d < q_comp; d++) { 1279437c7c90SJeremy L Thompson eval_modes_out[index][num_eval_modes_out[index] + d] = eval_mode; 1280437c7c90SJeremy L Thompson eval_mode_offsets_out[index][num_eval_modes_out[index] + d] = offset; 1281*352a5e7cSSebastian Grimberg offset += num_comp; 1282ed9e99e6SJeremy L Thompson } 1283*352a5e7cSSebastian Grimberg num_eval_modes_out[index] += q_comp; 1284ed9e99e6SJeremy L Thompson } 1285ed9e99e6SJeremy L Thompson } 1286ed9e99e6SJeremy L Thompson } 1287437c7c90SJeremy L Thompson (*data)->num_output_components = offset; 1288437c7c90SJeremy L Thompson (*data)->num_eval_modes_out = num_eval_modes_out; 1289437c7c90SJeremy L Thompson (*data)->eval_modes_out = eval_modes_out; 1290437c7c90SJeremy L Thompson (*data)->eval_mode_offsets_out = eval_mode_offsets_out; 1291437c7c90SJeremy L Thompson (*data)->num_active_bases = num_active_bases; 1292ed9e99e6SJeremy L Thompson 1293ed9e99e6SJeremy L Thompson return CEED_ERROR_SUCCESS; 1294ed9e99e6SJeremy L Thompson } 1295ed9e99e6SJeremy L Thompson 1296ed9e99e6SJeremy L Thompson /** 1297ba746a46SJeremy L Thompson @brief Get CeedOperator CeedEvalModes for assembly. 1298ba746a46SJeremy L Thompson 1299ba746a46SJeremy L Thompson Note: See CeedOperatorAssemblyDataCreate for a full description of the data stored in this object. 1300ed9e99e6SJeremy L Thompson 1301ed9e99e6SJeremy L Thompson @param[in] data CeedOperatorAssemblyData 1302ba746a46SJeremy L Thompson @param[out] num_active_bases Total number of active bases 1303c5d0f995SJed Brown @param[out] num_eval_modes_in Pointer to hold array of numbers of input CeedEvalModes, or NULL. 1304ba746a46SJeremy L Thompson `eval_modes_in[0]` holds an array of eval modes for the first active basis. 1305c5d0f995SJed Brown @param[out] eval_modes_in Pointer to hold arrays of input CeedEvalModes, or NULL. 1306ba746a46SJeremy L Thompson @param[out] eval_mode_offsets_in Pointer to hold arrays of input offsets at each quadrature point. 1307c5d0f995SJed Brown @param[out] num_eval_modes_out Pointer to hold array of numbers of output CeedEvalModes, or NULL 1308c5d0f995SJed Brown @param[out] eval_modes_out Pointer to hold arrays of output CeedEvalModes, or NULL. 1309437c7c90SJeremy L Thompson @param[out] eval_mode_offsets_out Pointer to hold arrays of output offsets at each quadrature point 1310ba746a46SJeremy L Thompson @param[out] num_output_components The number of columns in the assembled CeedQFunction matrix for each quadrature point, 1311ba746a46SJeremy L Thompson including contributions of all active bases 1312ed9e99e6SJeremy L Thompson 1313ed9e99e6SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1314ed9e99e6SJeremy L Thompson 1315c5d0f995SJed Brown 1316ed9e99e6SJeremy L Thompson @ref Backend 1317ed9e99e6SJeremy L Thompson **/ 1318437c7c90SJeremy L Thompson int CeedOperatorAssemblyDataGetEvalModes(CeedOperatorAssemblyData data, CeedInt *num_active_bases, CeedInt **num_eval_modes_in, 1319437c7c90SJeremy L Thompson const CeedEvalMode ***eval_modes_in, CeedSize ***eval_mode_offsets_in, CeedInt **num_eval_modes_out, 1320437c7c90SJeremy L Thompson const CeedEvalMode ***eval_modes_out, CeedSize ***eval_mode_offsets_out, CeedSize *num_output_components) { 1321437c7c90SJeremy L Thompson if (num_active_bases) *num_active_bases = data->num_active_bases; 1322437c7c90SJeremy L Thompson if (num_eval_modes_in) *num_eval_modes_in = data->num_eval_modes_in; 1323437c7c90SJeremy L Thompson if (eval_modes_in) *eval_modes_in = (const CeedEvalMode **)data->eval_modes_in; 1324437c7c90SJeremy L Thompson if (eval_mode_offsets_in) *eval_mode_offsets_in = data->eval_mode_offsets_in; 1325437c7c90SJeremy L Thompson if (num_eval_modes_out) *num_eval_modes_out = data->num_eval_modes_out; 1326437c7c90SJeremy L Thompson if (eval_modes_out) *eval_modes_out = (const CeedEvalMode **)data->eval_modes_out; 1327437c7c90SJeremy L Thompson if (eval_mode_offsets_out) *eval_mode_offsets_out = data->eval_mode_offsets_out; 1328437c7c90SJeremy L Thompson if (num_output_components) *num_output_components = data->num_output_components; 1329ed9e99e6SJeremy L Thompson 1330ed9e99e6SJeremy L Thompson return CEED_ERROR_SUCCESS; 1331ed9e99e6SJeremy L Thompson } 1332ed9e99e6SJeremy L Thompson 1333ed9e99e6SJeremy L Thompson /** 1334ba746a46SJeremy L Thompson @brief Get CeedOperator CeedBasis data for assembly. 1335ba746a46SJeremy L Thompson 1336ba746a46SJeremy L Thompson Note: See CeedOperatorAssemblyDataCreate for a full description of the data stored in this object. 1337ed9e99e6SJeremy L Thompson 1338ed9e99e6SJeremy L Thompson @param[in] data CeedOperatorAssemblyData 1339437c7c90SJeremy L Thompson @param[out] num_active_bases Number of active bases, or NULL 1340437c7c90SJeremy L Thompson @param[out] active_bases Pointer to hold active CeedBasis, or NULL 1341437c7c90SJeremy L Thompson @param[out] assembled_bases_in Pointer to hold assembled active input B, or NULL 1342437c7c90SJeremy L Thompson @param[out] assembled_bases_out Pointer to hold assembled active output B, or NULL 1343ed9e99e6SJeremy L Thompson 1344ed9e99e6SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1345ed9e99e6SJeremy L Thompson 1346ed9e99e6SJeremy L Thompson @ref Backend 1347ed9e99e6SJeremy L Thompson **/ 1348437c7c90SJeremy L Thompson int CeedOperatorAssemblyDataGetBases(CeedOperatorAssemblyData data, CeedInt *num_active_bases, CeedBasis **active_bases, 1349437c7c90SJeremy L Thompson const CeedScalar ***assembled_bases_in, const CeedScalar ***assembled_bases_out) { 1350ed9e99e6SJeremy L Thompson // Assemble B_in, B_out if needed 1351437c7c90SJeremy L Thompson if (assembled_bases_in && !data->assembled_bases_in[0]) { 1352437c7c90SJeremy L Thompson CeedInt num_qpts; 1353437c7c90SJeremy L Thompson 1354437c7c90SJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(data->active_bases[0], &num_qpts)); 1355437c7c90SJeremy L Thompson for (CeedInt b = 0; b < data->num_active_bases; b++) { 1356*352a5e7cSSebastian Grimberg CeedInt num_nodes; 1357437c7c90SJeremy L Thompson CeedScalar *B_in = NULL, *identity = NULL; 1358ed9e99e6SJeremy L Thompson bool has_eval_none = false; 1359ed9e99e6SJeremy L Thompson 1360*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumNodes(data->active_bases[b], &num_nodes)); 1361*352a5e7cSSebastian Grimberg CeedCall(CeedCalloc(num_qpts * num_nodes * data->num_eval_modes_in[b], &B_in)); 1362ed9e99e6SJeremy L Thompson 1363437c7c90SJeremy L Thompson for (CeedInt i = 0; i < data->num_eval_modes_in[b]; i++) { 1364437c7c90SJeremy L Thompson has_eval_none = has_eval_none || (data->eval_modes_in[b][i] == CEED_EVAL_NONE); 1365ed9e99e6SJeremy L Thompson } 1366ed9e99e6SJeremy L Thompson if (has_eval_none) { 1367*352a5e7cSSebastian Grimberg CeedCall(CeedCalloc(num_qpts * num_nodes, &identity)); 1368*352a5e7cSSebastian Grimberg for (CeedInt i = 0; i < (num_nodes < num_qpts ? num_nodes : num_qpts); i++) { 1369*352a5e7cSSebastian Grimberg identity[i * num_nodes + i] = 1.0; 1370ed9e99e6SJeremy L Thompson } 1371ed9e99e6SJeremy L Thompson } 1372ed9e99e6SJeremy L Thompson 1373ed9e99e6SJeremy L Thompson for (CeedInt q = 0; q < num_qpts; q++) { 1374*352a5e7cSSebastian Grimberg for (CeedInt n = 0; n < num_nodes; n++) { 1375*352a5e7cSSebastian Grimberg CeedInt d_in = 0, q_comp_in; 1376*352a5e7cSSebastian Grimberg CeedEvalMode eval_mode_in_prev = CEED_EVAL_NONE; 1377437c7c90SJeremy L Thompson for (CeedInt e_in = 0; e_in < data->num_eval_modes_in[b]; e_in++) { 1378437c7c90SJeremy L Thompson const CeedInt qq = data->num_eval_modes_in[b] * q; 1379437c7c90SJeremy L Thompson const CeedScalar *B = NULL; 1380*352a5e7cSSebastian Grimberg CeedOperatorGetBasisPointer(data->active_bases[b], data->eval_modes_in[b][e_in], identity, &B); 1381*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumQuadratureComponents(data->active_bases[b], data->eval_modes_in[b][e_in], &q_comp_in)); 1382*352a5e7cSSebastian Grimberg if (q_comp_in > 1) { 1383*352a5e7cSSebastian Grimberg if (e_in == 0 || data->eval_modes_in[b][e_in] != eval_mode_in_prev) d_in = 0; 1384*352a5e7cSSebastian Grimberg else B = &B[(++d_in) * num_qpts * num_nodes]; 1385*352a5e7cSSebastian Grimberg } 1386*352a5e7cSSebastian Grimberg eval_mode_in_prev = data->eval_modes_in[b][e_in]; 1387*352a5e7cSSebastian Grimberg B_in[(qq + e_in) * num_nodes + n] = B[q * num_nodes + n]; 1388ed9e99e6SJeremy L Thompson } 1389ed9e99e6SJeremy L Thompson } 1390ed9e99e6SJeremy L Thompson } 1391437c7c90SJeremy L Thompson if (identity) CeedCall(CeedFree(identity)); 1392437c7c90SJeremy L Thompson data->assembled_bases_in[b] = B_in; 1393437c7c90SJeremy L Thompson } 1394ed9e99e6SJeremy L Thompson } 1395ed9e99e6SJeremy L Thompson 1396437c7c90SJeremy L Thompson if (assembled_bases_out && !data->assembled_bases_out[0]) { 1397437c7c90SJeremy L Thompson CeedInt num_qpts; 1398437c7c90SJeremy L Thompson 1399437c7c90SJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(data->active_bases[0], &num_qpts)); 1400437c7c90SJeremy L Thompson for (CeedInt b = 0; b < data->num_active_bases; b++) { 1401*352a5e7cSSebastian Grimberg CeedInt num_nodes; 1402ed9e99e6SJeremy L Thompson bool has_eval_none = false; 1403437c7c90SJeremy L Thompson CeedScalar *B_out = NULL, *identity = NULL; 1404ed9e99e6SJeremy L Thompson 1405*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumNodes(data->active_bases[b], &num_nodes)); 1406*352a5e7cSSebastian Grimberg CeedCall(CeedCalloc(num_qpts * num_nodes * data->num_eval_modes_out[b], &B_out)); 1407ed9e99e6SJeremy L Thompson 1408437c7c90SJeremy L Thompson for (CeedInt i = 0; i < data->num_eval_modes_out[b]; i++) { 1409437c7c90SJeremy L Thompson has_eval_none = has_eval_none || (data->eval_modes_out[b][i] == CEED_EVAL_NONE); 1410ed9e99e6SJeremy L Thompson } 1411ed9e99e6SJeremy L Thompson if (has_eval_none) { 1412*352a5e7cSSebastian Grimberg CeedCall(CeedCalloc(num_qpts * num_nodes, &identity)); 1413*352a5e7cSSebastian Grimberg for (CeedInt i = 0; i < (num_nodes < num_qpts ? num_nodes : num_qpts); i++) { 1414*352a5e7cSSebastian Grimberg identity[i * num_nodes + i] = 1.0; 1415ed9e99e6SJeremy L Thompson } 1416ed9e99e6SJeremy L Thompson } 1417ed9e99e6SJeremy L Thompson 1418ed9e99e6SJeremy L Thompson for (CeedInt q = 0; q < num_qpts; q++) { 1419*352a5e7cSSebastian Grimberg for (CeedInt n = 0; n < num_nodes; n++) { 1420*352a5e7cSSebastian Grimberg CeedInt d_out = 0, q_comp_out; 1421*352a5e7cSSebastian Grimberg CeedEvalMode eval_mode_out_prev = CEED_EVAL_NONE; 1422437c7c90SJeremy L Thompson for (CeedInt e_out = 0; e_out < data->num_eval_modes_out[b]; e_out++) { 1423437c7c90SJeremy L Thompson const CeedInt qq = data->num_eval_modes_out[b] * q; 1424437c7c90SJeremy L Thompson const CeedScalar *B = NULL; 1425*352a5e7cSSebastian Grimberg CeedOperatorGetBasisPointer(data->active_bases[b], data->eval_modes_out[b][e_out], identity, &B); 1426*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumQuadratureComponents(data->active_bases[b], data->eval_modes_out[b][e_out], &q_comp_out)); 1427*352a5e7cSSebastian Grimberg if (q_comp_out > 1) { 1428*352a5e7cSSebastian Grimberg if (e_out == 0 || data->eval_modes_out[b][e_out] != eval_mode_out_prev) d_out = 0; 1429*352a5e7cSSebastian Grimberg else B = &B[(++d_out) * num_qpts * num_nodes]; 1430*352a5e7cSSebastian Grimberg } 1431*352a5e7cSSebastian Grimberg eval_mode_out_prev = data->eval_modes_out[b][e_out]; 1432*352a5e7cSSebastian Grimberg B_out[(qq + e_out) * num_nodes + n] = B[q * num_nodes + n]; 1433ed9e99e6SJeremy L Thompson } 1434ed9e99e6SJeremy L Thompson } 1435ed9e99e6SJeremy L Thompson } 1436437c7c90SJeremy L Thompson if (identity) CeedCall(CeedFree(identity)); 1437437c7c90SJeremy L Thompson data->assembled_bases_out[b] = B_out; 1438437c7c90SJeremy L Thompson } 1439ed9e99e6SJeremy L Thompson } 1440ed9e99e6SJeremy L Thompson 1441437c7c90SJeremy L Thompson // Pass out assembled data 1442437c7c90SJeremy L Thompson if (active_bases) *active_bases = data->active_bases; 1443437c7c90SJeremy L Thompson if (assembled_bases_in) *assembled_bases_in = (const CeedScalar **)data->assembled_bases_in; 1444437c7c90SJeremy L Thompson if (assembled_bases_out) *assembled_bases_out = (const CeedScalar **)data->assembled_bases_out; 1445437c7c90SJeremy L Thompson 1446437c7c90SJeremy L Thompson return CEED_ERROR_SUCCESS; 1447437c7c90SJeremy L Thompson } 1448437c7c90SJeremy L Thompson 1449437c7c90SJeremy L Thompson /** 1450ba746a46SJeremy L Thompson @brief Get CeedOperator CeedBasis data for assembly. 1451ba746a46SJeremy L Thompson 1452ba746a46SJeremy L Thompson Note: See CeedOperatorAssemblyDataCreate for a full description of the data stored in this object. 1453437c7c90SJeremy L Thompson 1454437c7c90SJeremy L Thompson @param[in] data CeedOperatorAssemblyData 1455437c7c90SJeremy L Thompson @param[out] num_active_elem_rstrs Number of active element restrictions, or NULL 1456437c7c90SJeremy L Thompson @param[out] active_elem_rstrs Pointer to hold active CeedElemRestrictions, or NULL 1457437c7c90SJeremy L Thompson 1458437c7c90SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1459437c7c90SJeremy L Thompson 1460437c7c90SJeremy L Thompson @ref Backend 1461437c7c90SJeremy L Thompson **/ 1462437c7c90SJeremy L Thompson int CeedOperatorAssemblyDataGetElemRestrictions(CeedOperatorAssemblyData data, CeedInt *num_active_elem_rstrs, 1463437c7c90SJeremy L Thompson CeedElemRestriction **active_elem_rstrs) { 1464437c7c90SJeremy L Thompson if (num_active_elem_rstrs) *num_active_elem_rstrs = data->num_active_bases; 1465437c7c90SJeremy L Thompson if (active_elem_rstrs) *active_elem_rstrs = data->active_elem_rstrs; 1466ed9e99e6SJeremy L Thompson 1467ed9e99e6SJeremy L Thompson return CEED_ERROR_SUCCESS; 1468ed9e99e6SJeremy L Thompson } 1469ed9e99e6SJeremy L Thompson 1470ed9e99e6SJeremy L Thompson /** 1471ed9e99e6SJeremy L Thompson @brief Destroy CeedOperatorAssemblyData 1472ed9e99e6SJeremy L Thompson 1473ea61e9acSJeremy L Thompson @param[in,out] data CeedOperatorAssemblyData to destroy 1474ed9e99e6SJeremy L Thompson 1475ed9e99e6SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1476ed9e99e6SJeremy L Thompson 1477ed9e99e6SJeremy L Thompson @ref Backend 1478ed9e99e6SJeremy L Thompson **/ 1479ed9e99e6SJeremy L Thompson int CeedOperatorAssemblyDataDestroy(CeedOperatorAssemblyData *data) { 1480ad6481ceSJeremy L Thompson if (!*data) { 1481ad6481ceSJeremy L Thompson *data = NULL; 1482ad6481ceSJeremy L Thompson return CEED_ERROR_SUCCESS; 1483ad6481ceSJeremy L Thompson } 14842b730f8bSJeremy L Thompson CeedCall(CeedDestroy(&(*data)->ceed)); 1485437c7c90SJeremy L Thompson for (CeedInt b = 0; b < (*data)->num_active_bases; b++) { 1486437c7c90SJeremy L Thompson CeedCall(CeedBasisDestroy(&(*data)->active_bases[b])); 1487437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&(*data)->active_elem_rstrs[b])); 1488437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_modes_in[b])); 1489437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_modes_out[b])); 1490437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_mode_offsets_in[b])); 1491437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_mode_offsets_out[b])); 1492437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->assembled_bases_in[b])); 1493437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->assembled_bases_out[b])); 1494437c7c90SJeremy L Thompson } 1495437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->active_bases)); 1496437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->active_elem_rstrs)); 1497437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->num_eval_modes_in)); 1498437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->num_eval_modes_out)); 1499437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_modes_in)); 1500437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_modes_out)); 1501437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_mode_offsets_in)); 1502437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->eval_mode_offsets_out)); 1503437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->assembled_bases_in)); 1504437c7c90SJeremy L Thompson CeedCall(CeedFree(&(*data)->assembled_bases_out)); 1505ed9e99e6SJeremy L Thompson 15062b730f8bSJeremy L Thompson CeedCall(CeedFree(data)); 1507ed9e99e6SJeremy L Thompson return CEED_ERROR_SUCCESS; 1508ed9e99e6SJeremy L Thompson } 1509ed9e99e6SJeremy L Thompson 1510480fae85SJeremy L Thompson /// @} 1511480fae85SJeremy L Thompson 1512480fae85SJeremy L Thompson /// ---------------------------------------------------------------------------- 1513eaf62fffSJeremy L Thompson /// CeedOperator Public API 1514eaf62fffSJeremy L Thompson /// ---------------------------------------------------------------------------- 1515eaf62fffSJeremy L Thompson /// @addtogroup CeedOperatorUser 1516eaf62fffSJeremy L Thompson /// @{ 1517eaf62fffSJeremy L Thompson 1518eaf62fffSJeremy L Thompson /** 1519eaf62fffSJeremy L Thompson @brief Assemble a linear CeedQFunction associated with a CeedOperator 1520eaf62fffSJeremy L Thompson 1521ea61e9acSJeremy L Thompson This returns a CeedVector containing a matrix at each quadrature point providing the action of the CeedQFunction associated with the CeedOperator. 1522859c15bbSJames Wright The vector `assembled` is of shape `[num_elements, num_input_fields, num_output_fields, num_quad_points]` and contains column-major matrices 1523859c15bbSJames Wright representing the action of the CeedQFunction for a corresponding quadrature point on an element. 1524859c15bbSJames Wright 1525859c15bbSJames Wright Inputs and outputs are in the order provided by the 1526ea61e9acSJeremy L Thompson user when adding CeedOperator fields. For example, a CeedQFunction with inputs 'u' and 'gradu' and outputs 'gradv' and 'v', provided in that order, 1527ea61e9acSJeremy L Thompson would result in an assembled QFunction that consists of (1 + dim) x (dim + 1) matrices at each quadrature point acting on the input [u, du_0, du_1] 1528ea61e9acSJeremy L Thompson and producing the output [dv_0, dv_1, v]. 1529eaf62fffSJeremy L Thompson 1530ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1531f04ea552SJeremy L Thompson 1532ea61e9acSJeremy L Thompson @param[in] op CeedOperator to assemble CeedQFunction 1533ea61e9acSJeremy L Thompson @param[out] assembled CeedVector to store assembled CeedQFunction at quadrature points 1534ea61e9acSJeremy L Thompson @param[out] rstr CeedElemRestriction for CeedVector containing assembled CeedQFunction 1535ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 1536eaf62fffSJeremy L Thompson 1537eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1538eaf62fffSJeremy L Thompson 1539eaf62fffSJeremy L Thompson @ref User 1540eaf62fffSJeremy L Thompson **/ 15412b730f8bSJeremy L Thompson int CeedOperatorLinearAssembleQFunction(CeedOperator op, CeedVector *assembled, CeedElemRestriction *rstr, CeedRequest *request) { 15422b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1543eaf62fffSJeremy L Thompson 1544eaf62fffSJeremy L Thompson if (op->LinearAssembleQFunction) { 1545d04bbc78SJeremy L Thompson // Backend version 15462b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleQFunction(op, assembled, rstr, request)); 1547eaf62fffSJeremy L Thompson } else { 1548d04bbc78SJeremy L Thompson // Operator fallback 1549d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1550d04bbc78SJeremy L Thompson 15512b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1552d04bbc78SJeremy L Thompson if (op_fallback) { 15532b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleQFunction(op_fallback, assembled, rstr, request)); 1554d04bbc78SJeremy L Thompson } else { 1555d04bbc78SJeremy L Thompson // LCOV_EXCL_START 15562b730f8bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_UNSUPPORTED, "Backend does not support CeedOperatorLinearAssembleQFunction"); 1557d04bbc78SJeremy L Thompson // LCOV_EXCL_STOP 1558d04bbc78SJeremy L Thompson } 155970a7ffb3SJeremy L Thompson } 1560eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1561eaf62fffSJeremy L Thompson } 156270a7ffb3SJeremy L Thompson 156370a7ffb3SJeremy L Thompson /** 1564ea61e9acSJeremy L Thompson @brief Assemble CeedQFunction and store result internally. 1565ea61e9acSJeremy L Thompson Return copied references of stored data to the caller. 1566ea61e9acSJeremy L Thompson Caller is responsible for ownership and destruction of the copied references. 1567ea61e9acSJeremy L Thompson See also @ref CeedOperatorLinearAssembleQFunction 156870a7ffb3SJeremy L Thompson 1569ea61e9acSJeremy L Thompson @param[in] op CeedOperator to assemble CeedQFunction 1570ea61e9acSJeremy L Thompson @param[out] assembled CeedVector to store assembled CeedQFunction at quadrature points 1571ea61e9acSJeremy L Thompson @param[out] rstr CeedElemRestriction for CeedVector containing assembledCeedQFunction 1572ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 157370a7ffb3SJeremy L Thompson 157470a7ffb3SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 157570a7ffb3SJeremy L Thompson 157670a7ffb3SJeremy L Thompson @ref User 157770a7ffb3SJeremy L Thompson **/ 15782b730f8bSJeremy L Thompson int CeedOperatorLinearAssembleQFunctionBuildOrUpdate(CeedOperator op, CeedVector *assembled, CeedElemRestriction *rstr, CeedRequest *request) { 15792b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 158070a7ffb3SJeremy L Thompson 158170a7ffb3SJeremy L Thompson if (op->LinearAssembleQFunctionUpdate) { 1582d04bbc78SJeremy L Thompson // Backend version 1583480fae85SJeremy L Thompson bool qf_assembled_is_setup; 15842efa2d85SJeremy L Thompson CeedVector assembled_vec = NULL; 15852efa2d85SJeremy L Thompson CeedElemRestriction assembled_rstr = NULL; 1586480fae85SJeremy L Thompson 15872b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataIsSetup(op->qf_assembled, &qf_assembled_is_setup)); 1588480fae85SJeremy L Thompson if (qf_assembled_is_setup) { 1589d04bbc78SJeremy L Thompson bool update_needed; 1590d04bbc78SJeremy L Thompson 15912b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataGetObjects(op->qf_assembled, &assembled_vec, &assembled_rstr)); 15922b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataIsUpdateNeeded(op->qf_assembled, &update_needed)); 15938b919e6bSJeremy L Thompson if (update_needed) { 15942b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleQFunctionUpdate(op, assembled_vec, assembled_rstr, request)); 15958b919e6bSJeremy L Thompson } 159670a7ffb3SJeremy L Thompson } else { 15972b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleQFunction(op, &assembled_vec, &assembled_rstr, request)); 15982b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataSetObjects(op->qf_assembled, assembled_vec, assembled_rstr)); 159970a7ffb3SJeremy L Thompson } 16002b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAssemblyDataSetUpdateNeeded(op->qf_assembled, false)); 16012efa2d85SJeremy L Thompson 1602d04bbc78SJeremy L Thompson // Copy reference from internally held copy 160370a7ffb3SJeremy L Thompson *assembled = NULL; 160470a7ffb3SJeremy L Thompson *rstr = NULL; 16052b730f8bSJeremy L Thompson CeedCall(CeedVectorReferenceCopy(assembled_vec, assembled)); 16062b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&assembled_vec)); 16072b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionReferenceCopy(assembled_rstr, rstr)); 16082b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&assembled_rstr)); 160970a7ffb3SJeremy L Thompson } else { 1610d04bbc78SJeremy L Thompson // Operator fallback 1611d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1612d04bbc78SJeremy L Thompson 16132b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1614d04bbc78SJeremy L Thompson if (op_fallback) { 16152b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op_fallback, assembled, rstr, request)); 1616d04bbc78SJeremy L Thompson } else { 1617d04bbc78SJeremy L Thompson // LCOV_EXCL_START 16182b730f8bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_UNSUPPORTED, "Backend does not support CeedOperatorLinearAssembleQFunctionUpdate"); 1619d04bbc78SJeremy L Thompson // LCOV_EXCL_STOP 162070a7ffb3SJeremy L Thompson } 162170a7ffb3SJeremy L Thompson } 162270a7ffb3SJeremy L Thompson 162370a7ffb3SJeremy L Thompson return CEED_ERROR_SUCCESS; 1624eaf62fffSJeremy L Thompson } 1625eaf62fffSJeremy L Thompson 1626eaf62fffSJeremy L Thompson /** 1627eaf62fffSJeremy L Thompson @brief Assemble the diagonal of a square linear CeedOperator 1628eaf62fffSJeremy L Thompson 1629eaf62fffSJeremy L Thompson This overwrites a CeedVector with the diagonal of a linear CeedOperator. 1630eaf62fffSJeremy L Thompson 1631ea61e9acSJeremy L Thompson Note: Currently only non-composite CeedOperators with a single field and composite CeedOperators with single field sub-operators are supported. 1632eaf62fffSJeremy L Thompson 1633ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1634f04ea552SJeremy L Thompson 1635ea61e9acSJeremy L Thompson @param[in] op CeedOperator to assemble CeedQFunction 1636eaf62fffSJeremy L Thompson @param[out] assembled CeedVector to store assembled CeedOperator diagonal 1637ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 1638eaf62fffSJeremy L Thompson 1639eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1640eaf62fffSJeremy L Thompson 1641eaf62fffSJeremy L Thompson @ref User 1642eaf62fffSJeremy L Thompson **/ 16432b730f8bSJeremy L Thompson int CeedOperatorLinearAssembleDiagonal(CeedOperator op, CeedVector assembled, CeedRequest *request) { 1644f3d47e36SJeremy L Thompson bool is_composite; 16452b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1646f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 1647eaf62fffSJeremy L Thompson 1648c9366a6bSJeremy L Thompson CeedSize input_size = 0, output_size = 0; 16492b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveVectorLengths(op, &input_size, &output_size)); 16502b730f8bSJeremy L Thompson if (input_size != output_size) { 1651c9366a6bSJeremy L Thompson // LCOV_EXCL_START 1652c9366a6bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_DIMENSION, "Operator must be square"); 1653c9366a6bSJeremy L Thompson // LCOV_EXCL_STOP 16542b730f8bSJeremy L Thompson } 1655c9366a6bSJeremy L Thompson 1656f3d47e36SJeremy L Thompson // Early exit for empty operator 1657f3d47e36SJeremy L Thompson if (!is_composite) { 1658f3d47e36SJeremy L Thompson CeedInt num_elem = 0; 1659f3d47e36SJeremy L Thompson 1660f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetNumElements(op, &num_elem)); 1661f3d47e36SJeremy L Thompson if (num_elem == 0) return CEED_ERROR_SUCCESS; 1662f3d47e36SJeremy L Thompson } 1663f3d47e36SJeremy L Thompson 1664eaf62fffSJeremy L Thompson if (op->LinearAssembleDiagonal) { 1665d04bbc78SJeremy L Thompson // Backend version 16662b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleDiagonal(op, assembled, request)); 1667eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1668eaf62fffSJeremy L Thompson } else if (op->LinearAssembleAddDiagonal) { 1669d04bbc78SJeremy L Thompson // Backend version with zeroing first 16702b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(assembled, 0.0)); 16712b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleAddDiagonal(op, assembled, request)); 1672eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1673eaf62fffSJeremy L Thompson } else { 1674d04bbc78SJeremy L Thompson // Operator fallback 1675d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1676d04bbc78SJeremy L Thompson 16772b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1678d04bbc78SJeremy L Thompson if (op_fallback) { 16792b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleDiagonal(op_fallback, assembled, request)); 1680eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1681eaf62fffSJeremy L Thompson } 1682eaf62fffSJeremy L Thompson } 1683eaf62fffSJeremy L Thompson // Default interface implementation 16842b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(assembled, 0.0)); 16852b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddDiagonal(op, assembled, request)); 1686d04bbc78SJeremy L Thompson 1687eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1688eaf62fffSJeremy L Thompson } 1689eaf62fffSJeremy L Thompson 1690eaf62fffSJeremy L Thompson /** 1691eaf62fffSJeremy L Thompson @brief Assemble the diagonal of a square linear CeedOperator 1692eaf62fffSJeremy L Thompson 1693eaf62fffSJeremy L Thompson This sums into a CeedVector the diagonal of a linear CeedOperator. 1694eaf62fffSJeremy L Thompson 1695ea61e9acSJeremy L Thompson Note: Currently only non-composite CeedOperators with a single field and composite CeedOperators with single field sub-operators are supported. 1696eaf62fffSJeremy L Thompson 1697ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1698f04ea552SJeremy L Thompson 1699ea61e9acSJeremy L Thompson @param[in] op CeedOperator to assemble CeedQFunction 1700eaf62fffSJeremy L Thompson @param[out] assembled CeedVector to store assembled CeedOperator diagonal 1701ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 1702eaf62fffSJeremy L Thompson 1703eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1704eaf62fffSJeremy L Thompson 1705eaf62fffSJeremy L Thompson @ref User 1706eaf62fffSJeremy L Thompson **/ 17072b730f8bSJeremy L Thompson int CeedOperatorLinearAssembleAddDiagonal(CeedOperator op, CeedVector assembled, CeedRequest *request) { 1708f3d47e36SJeremy L Thompson bool is_composite; 17092b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1710f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 1711eaf62fffSJeremy L Thompson 1712c9366a6bSJeremy L Thompson CeedSize input_size = 0, output_size = 0; 17132b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveVectorLengths(op, &input_size, &output_size)); 17142b730f8bSJeremy L Thompson if (input_size != output_size) { 1715c9366a6bSJeremy L Thompson // LCOV_EXCL_START 1716c9366a6bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_DIMENSION, "Operator must be square"); 1717c9366a6bSJeremy L Thompson // LCOV_EXCL_STOP 17182b730f8bSJeremy L Thompson } 1719c9366a6bSJeremy L Thompson 1720f3d47e36SJeremy L Thompson // Early exit for empty operator 1721f3d47e36SJeremy L Thompson if (!is_composite) { 1722f3d47e36SJeremy L Thompson CeedInt num_elem = 0; 1723f3d47e36SJeremy L Thompson 1724f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetNumElements(op, &num_elem)); 1725f3d47e36SJeremy L Thompson if (num_elem == 0) return CEED_ERROR_SUCCESS; 1726f3d47e36SJeremy L Thompson } 1727f3d47e36SJeremy L Thompson 1728eaf62fffSJeremy L Thompson if (op->LinearAssembleAddDiagonal) { 1729d04bbc78SJeremy L Thompson // Backend version 17302b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleAddDiagonal(op, assembled, request)); 1731eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1732eaf62fffSJeremy L Thompson } else { 1733d04bbc78SJeremy L Thompson // Operator fallback 1734d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1735d04bbc78SJeremy L Thompson 17362b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1737d04bbc78SJeremy L Thompson if (op_fallback) { 17382b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddDiagonal(op_fallback, assembled, request)); 1739eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1740eaf62fffSJeremy L Thompson } 1741eaf62fffSJeremy L Thompson } 1742eaf62fffSJeremy L Thompson // Default interface implementation 1743eaf62fffSJeremy L Thompson if (is_composite) { 17442b730f8bSJeremy L Thompson CeedCall(CeedCompositeOperatorLinearAssembleAddDiagonal(op, request, false, assembled)); 1745eaf62fffSJeremy L Thompson } else { 17462b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssembleAddDiagonal_Core(op, request, false, assembled)); 1747eaf62fffSJeremy L Thompson } 1748d04bbc78SJeremy L Thompson 1749d04bbc78SJeremy L Thompson return CEED_ERROR_SUCCESS; 1750eaf62fffSJeremy L Thompson } 1751eaf62fffSJeremy L Thompson 1752eaf62fffSJeremy L Thompson /** 1753eaf62fffSJeremy L Thompson @brief Assemble the point block diagonal of a square linear CeedOperator 1754eaf62fffSJeremy L Thompson 1755ea61e9acSJeremy L Thompson This overwrites a CeedVector with the point block diagonal of a linear CeedOperator. 1756eaf62fffSJeremy L Thompson 1757ea61e9acSJeremy L Thompson Note: Currently only non-composite CeedOperators with a single field and composite CeedOperators with single field sub-operators are supported. 1758eaf62fffSJeremy L Thompson 1759ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1760f04ea552SJeremy L Thompson 1761ea61e9acSJeremy L Thompson @param[in] op CeedOperator to assemble CeedQFunction 1762ea61e9acSJeremy L Thompson @param[out] assembled CeedVector to store assembled CeedOperator point block diagonal, provided in row-major form with an @a num_comp * @a num_comp 1763ea61e9acSJeremy L Thompson block at each node. The dimensions of this vector are derived from the active vector for the CeedOperator. The array has shape [nodes, component out, 1764ea61e9acSJeremy L Thompson component in]. 1765ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 1766eaf62fffSJeremy L Thompson 1767eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1768eaf62fffSJeremy L Thompson 1769eaf62fffSJeremy L Thompson @ref User 1770eaf62fffSJeremy L Thompson **/ 17712b730f8bSJeremy L Thompson int CeedOperatorLinearAssemblePointBlockDiagonal(CeedOperator op, CeedVector assembled, CeedRequest *request) { 1772f3d47e36SJeremy L Thompson bool is_composite; 17732b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1774f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 1775eaf62fffSJeremy L Thompson 1776c9366a6bSJeremy L Thompson CeedSize input_size = 0, output_size = 0; 17772b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveVectorLengths(op, &input_size, &output_size)); 17782b730f8bSJeremy L Thompson if (input_size != output_size) { 1779c9366a6bSJeremy L Thompson // LCOV_EXCL_START 1780c9366a6bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_DIMENSION, "Operator must be square"); 1781c9366a6bSJeremy L Thompson // LCOV_EXCL_STOP 17822b730f8bSJeremy L Thompson } 1783c9366a6bSJeremy L Thompson 1784f3d47e36SJeremy L Thompson // Early exit for empty operator 1785f3d47e36SJeremy L Thompson if (!is_composite) { 1786f3d47e36SJeremy L Thompson CeedInt num_elem = 0; 1787f3d47e36SJeremy L Thompson 1788f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetNumElements(op, &num_elem)); 1789f3d47e36SJeremy L Thompson if (num_elem == 0) return CEED_ERROR_SUCCESS; 1790f3d47e36SJeremy L Thompson } 1791f3d47e36SJeremy L Thompson 1792eaf62fffSJeremy L Thompson if (op->LinearAssemblePointBlockDiagonal) { 1793d04bbc78SJeremy L Thompson // Backend version 17942b730f8bSJeremy L Thompson CeedCall(op->LinearAssemblePointBlockDiagonal(op, assembled, request)); 1795eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1796eaf62fffSJeremy L Thompson } else if (op->LinearAssembleAddPointBlockDiagonal) { 1797d04bbc78SJeremy L Thompson // Backend version with zeroing first 17982b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(assembled, 0.0)); 17992b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddPointBlockDiagonal(op, assembled, request)); 1800eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1801eaf62fffSJeremy L Thompson } else { 1802d04bbc78SJeremy L Thompson // Operator fallback 1803d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1804d04bbc78SJeremy L Thompson 18052b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1806d04bbc78SJeremy L Thompson if (op_fallback) { 18072b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssemblePointBlockDiagonal(op_fallback, assembled, request)); 1808eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1809eaf62fffSJeremy L Thompson } 1810eaf62fffSJeremy L Thompson } 1811eaf62fffSJeremy L Thompson // Default interface implementation 18122b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(assembled, 0.0)); 18132b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddPointBlockDiagonal(op, assembled, request)); 1814d04bbc78SJeremy L Thompson 1815eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1816eaf62fffSJeremy L Thompson } 1817eaf62fffSJeremy L Thompson 1818eaf62fffSJeremy L Thompson /** 1819eaf62fffSJeremy L Thompson @brief Assemble the point block diagonal of a square linear CeedOperator 1820eaf62fffSJeremy L Thompson 1821ea61e9acSJeremy L Thompson This sums into a CeedVector with the point block diagonal of a linear CeedOperator. 1822eaf62fffSJeremy L Thompson 1823ea61e9acSJeremy L Thompson Note: Currently only non-composite CeedOperators with a single field and composite CeedOperators with single field sub-operators are supported. 1824eaf62fffSJeremy L Thompson 1825ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1826f04ea552SJeremy L Thompson 1827ea61e9acSJeremy L Thompson @param[in] op CeedOperator to assemble CeedQFunction 1828ea61e9acSJeremy L Thompson @param[out] assembled CeedVector to store assembled CeedOperator point block diagonal, provided in row-major form with an @a num_comp * @a num_comp 1829ea61e9acSJeremy L Thompson block at each node. The dimensions of this vector are derived from the active vector for the CeedOperator. The array has shape [nodes, component out, 1830ea61e9acSJeremy L Thompson component in]. 1831ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 1832eaf62fffSJeremy L Thompson 1833eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 1834eaf62fffSJeremy L Thompson 1835eaf62fffSJeremy L Thompson @ref User 1836eaf62fffSJeremy L Thompson **/ 18372b730f8bSJeremy L Thompson int CeedOperatorLinearAssembleAddPointBlockDiagonal(CeedOperator op, CeedVector assembled, CeedRequest *request) { 1838f3d47e36SJeremy L Thompson bool is_composite; 18392b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1840f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 1841eaf62fffSJeremy L Thompson 1842c9366a6bSJeremy L Thompson CeedSize input_size = 0, output_size = 0; 18432b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveVectorLengths(op, &input_size, &output_size)); 18442b730f8bSJeremy L Thompson if (input_size != output_size) { 1845c9366a6bSJeremy L Thompson // LCOV_EXCL_START 1846c9366a6bSJeremy L Thompson return CeedError(op->ceed, CEED_ERROR_DIMENSION, "Operator must be square"); 1847c9366a6bSJeremy L Thompson // LCOV_EXCL_STOP 18482b730f8bSJeremy L Thompson } 1849c9366a6bSJeremy L Thompson 1850f3d47e36SJeremy L Thompson // Early exit for empty operator 1851f3d47e36SJeremy L Thompson if (!is_composite) { 1852f3d47e36SJeremy L Thompson CeedInt num_elem = 0; 1853f3d47e36SJeremy L Thompson 1854f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetNumElements(op, &num_elem)); 1855f3d47e36SJeremy L Thompson if (num_elem == 0) return CEED_ERROR_SUCCESS; 1856f3d47e36SJeremy L Thompson } 1857f3d47e36SJeremy L Thompson 1858eaf62fffSJeremy L Thompson if (op->LinearAssembleAddPointBlockDiagonal) { 1859d04bbc78SJeremy L Thompson // Backend version 18602b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleAddPointBlockDiagonal(op, assembled, request)); 1861eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1862eaf62fffSJeremy L Thompson } else { 1863d04bbc78SJeremy L Thompson // Operator fallback 1864d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1865d04bbc78SJeremy L Thompson 18662b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1867d04bbc78SJeremy L Thompson if (op_fallback) { 18682b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleAddPointBlockDiagonal(op_fallback, assembled, request)); 1869eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1870eaf62fffSJeremy L Thompson } 1871eaf62fffSJeremy L Thompson } 1872ea61e9acSJeremy L Thompson // Default interface implementation 1873eaf62fffSJeremy L Thompson if (is_composite) { 18742b730f8bSJeremy L Thompson CeedCall(CeedCompositeOperatorLinearAssembleAddDiagonal(op, request, true, assembled)); 1875eaf62fffSJeremy L Thompson } else { 18762b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssembleAddDiagonal_Core(op, request, true, assembled)); 1877eaf62fffSJeremy L Thompson } 1878d04bbc78SJeremy L Thompson 1879d04bbc78SJeremy L Thompson return CEED_ERROR_SUCCESS; 1880eaf62fffSJeremy L Thompson } 1881eaf62fffSJeremy L Thompson 1882eaf62fffSJeremy L Thompson /** 1883eaf62fffSJeremy L Thompson @brief Fully assemble the nonzero pattern of a linear operator. 1884eaf62fffSJeremy L Thompson 1885ea61e9acSJeremy L Thompson Expected to be used in conjunction with CeedOperatorLinearAssemble(). 1886eaf62fffSJeremy L Thompson 1887ea61e9acSJeremy L Thompson The assembly routines use coordinate format, with num_entries tuples of the form (i, j, value) which indicate that value should be added to the 1888ea61e9acSJeremy L Thompson matrix in entry (i, j). Note that the (i, j) pairs are not unique and may repeat. This function returns the number of entries and their (i, j) 1889ea61e9acSJeremy L Thompson locations, while CeedOperatorLinearAssemble() provides the values in the same ordering. 1890eaf62fffSJeremy L Thompson 1891eaf62fffSJeremy L Thompson This will generally be slow unless your operator is low-order. 1892eaf62fffSJeremy L Thompson 1893ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1894f04ea552SJeremy L Thompson 1895eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble 1896eaf62fffSJeremy L Thompson @param[out] num_entries Number of entries in coordinate nonzero pattern 1897eaf62fffSJeremy L Thompson @param[out] rows Row number for each entry 1898eaf62fffSJeremy L Thompson @param[out] cols Column number for each entry 1899eaf62fffSJeremy L Thompson 1900eaf62fffSJeremy L Thompson @ref User 1901eaf62fffSJeremy L Thompson **/ 19022b730f8bSJeremy L Thompson int CeedOperatorLinearAssembleSymbolic(CeedOperator op, CeedSize *num_entries, CeedInt **rows, CeedInt **cols) { 1903eaf62fffSJeremy L Thompson CeedInt num_suboperators, single_entries; 1904eaf62fffSJeremy L Thompson CeedOperator *sub_operators; 1905eaf62fffSJeremy L Thompson bool is_composite; 19062b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1907f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 1908eaf62fffSJeremy L Thompson 1909eaf62fffSJeremy L Thompson if (op->LinearAssembleSymbolic) { 1910d04bbc78SJeremy L Thompson // Backend version 19112b730f8bSJeremy L Thompson CeedCall(op->LinearAssembleSymbolic(op, num_entries, rows, cols)); 1912eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1913eaf62fffSJeremy L Thompson } else { 1914d04bbc78SJeremy L Thompson // Operator fallback 1915d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1916d04bbc78SJeremy L Thompson 19172b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 1918d04bbc78SJeremy L Thompson if (op_fallback) { 19192b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleSymbolic(op_fallback, num_entries, rows, cols)); 1920eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1921eaf62fffSJeremy L Thompson } 1922eaf62fffSJeremy L Thompson } 1923eaf62fffSJeremy L Thompson 1924eaf62fffSJeremy L Thompson // Default interface implementation 1925eaf62fffSJeremy L Thompson 1926eaf62fffSJeremy L Thompson // count entries and allocate rows, cols arrays 1927eaf62fffSJeremy L Thompson *num_entries = 0; 1928eaf62fffSJeremy L Thompson if (is_composite) { 1929c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators)); 1930c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators)); 193192ae7e47SJeremy L Thompson for (CeedInt k = 0; k < num_suboperators; ++k) { 19322b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemblyCountEntries(sub_operators[k], &single_entries)); 1933eaf62fffSJeremy L Thompson *num_entries += single_entries; 1934eaf62fffSJeremy L Thompson } 1935eaf62fffSJeremy L Thompson } else { 19362b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemblyCountEntries(op, &single_entries)); 1937eaf62fffSJeremy L Thompson *num_entries += single_entries; 1938eaf62fffSJeremy L Thompson } 19392b730f8bSJeremy L Thompson CeedCall(CeedCalloc(*num_entries, rows)); 19402b730f8bSJeremy L Thompson CeedCall(CeedCalloc(*num_entries, cols)); 1941eaf62fffSJeremy L Thompson 1942eaf62fffSJeremy L Thompson // assemble nonzero locations 1943eaf62fffSJeremy L Thompson CeedInt offset = 0; 1944eaf62fffSJeremy L Thompson if (is_composite) { 1945c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators)); 1946c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators)); 194792ae7e47SJeremy L Thompson for (CeedInt k = 0; k < num_suboperators; ++k) { 19482b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssembleSymbolic(sub_operators[k], offset, *rows, *cols)); 19492b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemblyCountEntries(sub_operators[k], &single_entries)); 1950eaf62fffSJeremy L Thompson offset += single_entries; 1951eaf62fffSJeremy L Thompson } 1952eaf62fffSJeremy L Thompson } else { 19532b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssembleSymbolic(op, offset, *rows, *cols)); 1954eaf62fffSJeremy L Thompson } 1955eaf62fffSJeremy L Thompson 1956eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1957eaf62fffSJeremy L Thompson } 1958eaf62fffSJeremy L Thompson 1959eaf62fffSJeremy L Thompson /** 1960eaf62fffSJeremy L Thompson @brief Fully assemble the nonzero entries of a linear operator. 1961eaf62fffSJeremy L Thompson 1962ea61e9acSJeremy L Thompson Expected to be used in conjunction with CeedOperatorLinearAssembleSymbolic(). 1963eaf62fffSJeremy L Thompson 1964ea61e9acSJeremy L Thompson The assembly routines use coordinate format, with num_entries tuples of the form (i, j, value) which indicate that value should be added to the 1965ea61e9acSJeremy L Thompson matrix in entry (i, j). Note that the (i, j) pairs are not unique and may repeat. This function returns the values of the nonzero entries to be added, 1966ea61e9acSJeremy L Thompson their (i, j) locations are provided by CeedOperatorLinearAssembleSymbolic() 1967eaf62fffSJeremy L Thompson 1968eaf62fffSJeremy L Thompson This will generally be slow unless your operator is low-order. 1969eaf62fffSJeremy L Thompson 1970ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 1971f04ea552SJeremy L Thompson 1972eaf62fffSJeremy L Thompson @param[in] op CeedOperator to assemble 1973eaf62fffSJeremy L Thompson @param[out] values Values to assemble into matrix 1974eaf62fffSJeremy L Thompson 1975eaf62fffSJeremy L Thompson @ref User 1976eaf62fffSJeremy L Thompson **/ 1977eaf62fffSJeremy L Thompson int CeedOperatorLinearAssemble(CeedOperator op, CeedVector values) { 1978eaf62fffSJeremy L Thompson CeedInt num_suboperators, single_entries = 0; 1979eaf62fffSJeremy L Thompson CeedOperator *sub_operators; 1980f3d47e36SJeremy L Thompson bool is_composite; 19812b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 1982f3d47e36SJeremy L Thompson CeedCall(CeedOperatorIsComposite(op, &is_composite)); 1983f3d47e36SJeremy L Thompson 1984f3d47e36SJeremy L Thompson // Early exit for empty operator 1985f3d47e36SJeremy L Thompson if (!is_composite) { 1986f3d47e36SJeremy L Thompson CeedInt num_elem = 0; 1987f3d47e36SJeremy L Thompson 1988f3d47e36SJeremy L Thompson CeedCall(CeedOperatorGetNumElements(op, &num_elem)); 1989f3d47e36SJeremy L Thompson if (num_elem == 0) return CEED_ERROR_SUCCESS; 1990f3d47e36SJeremy L Thompson } 1991eaf62fffSJeremy L Thompson 1992eaf62fffSJeremy L Thompson if (op->LinearAssemble) { 1993d04bbc78SJeremy L Thompson // Backend version 19942b730f8bSJeremy L Thompson CeedCall(op->LinearAssemble(op, values)); 1995eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 1996eaf62fffSJeremy L Thompson } else { 1997d04bbc78SJeremy L Thompson // Operator fallback 1998d04bbc78SJeremy L Thompson CeedOperator op_fallback; 1999d04bbc78SJeremy L Thompson 20002b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 2001d04bbc78SJeremy L Thompson if (op_fallback) { 20022b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssemble(op_fallback, values)); 2003eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2004eaf62fffSJeremy L Thompson } 2005eaf62fffSJeremy L Thompson } 2006eaf62fffSJeremy L Thompson 2007eaf62fffSJeremy L Thompson // Default interface implementation 2008eaf62fffSJeremy L Thompson CeedInt offset = 0; 200928ec399dSJeremy L Thompson CeedCall(CeedVectorSetValue(values, 0.0)); 2010eaf62fffSJeremy L Thompson if (is_composite) { 2011c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators)); 2012c6ebc35dSJeremy L Thompson CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators)); 2013cefa2673SJeremy L Thompson for (CeedInt k = 0; k < num_suboperators; k++) { 20142b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemble(sub_operators[k], offset, values)); 20152b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemblyCountEntries(sub_operators[k], &single_entries)); 2016eaf62fffSJeremy L Thompson offset += single_entries; 2017eaf62fffSJeremy L Thompson } 2018eaf62fffSJeremy L Thompson } else { 20192b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorAssemble(op, offset, values)); 2020eaf62fffSJeremy L Thompson } 2021eaf62fffSJeremy L Thompson 2022eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2023eaf62fffSJeremy L Thompson } 2024eaf62fffSJeremy L Thompson 2025eaf62fffSJeremy L Thompson /** 202675f0d5a4SJeremy L Thompson @brief Get the multiplicity of nodes across suboperators in a composite CeedOperator 202775f0d5a4SJeremy L Thompson 202875f0d5a4SJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 202975f0d5a4SJeremy L Thompson 203075f0d5a4SJeremy L Thompson @param[in] op Composite CeedOperator 203175f0d5a4SJeremy L Thompson @param[in] num_skip_indices Number of suboperators to skip 203275f0d5a4SJeremy L Thompson @param[in] skip_indices Array of indices of suboperators to skip 203375f0d5a4SJeremy L Thompson @param[out] mult Vector to store multiplicity (of size l_size) 203475f0d5a4SJeremy L Thompson 203575f0d5a4SJeremy L Thompson @return An error code: 0 - success, otherwise - failure 203675f0d5a4SJeremy L Thompson 203775f0d5a4SJeremy L Thompson @ref User 203875f0d5a4SJeremy L Thompson **/ 203975f0d5a4SJeremy L Thompson int CeedCompositeOperatorGetMultiplicity(CeedOperator op, CeedInt num_skip_indices, CeedInt *skip_indices, CeedVector mult) { 204075f0d5a4SJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 204175f0d5a4SJeremy L Thompson 204275f0d5a4SJeremy L Thompson Ceed ceed; 2043b275c451SJeremy L Thompson CeedInt num_suboperators; 204475f0d5a4SJeremy L Thompson CeedSize l_vec_len; 204575f0d5a4SJeremy L Thompson CeedScalar *mult_array; 204675f0d5a4SJeremy L Thompson CeedVector ones_l_vec; 2047437c7c90SJeremy L Thompson CeedElemRestriction elem_rstr; 2048b275c451SJeremy L Thompson CeedOperator *sub_operators; 204975f0d5a4SJeremy L Thompson 205075f0d5a4SJeremy L Thompson CeedCall(CeedOperatorGetCeed(op, &ceed)); 205175f0d5a4SJeremy L Thompson 205275f0d5a4SJeremy L Thompson // Zero mult vector 205375f0d5a4SJeremy L Thompson CeedCall(CeedVectorSetValue(mult, 0.0)); 205475f0d5a4SJeremy L Thompson 205575f0d5a4SJeremy L Thompson // Get suboperators 2056b275c451SJeremy L Thompson CeedCall(CeedCompositeOperatorGetNumSub(op, &num_suboperators)); 2057b275c451SJeremy L Thompson CeedCall(CeedCompositeOperatorGetSubList(op, &sub_operators)); 2058b275c451SJeremy L Thompson if (num_suboperators == 0) return CEED_ERROR_SUCCESS; 205975f0d5a4SJeremy L Thompson 206075f0d5a4SJeremy L Thompson // Work vector 206175f0d5a4SJeremy L Thompson CeedCall(CeedVectorGetLength(mult, &l_vec_len)); 206275f0d5a4SJeremy L Thompson CeedCall(CeedVectorCreate(ceed, l_vec_len, &ones_l_vec)); 206375f0d5a4SJeremy L Thompson CeedCall(CeedVectorSetValue(ones_l_vec, 1.0)); 206475f0d5a4SJeremy L Thompson CeedCall(CeedVectorGetArray(mult, CEED_MEM_HOST, &mult_array)); 206575f0d5a4SJeremy L Thompson 206675f0d5a4SJeremy L Thompson // Compute multiplicity across suboperators 2067b275c451SJeremy L Thompson for (CeedInt i = 0; i < num_suboperators; i++) { 206875f0d5a4SJeremy L Thompson const CeedScalar *sub_mult_array; 206975f0d5a4SJeremy L Thompson CeedVector sub_mult_l_vec, ones_e_vec; 207075f0d5a4SJeremy L Thompson 207175f0d5a4SJeremy L Thompson // -- Check for suboperator to skip 207275f0d5a4SJeremy L Thompson for (CeedInt j = 0; j < num_skip_indices; j++) { 207375f0d5a4SJeremy L Thompson if (skip_indices[j] == i) continue; 207475f0d5a4SJeremy L Thompson } 207575f0d5a4SJeremy L Thompson 207675f0d5a4SJeremy L Thompson // -- Sub operator multiplicity 2077437c7c90SJeremy L Thompson CeedCall(CeedOperatorGetActiveElemRestriction(sub_operators[i], &elem_rstr)); 2078437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionCreateVector(elem_rstr, &sub_mult_l_vec, &ones_e_vec)); 207975f0d5a4SJeremy L Thompson CeedCall(CeedVectorSetValue(sub_mult_l_vec, 0.0)); 2080437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionApply(elem_rstr, CEED_NOTRANSPOSE, ones_l_vec, ones_e_vec, CEED_REQUEST_IMMEDIATE)); 2081437c7c90SJeremy L Thompson CeedCall(CeedElemRestrictionApply(elem_rstr, CEED_TRANSPOSE, ones_e_vec, sub_mult_l_vec, CEED_REQUEST_IMMEDIATE)); 208275f0d5a4SJeremy L Thompson CeedCall(CeedVectorGetArrayRead(sub_mult_l_vec, CEED_MEM_HOST, &sub_mult_array)); 208375f0d5a4SJeremy L Thompson // ---- Flag every node present in the current suboperator 208475f0d5a4SJeremy L Thompson for (CeedInt j = 0; j < l_vec_len; j++) { 208575f0d5a4SJeremy L Thompson if (sub_mult_array[j] > 0.0) mult_array[j] += 1.0; 208675f0d5a4SJeremy L Thompson } 208775f0d5a4SJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(sub_mult_l_vec, &sub_mult_array)); 208875f0d5a4SJeremy L Thompson CeedCall(CeedVectorDestroy(&sub_mult_l_vec)); 208975f0d5a4SJeremy L Thompson CeedCall(CeedVectorDestroy(&ones_e_vec)); 209075f0d5a4SJeremy L Thompson } 209175f0d5a4SJeremy L Thompson CeedCall(CeedVectorRestoreArray(mult, &mult_array)); 2092811d0ccfSJeremy L Thompson CeedCall(CeedVectorDestroy(&ones_l_vec)); 209375f0d5a4SJeremy L Thompson 209475f0d5a4SJeremy L Thompson return CEED_ERROR_SUCCESS; 209575f0d5a4SJeremy L Thompson } 209675f0d5a4SJeremy L Thompson 209775f0d5a4SJeremy L Thompson /** 2098ea61e9acSJeremy L Thompson @brief Create a multigrid coarse operator and level transfer operators for a CeedOperator, creating the prolongation basis from the fine and coarse 2099ea61e9acSJeremy L Thompson grid interpolation 2100eaf62fffSJeremy L Thompson 210158e4b056SJeremy L Thompson Note: Calling this function asserts that setup is complete and sets all four CeedOperators as immutable. 2102f04ea552SJeremy L Thompson 2103eaf62fffSJeremy L Thompson @param[in] op_fine Fine grid operator 210485bb9dcfSJeremy L Thompson @param[in] p_mult_fine L-vector multiplicity in parallel gather/scatter, or NULL if not creating prolongation/restriction operators 2105eaf62fffSJeremy L Thompson @param[in] rstr_coarse Coarse grid restriction 2106eaf62fffSJeremy L Thompson @param[in] basis_coarse Coarse grid active vector basis 2107eaf62fffSJeremy L Thompson @param[out] op_coarse Coarse grid operator 210885bb9dcfSJeremy L Thompson @param[out] op_prolong Coarse to fine operator, or NULL 210985bb9dcfSJeremy L Thompson @param[out] op_restrict Fine to coarse operator, or NULL 2110eaf62fffSJeremy L Thompson 2111eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 2112eaf62fffSJeremy L Thompson 2113eaf62fffSJeremy L Thompson @ref User 2114eaf62fffSJeremy L Thompson **/ 21152b730f8bSJeremy L Thompson int CeedOperatorMultigridLevelCreate(CeedOperator op_fine, CeedVector p_mult_fine, CeedElemRestriction rstr_coarse, CeedBasis basis_coarse, 21162b730f8bSJeremy L Thompson CeedOperator *op_coarse, CeedOperator *op_prolong, CeedOperator *op_restrict) { 21172b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op_fine)); 2118eaf62fffSJeremy L Thompson 211983d6adf3SZach Atkins // Build prolongation matrix, if required 212083d6adf3SZach Atkins CeedBasis basis_c_to_f = NULL; 212183d6adf3SZach Atkins if (op_prolong || op_restrict) { 212283d6adf3SZach Atkins CeedBasis basis_fine; 21232b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveBasis(op_fine, &basis_fine)); 21242b730f8bSJeremy L Thompson CeedCall(CeedBasisCreateProjection(basis_coarse, basis_fine, &basis_c_to_f)); 212583d6adf3SZach Atkins } 2126eaf62fffSJeremy L Thompson 2127f113e5dcSJeremy L Thompson // Core code 21282b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorMultigridLevel(op_fine, p_mult_fine, rstr_coarse, basis_coarse, basis_c_to_f, op_coarse, op_prolong, op_restrict)); 2129f113e5dcSJeremy L Thompson 2130eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2131eaf62fffSJeremy L Thompson } 2132eaf62fffSJeremy L Thompson 2133eaf62fffSJeremy L Thompson /** 2134ea61e9acSJeremy L Thompson @brief Create a multigrid coarse operator and level transfer operators for a CeedOperator with a tensor basis for the active basis 2135eaf62fffSJeremy L Thompson 213658e4b056SJeremy L Thompson Note: Calling this function asserts that setup is complete and sets all four CeedOperators as immutable. 2137f04ea552SJeremy L Thompson 2138eaf62fffSJeremy L Thompson @param[in] op_fine Fine grid operator 213985bb9dcfSJeremy L Thompson @param[in] p_mult_fine L-vector multiplicity in parallel gather/scatter, or NULL if not creating prolongation/restriction operators 2140eaf62fffSJeremy L Thompson @param[in] rstr_coarse Coarse grid restriction 2141eaf62fffSJeremy L Thompson @param[in] basis_coarse Coarse grid active vector basis 214285bb9dcfSJeremy L Thompson @param[in] interp_c_to_f Matrix for coarse to fine interpolation, or NULL if not creating prolongation/restriction operators 2143eaf62fffSJeremy L Thompson @param[out] op_coarse Coarse grid operator 214485bb9dcfSJeremy L Thompson @param[out] op_prolong Coarse to fine operator, or NULL 214585bb9dcfSJeremy L Thompson @param[out] op_restrict Fine to coarse operator, or NULL 2146eaf62fffSJeremy L Thompson 2147eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 2148eaf62fffSJeremy L Thompson 2149eaf62fffSJeremy L Thompson @ref User 2150eaf62fffSJeremy L Thompson **/ 21512b730f8bSJeremy L Thompson int CeedOperatorMultigridLevelCreateTensorH1(CeedOperator op_fine, CeedVector p_mult_fine, CeedElemRestriction rstr_coarse, CeedBasis basis_coarse, 21522b730f8bSJeremy L Thompson const CeedScalar *interp_c_to_f, CeedOperator *op_coarse, CeedOperator *op_prolong, 21532b730f8bSJeremy L Thompson CeedOperator *op_restrict) { 21542b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op_fine)); 2155eaf62fffSJeremy L Thompson Ceed ceed; 21562b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetCeed(op_fine, &ceed)); 2157eaf62fffSJeremy L Thompson 2158eaf62fffSJeremy L Thompson // Check for compatible quadrature spaces 2159eaf62fffSJeremy L Thompson CeedBasis basis_fine; 21602b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveBasis(op_fine, &basis_fine)); 2161eaf62fffSJeremy L Thompson CeedInt Q_f, Q_c; 21622b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(basis_fine, &Q_f)); 21632b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(basis_coarse, &Q_c)); 21642b730f8bSJeremy L Thompson if (Q_f != Q_c) { 2165eaf62fffSJeremy L Thompson // LCOV_EXCL_START 21662b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_DIMENSION, "Bases must have compatible quadrature spaces"); 2167eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 21682b730f8bSJeremy L Thompson } 2169eaf62fffSJeremy L Thompson 217083d6adf3SZach Atkins // Create coarse to fine basis, if required 217183d6adf3SZach Atkins CeedBasis basis_c_to_f = NULL; 217283d6adf3SZach Atkins if (op_prolong || op_restrict) { 217383d6adf3SZach Atkins // Check if interpolation matrix is provided 217483d6adf3SZach Atkins if (!interp_c_to_f) { 217583d6adf3SZach Atkins // LCOV_EXCL_START 217683d6adf3SZach Atkins return CeedError(ceed, CEED_ERROR_INCOMPATIBLE, "Prolongation or restriction operator creation requires coarse-to-fine interpolation matrix"); 217783d6adf3SZach Atkins // LCOV_EXCL_STOP 217883d6adf3SZach Atkins } 2179eaf62fffSJeremy L Thompson CeedInt dim, num_comp, num_nodes_c, P_1d_f, P_1d_c; 21802b730f8bSJeremy L Thompson CeedCall(CeedBasisGetDimension(basis_fine, &dim)); 21812b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumComponents(basis_fine, &num_comp)); 21822b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumNodes1D(basis_fine, &P_1d_f)); 21832b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetElementSize(rstr_coarse, &num_nodes_c)); 21842b730f8bSJeremy L Thompson P_1d_c = dim == 1 ? num_nodes_c : dim == 2 ? sqrt(num_nodes_c) : cbrt(num_nodes_c); 2185eaf62fffSJeremy L Thompson CeedScalar *q_ref, *q_weight, *grad; 21862b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d_f, &q_ref)); 21872b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d_f, &q_weight)); 21882b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d_f * P_1d_c * dim, &grad)); 21892b730f8bSJeremy L Thompson CeedCall(CeedBasisCreateTensorH1(ceed, dim, num_comp, P_1d_c, P_1d_f, interp_c_to_f, grad, q_ref, q_weight, &basis_c_to_f)); 21902b730f8bSJeremy L Thompson CeedCall(CeedFree(&q_ref)); 21912b730f8bSJeremy L Thompson CeedCall(CeedFree(&q_weight)); 21922b730f8bSJeremy L Thompson CeedCall(CeedFree(&grad)); 219383d6adf3SZach Atkins } 2194eaf62fffSJeremy L Thompson 2195eaf62fffSJeremy L Thompson // Core code 21962b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorMultigridLevel(op_fine, p_mult_fine, rstr_coarse, basis_coarse, basis_c_to_f, op_coarse, op_prolong, op_restrict)); 2197eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2198eaf62fffSJeremy L Thompson } 2199eaf62fffSJeremy L Thompson 2200eaf62fffSJeremy L Thompson /** 2201ea61e9acSJeremy L Thompson @brief Create a multigrid coarse operator and level transfer operators for a CeedOperator with a non-tensor basis for the active vector 2202eaf62fffSJeremy L Thompson 220358e4b056SJeremy L Thompson Note: Calling this function asserts that setup is complete and sets all four CeedOperators as immutable. 2204f04ea552SJeremy L Thompson 2205eaf62fffSJeremy L Thompson @param[in] op_fine Fine grid operator 220685bb9dcfSJeremy L Thompson @param[in] p_mult_fine L-vector multiplicity in parallel gather/scatter, or NULL if not creating prolongation/restriction operators 2207eaf62fffSJeremy L Thompson @param[in] rstr_coarse Coarse grid restriction 2208eaf62fffSJeremy L Thompson @param[in] basis_coarse Coarse grid active vector basis 220985bb9dcfSJeremy L Thompson @param[in] interp_c_to_f Matrix for coarse to fine interpolation, or NULL if not creating prolongation/restriction operators 2210eaf62fffSJeremy L Thompson @param[out] op_coarse Coarse grid operator 221185bb9dcfSJeremy L Thompson @param[out] op_prolong Coarse to fine operator, or NULL 221285bb9dcfSJeremy L Thompson @param[out] op_restrict Fine to coarse operator, or NULL 2213eaf62fffSJeremy L Thompson 2214eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 2215eaf62fffSJeremy L Thompson 2216eaf62fffSJeremy L Thompson @ref User 2217eaf62fffSJeremy L Thompson **/ 22182b730f8bSJeremy L Thompson int CeedOperatorMultigridLevelCreateH1(CeedOperator op_fine, CeedVector p_mult_fine, CeedElemRestriction rstr_coarse, CeedBasis basis_coarse, 22192b730f8bSJeremy L Thompson const CeedScalar *interp_c_to_f, CeedOperator *op_coarse, CeedOperator *op_prolong, 2220eaf62fffSJeremy L Thompson CeedOperator *op_restrict) { 22212b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op_fine)); 2222eaf62fffSJeremy L Thompson Ceed ceed; 22232b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetCeed(op_fine, &ceed)); 2224eaf62fffSJeremy L Thompson 2225eaf62fffSJeremy L Thompson // Check for compatible quadrature spaces 2226eaf62fffSJeremy L Thompson CeedBasis basis_fine; 22272b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetActiveBasis(op_fine, &basis_fine)); 2228eaf62fffSJeremy L Thompson CeedInt Q_f, Q_c; 22292b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(basis_fine, &Q_f)); 22302b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(basis_coarse, &Q_c)); 22312b730f8bSJeremy L Thompson if (Q_f != Q_c) { 2232eaf62fffSJeremy L Thompson // LCOV_EXCL_START 22332b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_DIMENSION, "Bases must have compatible quadrature spaces"); 2234eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 22352b730f8bSJeremy L Thompson } 2236eaf62fffSJeremy L Thompson 2237eaf62fffSJeremy L Thompson // Coarse to fine basis 223883d6adf3SZach Atkins CeedBasis basis_c_to_f = NULL; 223983d6adf3SZach Atkins if (op_prolong || op_restrict) { 224083d6adf3SZach Atkins // Check if interpolation matrix is provided 224183d6adf3SZach Atkins if (!interp_c_to_f) { 224283d6adf3SZach Atkins // LCOV_EXCL_START 224383d6adf3SZach Atkins return CeedError(ceed, CEED_ERROR_INCOMPATIBLE, "Prolongation or restriction operator creation requires coarse-to-fine interpolation matrix"); 224483d6adf3SZach Atkins // LCOV_EXCL_STOP 224583d6adf3SZach Atkins } 2246eaf62fffSJeremy L Thompson CeedElemTopology topo; 22472b730f8bSJeremy L Thompson CeedCall(CeedBasisGetTopology(basis_fine, &topo)); 2248eaf62fffSJeremy L Thompson CeedInt dim, num_comp, num_nodes_c, num_nodes_f; 22492b730f8bSJeremy L Thompson CeedCall(CeedBasisGetDimension(basis_fine, &dim)); 22502b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumComponents(basis_fine, &num_comp)); 22512b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumNodes(basis_fine, &num_nodes_f)); 22522b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetElementSize(rstr_coarse, &num_nodes_c)); 2253eaf62fffSJeremy L Thompson CeedScalar *q_ref, *q_weight, *grad; 22542b730f8bSJeremy L Thompson CeedCall(CeedCalloc(num_nodes_f * dim, &q_ref)); 22552b730f8bSJeremy L Thompson CeedCall(CeedCalloc(num_nodes_f, &q_weight)); 22562b730f8bSJeremy L Thompson CeedCall(CeedCalloc(num_nodes_f * num_nodes_c * dim, &grad)); 22572b730f8bSJeremy L Thompson CeedCall(CeedBasisCreateH1(ceed, topo, num_comp, num_nodes_c, num_nodes_f, interp_c_to_f, grad, q_ref, q_weight, &basis_c_to_f)); 22582b730f8bSJeremy L Thompson CeedCall(CeedFree(&q_ref)); 22592b730f8bSJeremy L Thompson CeedCall(CeedFree(&q_weight)); 22602b730f8bSJeremy L Thompson CeedCall(CeedFree(&grad)); 226183d6adf3SZach Atkins } 2262eaf62fffSJeremy L Thompson 2263eaf62fffSJeremy L Thompson // Core code 22642b730f8bSJeremy L Thompson CeedCall(CeedSingleOperatorMultigridLevel(op_fine, p_mult_fine, rstr_coarse, basis_coarse, basis_c_to_f, op_coarse, op_prolong, op_restrict)); 2265eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2266eaf62fffSJeremy L Thompson } 2267eaf62fffSJeremy L Thompson 2268eaf62fffSJeremy L Thompson /** 2269ea61e9acSJeremy L Thompson @brief Build a FDM based approximate inverse for each element for a CeedOperator 2270eaf62fffSJeremy L Thompson 2271ea61e9acSJeremy L Thompson This returns a CeedOperator and CeedVector to apply a Fast Diagonalization Method based approximate inverse. 2272859c15bbSJames Wright This function obtains the simultaneous diagonalization for the 1D mass and Laplacian operators, \f$M = V^T V, K = V^T S V\f$. 2273859c15bbSJames Wright The assembled QFunction is used to modify the eigenvalues from simultaneous diagonalization and obtain an approximate inverse of the form \f$V^T 2274859c15bbSJames Wright \hat S V\f$. The CeedOperator must be linear and non-composite. The associated CeedQFunction must therefore also be linear. 2275eaf62fffSJeremy L Thompson 2276ea61e9acSJeremy L Thompson Note: Calling this function asserts that setup is complete and sets the CeedOperator as immutable. 2277f04ea552SJeremy L Thompson 2278ea61e9acSJeremy L Thompson @param[in] op CeedOperator to create element inverses 2279ea61e9acSJeremy L Thompson @param[out] fdm_inv CeedOperator to apply the action of a FDM based inverse for each element 2280ea61e9acSJeremy L Thompson @param[in] request Address of CeedRequest for non-blocking completion, else @ref CEED_REQUEST_IMMEDIATE 2281eaf62fffSJeremy L Thompson 2282eaf62fffSJeremy L Thompson @return An error code: 0 - success, otherwise - failure 2283eaf62fffSJeremy L Thompson 2284480fae85SJeremy L Thompson @ref User 2285eaf62fffSJeremy L Thompson **/ 22862b730f8bSJeremy L Thompson int CeedOperatorCreateFDMElementInverse(CeedOperator op, CeedOperator *fdm_inv, CeedRequest *request) { 22872b730f8bSJeremy L Thompson CeedCall(CeedOperatorCheckReady(op)); 2288eaf62fffSJeremy L Thompson 2289eaf62fffSJeremy L Thompson if (op->CreateFDMElementInverse) { 2290d04bbc78SJeremy L Thompson // Backend version 22912b730f8bSJeremy L Thompson CeedCall(op->CreateFDMElementInverse(op, fdm_inv, request)); 2292eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2293eaf62fffSJeremy L Thompson } else { 2294d04bbc78SJeremy L Thompson // Operator fallback 2295d04bbc78SJeremy L Thompson CeedOperator op_fallback; 2296d04bbc78SJeremy L Thompson 22972b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFallback(op, &op_fallback)); 2298d04bbc78SJeremy L Thompson if (op_fallback) { 22992b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreateFDMElementInverse(op_fallback, fdm_inv, request)); 2300eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2301eaf62fffSJeremy L Thompson } 2302eaf62fffSJeremy L Thompson } 2303eaf62fffSJeremy L Thompson 2304d04bbc78SJeremy L Thompson // Default interface implementation 2305eaf62fffSJeremy L Thompson Ceed ceed, ceed_parent; 23062b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetCeed(op, &ceed)); 23072b730f8bSJeremy L Thompson CeedCall(CeedGetOperatorFallbackParentCeed(ceed, &ceed_parent)); 2308eaf62fffSJeremy L Thompson ceed_parent = ceed_parent ? ceed_parent : ceed; 2309eaf62fffSJeremy L Thompson CeedQFunction qf; 23102b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetQFunction(op, &qf)); 2311eaf62fffSJeremy L Thompson 2312eaf62fffSJeremy L Thompson // Determine active input basis 2313eaf62fffSJeremy L Thompson bool interp = false, grad = false; 2314eaf62fffSJeremy L Thompson CeedBasis basis = NULL; 2315eaf62fffSJeremy L Thompson CeedElemRestriction rstr = NULL; 2316eaf62fffSJeremy L Thompson CeedOperatorField *op_fields; 2317eaf62fffSJeremy L Thompson CeedQFunctionField *qf_fields; 2318eaf62fffSJeremy L Thompson CeedInt num_input_fields; 23192b730f8bSJeremy L Thompson CeedCall(CeedOperatorGetFields(op, &num_input_fields, &op_fields, NULL, NULL)); 23202b730f8bSJeremy L Thompson CeedCall(CeedQFunctionGetFields(qf, NULL, &qf_fields, NULL, NULL)); 2321eaf62fffSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2322eaf62fffSJeremy L Thompson CeedVector vec; 23232b730f8bSJeremy L Thompson CeedCall(CeedOperatorFieldGetVector(op_fields[i], &vec)); 2324eaf62fffSJeremy L Thompson if (vec == CEED_VECTOR_ACTIVE) { 2325eaf62fffSJeremy L Thompson CeedEvalMode eval_mode; 23262b730f8bSJeremy L Thompson CeedCall(CeedQFunctionFieldGetEvalMode(qf_fields[i], &eval_mode)); 2327eaf62fffSJeremy L Thompson interp = interp || eval_mode == CEED_EVAL_INTERP; 2328eaf62fffSJeremy L Thompson grad = grad || eval_mode == CEED_EVAL_GRAD; 23292b730f8bSJeremy L Thompson CeedCall(CeedOperatorFieldGetBasis(op_fields[i], &basis)); 23302b730f8bSJeremy L Thompson CeedCall(CeedOperatorFieldGetElemRestriction(op_fields[i], &rstr)); 2331eaf62fffSJeremy L Thompson } 2332eaf62fffSJeremy L Thompson } 23332b730f8bSJeremy L Thompson if (!basis) { 2334eaf62fffSJeremy L Thompson // LCOV_EXCL_START 2335eaf62fffSJeremy L Thompson return CeedError(ceed, CEED_ERROR_BACKEND, "No active field set"); 2336eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 23372b730f8bSJeremy L Thompson } 2338e79b91d9SJeremy L Thompson CeedSize l_size = 1; 2339*352a5e7cSSebastian Grimberg CeedInt P_1d, Q_1d, num_nodes, num_qpts, dim, num_comp = 1, num_elem = 1; 23402b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumNodes1D(basis, &P_1d)); 2341*352a5e7cSSebastian Grimberg CeedCall(CeedBasisGetNumNodes(basis, &num_nodes)); 23422b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 23432b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumQuadraturePoints(basis, &num_qpts)); 23442b730f8bSJeremy L Thompson CeedCall(CeedBasisGetDimension(basis, &dim)); 23452b730f8bSJeremy L Thompson CeedCall(CeedBasisGetNumComponents(basis, &num_comp)); 23462b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); 23472b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &l_size)); 2348eaf62fffSJeremy L Thompson 2349eaf62fffSJeremy L Thompson // Build and diagonalize 1D Mass and Laplacian 2350eaf62fffSJeremy L Thompson bool tensor_basis; 23512b730f8bSJeremy L Thompson CeedCall(CeedBasisIsTensor(basis, &tensor_basis)); 23522b730f8bSJeremy L Thompson if (!tensor_basis) { 2353eaf62fffSJeremy L Thompson // LCOV_EXCL_START 23542b730f8bSJeremy L Thompson return CeedError(ceed, CEED_ERROR_BACKEND, "FDMElementInverse only supported for tensor bases"); 2355eaf62fffSJeremy L Thompson // LCOV_EXCL_STOP 23562b730f8bSJeremy L Thompson } 2357eaf62fffSJeremy L Thompson CeedScalar *mass, *laplace, *x, *fdm_interp, *lambda; 23582b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d * P_1d, &mass)); 23592b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d * P_1d, &laplace)); 23602b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d * P_1d, &x)); 23612b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d * P_1d, &fdm_interp)); 23622b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d, &lambda)); 2363eaf62fffSJeremy L Thompson // -- Build matrices 2364eaf62fffSJeremy L Thompson const CeedScalar *interp_1d, *grad_1d, *q_weight_1d; 23652b730f8bSJeremy L Thompson CeedCall(CeedBasisGetInterp1D(basis, &interp_1d)); 23662b730f8bSJeremy L Thompson CeedCall(CeedBasisGetGrad1D(basis, &grad_1d)); 23672b730f8bSJeremy L Thompson CeedCall(CeedBasisGetQWeights(basis, &q_weight_1d)); 23682b730f8bSJeremy L Thompson CeedCall(CeedBuildMassLaplace(interp_1d, grad_1d, q_weight_1d, P_1d, Q_1d, dim, mass, laplace)); 2369eaf62fffSJeremy L Thompson 2370eaf62fffSJeremy L Thompson // -- Diagonalize 23712b730f8bSJeremy L Thompson CeedCall(CeedSimultaneousDiagonalization(ceed, laplace, mass, x, lambda, P_1d)); 23722b730f8bSJeremy L Thompson CeedCall(CeedFree(&mass)); 23732b730f8bSJeremy L Thompson CeedCall(CeedFree(&laplace)); 23742b730f8bSJeremy L Thompson for (CeedInt i = 0; i < P_1d; i++) { 23752b730f8bSJeremy L Thompson for (CeedInt j = 0; j < P_1d; j++) fdm_interp[i + j * P_1d] = x[j + i * P_1d]; 23762b730f8bSJeremy L Thompson } 23772b730f8bSJeremy L Thompson CeedCall(CeedFree(&x)); 2378eaf62fffSJeremy L Thompson 2379eaf62fffSJeremy L Thompson // Assemble QFunction 2380eaf62fffSJeremy L Thompson CeedVector assembled; 2381eaf62fffSJeremy L Thompson CeedElemRestriction rstr_qf; 23822b730f8bSJeremy L Thompson CeedCall(CeedOperatorLinearAssembleQFunctionBuildOrUpdate(op, &assembled, &rstr_qf, request)); 2383eaf62fffSJeremy L Thompson CeedInt layout[3]; 23842b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionGetELayout(rstr_qf, &layout)); 23852b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&rstr_qf)); 2386eaf62fffSJeremy L Thompson CeedScalar max_norm = 0; 23872b730f8bSJeremy L Thompson CeedCall(CeedVectorNorm(assembled, CEED_NORM_MAX, &max_norm)); 2388eaf62fffSJeremy L Thompson 2389eaf62fffSJeremy L Thompson // Calculate element averages 2390eaf62fffSJeremy L Thompson CeedInt num_modes = (interp ? 1 : 0) + (grad ? dim : 0); 2391eaf62fffSJeremy L Thompson CeedScalar *elem_avg; 2392eaf62fffSJeremy L Thompson const CeedScalar *assembled_array, *q_weight_array; 2393eaf62fffSJeremy L Thompson CeedVector q_weight; 23942b730f8bSJeremy L Thompson CeedCall(CeedVectorCreate(ceed_parent, num_qpts, &q_weight)); 23952b730f8bSJeremy L Thompson CeedCall(CeedBasisApply(basis, 1, CEED_NOTRANSPOSE, CEED_EVAL_WEIGHT, CEED_VECTOR_NONE, q_weight)); 23962b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(assembled, CEED_MEM_HOST, &assembled_array)); 23972b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayRead(q_weight, CEED_MEM_HOST, &q_weight_array)); 23982b730f8bSJeremy L Thompson CeedCall(CeedCalloc(num_elem, &elem_avg)); 2399eaf62fffSJeremy L Thompson const CeedScalar qf_value_bound = max_norm * 100 * CEED_EPSILON; 2400eaf62fffSJeremy L Thompson for (CeedInt e = 0; e < num_elem; e++) { 2401eaf62fffSJeremy L Thompson CeedInt count = 0; 24022b730f8bSJeremy L Thompson for (CeedInt q = 0; q < num_qpts; q++) { 24032b730f8bSJeremy L Thompson for (CeedInt i = 0; i < num_comp * num_comp * num_modes * num_modes; i++) { 24042b730f8bSJeremy L Thompson if (fabs(assembled_array[q * layout[0] + i * layout[1] + e * layout[2]]) > qf_value_bound) { 24052b730f8bSJeremy L Thompson elem_avg[e] += assembled_array[q * layout[0] + i * layout[1] + e * layout[2]] / q_weight_array[q]; 2406eaf62fffSJeremy L Thompson count++; 2407eaf62fffSJeremy L Thompson } 24082b730f8bSJeremy L Thompson } 24092b730f8bSJeremy L Thompson } 2410eaf62fffSJeremy L Thompson if (count) { 2411eaf62fffSJeremy L Thompson elem_avg[e] /= count; 2412eaf62fffSJeremy L Thompson } else { 2413eaf62fffSJeremy L Thompson elem_avg[e] = 1.0; 2414eaf62fffSJeremy L Thompson } 2415eaf62fffSJeremy L Thompson } 24162b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(assembled, &assembled_array)); 24172b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&assembled)); 24182b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArrayRead(q_weight, &q_weight_array)); 24192b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&q_weight)); 2420eaf62fffSJeremy L Thompson 2421eaf62fffSJeremy L Thompson // Build FDM diagonal 2422eaf62fffSJeremy L Thompson CeedVector q_data; 2423eaf62fffSJeremy L Thompson CeedScalar *q_data_array, *fdm_diagonal; 2424*352a5e7cSSebastian Grimberg CeedCall(CeedCalloc(num_comp * num_nodes, &fdm_diagonal)); 2425*352a5e7cSSebastian Grimberg const CeedScalar fdm_diagonal_bound = num_nodes * CEED_EPSILON; 24262b730f8bSJeremy L Thompson for (CeedInt c = 0; c < num_comp; c++) { 2427*352a5e7cSSebastian Grimberg for (CeedInt n = 0; n < num_nodes; n++) { 2428*352a5e7cSSebastian Grimberg if (interp) fdm_diagonal[c * num_nodes + n] = 1.0; 24292b730f8bSJeremy L Thompson if (grad) { 2430eaf62fffSJeremy L Thompson for (CeedInt d = 0; d < dim; d++) { 2431eaf62fffSJeremy L Thompson CeedInt i = (n / CeedIntPow(P_1d, d)) % P_1d; 2432*352a5e7cSSebastian Grimberg fdm_diagonal[c * num_nodes + n] += lambda[i]; 2433eaf62fffSJeremy L Thompson } 2434eaf62fffSJeremy L Thompson } 2435*352a5e7cSSebastian Grimberg if (fabs(fdm_diagonal[c * num_nodes + n]) < fdm_diagonal_bound) fdm_diagonal[c * num_nodes + n] = fdm_diagonal_bound; 24362b730f8bSJeremy L Thompson } 24372b730f8bSJeremy L Thompson } 2438*352a5e7cSSebastian Grimberg CeedCall(CeedVectorCreate(ceed_parent, num_elem * num_comp * num_nodes, &q_data)); 24392b730f8bSJeremy L Thompson CeedCall(CeedVectorSetValue(q_data, 0.0)); 24402b730f8bSJeremy L Thompson CeedCall(CeedVectorGetArrayWrite(q_data, CEED_MEM_HOST, &q_data_array)); 24412b730f8bSJeremy L Thompson for (CeedInt e = 0; e < num_elem; e++) { 24422b730f8bSJeremy L Thompson for (CeedInt c = 0; c < num_comp; c++) { 2443*352a5e7cSSebastian Grimberg for (CeedInt n = 0; n < num_nodes; n++) q_data_array[(e * num_comp + c) * num_nodes + n] = 1. / (elem_avg[e] * fdm_diagonal[c * num_nodes + n]); 24442b730f8bSJeremy L Thompson } 24452b730f8bSJeremy L Thompson } 24462b730f8bSJeremy L Thompson CeedCall(CeedFree(&elem_avg)); 24472b730f8bSJeremy L Thompson CeedCall(CeedFree(&fdm_diagonal)); 24482b730f8bSJeremy L Thompson CeedCall(CeedVectorRestoreArray(q_data, &q_data_array)); 2449eaf62fffSJeremy L Thompson 2450eaf62fffSJeremy L Thompson // Setup FDM operator 2451eaf62fffSJeremy L Thompson // -- Basis 2452eaf62fffSJeremy L Thompson CeedBasis fdm_basis; 2453eaf62fffSJeremy L Thompson CeedScalar *grad_dummy, *q_ref_dummy, *q_weight_dummy; 24542b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d * P_1d, &grad_dummy)); 24552b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d, &q_ref_dummy)); 24562b730f8bSJeremy L Thompson CeedCall(CeedCalloc(P_1d, &q_weight_dummy)); 24572b730f8bSJeremy L Thompson CeedCall(CeedBasisCreateTensorH1(ceed_parent, dim, num_comp, P_1d, P_1d, fdm_interp, grad_dummy, q_ref_dummy, q_weight_dummy, &fdm_basis)); 24582b730f8bSJeremy L Thompson CeedCall(CeedFree(&fdm_interp)); 24592b730f8bSJeremy L Thompson CeedCall(CeedFree(&grad_dummy)); 24602b730f8bSJeremy L Thompson CeedCall(CeedFree(&q_ref_dummy)); 24612b730f8bSJeremy L Thompson CeedCall(CeedFree(&q_weight_dummy)); 24622b730f8bSJeremy L Thompson CeedCall(CeedFree(&lambda)); 2463eaf62fffSJeremy L Thompson 2464eaf62fffSJeremy L Thompson // -- Restriction 2465eaf62fffSJeremy L Thompson CeedElemRestriction rstr_qd_i; 2466*352a5e7cSSebastian Grimberg CeedInt strides[3] = {1, num_nodes, num_nodes * num_comp}; 2467*352a5e7cSSebastian Grimberg CeedCall(CeedElemRestrictionCreateStrided(ceed_parent, num_elem, num_nodes, num_comp, num_elem * num_comp * num_nodes, strides, &rstr_qd_i)); 2468eaf62fffSJeremy L Thompson // -- QFunction 2469eaf62fffSJeremy L Thompson CeedQFunction qf_fdm; 24702b730f8bSJeremy L Thompson CeedCall(CeedQFunctionCreateInteriorByName(ceed_parent, "Scale", &qf_fdm)); 24712b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(qf_fdm, "input", num_comp, CEED_EVAL_INTERP)); 24722b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddInput(qf_fdm, "scale", num_comp, CEED_EVAL_NONE)); 24732b730f8bSJeremy L Thompson CeedCall(CeedQFunctionAddOutput(qf_fdm, "output", num_comp, CEED_EVAL_INTERP)); 24742b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetUserFlopsEstimate(qf_fdm, num_comp)); 2475eaf62fffSJeremy L Thompson // -- QFunction context 2476eaf62fffSJeremy L Thompson CeedInt *num_comp_data; 24772b730f8bSJeremy L Thompson CeedCall(CeedCalloc(1, &num_comp_data)); 2478eaf62fffSJeremy L Thompson num_comp_data[0] = num_comp; 2479eaf62fffSJeremy L Thompson CeedQFunctionContext ctx_fdm; 24802b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextCreate(ceed, &ctx_fdm)); 24812b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextSetData(ctx_fdm, CEED_MEM_HOST, CEED_OWN_POINTER, sizeof(*num_comp_data), num_comp_data)); 24822b730f8bSJeremy L Thompson CeedCall(CeedQFunctionSetContext(qf_fdm, ctx_fdm)); 24832b730f8bSJeremy L Thompson CeedCall(CeedQFunctionContextDestroy(&ctx_fdm)); 2484eaf62fffSJeremy L Thompson // -- Operator 24852b730f8bSJeremy L Thompson CeedCall(CeedOperatorCreate(ceed_parent, qf_fdm, NULL, NULL, fdm_inv)); 24862b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*fdm_inv, "input", rstr, fdm_basis, CEED_VECTOR_ACTIVE)); 24872b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*fdm_inv, "scale", rstr_qd_i, CEED_BASIS_COLLOCATED, q_data)); 24882b730f8bSJeremy L Thompson CeedCall(CeedOperatorSetField(*fdm_inv, "output", rstr, fdm_basis, CEED_VECTOR_ACTIVE)); 2489eaf62fffSJeremy L Thompson 2490eaf62fffSJeremy L Thompson // Cleanup 24912b730f8bSJeremy L Thompson CeedCall(CeedVectorDestroy(&q_data)); 24922b730f8bSJeremy L Thompson CeedCall(CeedBasisDestroy(&fdm_basis)); 24932b730f8bSJeremy L Thompson CeedCall(CeedElemRestrictionDestroy(&rstr_qd_i)); 24942b730f8bSJeremy L Thompson CeedCall(CeedQFunctionDestroy(&qf_fdm)); 2495eaf62fffSJeremy L Thompson 2496eaf62fffSJeremy L Thompson return CEED_ERROR_SUCCESS; 2497eaf62fffSJeremy L Thompson } 2498eaf62fffSJeremy L Thompson 2499eaf62fffSJeremy L Thompson /// @} 2500