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. 3cb32e2e7SValeria Barra // 43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 5cb32e2e7SValeria Barra // 63d8e8822SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 7cb32e2e7SValeria Barra 8cb32e2e7SValeria Barra // libCEED + PETSc Example: CEED BPs 9cb32e2e7SValeria Barra // 10ea61e9acSJeremy L Thompson // This example demonstrates a simple usage of libCEED with PETSc to solve the CEED BP benchmark problems, see http://ceed.exascaleproject.org/bps. 11cb32e2e7SValeria Barra // 12ea61e9acSJeremy L Thompson // The code is intentionally "raw", using only low-level communication primitives. 13cb32e2e7SValeria Barra // 14cb32e2e7SValeria Barra // Build with: 15cb32e2e7SValeria Barra // 16cb32e2e7SValeria Barra // make bpsraw [PETSC_DIR=</path/to/petsc>] [CEED_DIR=</path/to/libceed>] 17cb32e2e7SValeria Barra // 18cb32e2e7SValeria Barra // Sample runs: 19cb32e2e7SValeria Barra // 2032d2ee49SValeria Barra // ./bpsraw -problem bp1 2128688798Sjeremylt // ./bpsraw -problem bp2 2228688798Sjeremylt // ./bpsraw -problem bp3 2328688798Sjeremylt // ./bpsraw -problem bp4 2428688798Sjeremylt // ./bpsraw -problem bp5 -ceed /cpu/self 2528688798Sjeremylt // ./bpsraw -problem bp6 -ceed /gpu/cuda 26cb32e2e7SValeria Barra // 279b072555Sjeremylt //TESTARGS -ceed {ceed_resource} -test -problem bp2 -degree 5 -q_extra 1 -ksp_max_it_clip 15,15 28cb32e2e7SValeria Barra 29cb32e2e7SValeria Barra /// @file 30cb32e2e7SValeria Barra /// CEED BPs example using PETSc 31cb32e2e7SValeria Barra /// See bps.c for an implementation using DMPlex unstructured grids. 32cb32e2e7SValeria Barra const char help[] = "Solve CEED BPs using PETSc\n"; 33cb32e2e7SValeria Barra 343d576824SJeremy L Thompson #include <ceed.h> 3549aac155SJeremy L Thompson #include <petscdm.h> 363d576824SJeremy L Thompson #include <petscksp.h> 37cb32e2e7SValeria Barra #include <stdbool.h> 38cb32e2e7SValeria Barra #include <string.h> 392b730f8bSJeremy L Thompson 40cb32e2e7SValeria Barra #include "qfunctions/bps/bp1.h" 41cb32e2e7SValeria Barra #include "qfunctions/bps/bp2.h" 42cb32e2e7SValeria Barra #include "qfunctions/bps/bp3.h" 43cb32e2e7SValeria Barra #include "qfunctions/bps/bp4.h" 443d576824SJeremy L Thompson #include "qfunctions/bps/common.h" 45cb32e2e7SValeria Barra 462b730f8bSJeremy L Thompson static CeedMemType MemTypeP2C(PetscMemType mem_type) { return PetscMemTypeDevice(mem_type) ? CEED_MEM_DEVICE : CEED_MEM_HOST; } 47b68a8d79SJed Brown 48cb32e2e7SValeria Barra static void Split3(PetscInt size, PetscInt m[3], bool reverse) { 499b072555Sjeremylt for (PetscInt d = 0, size_left = size; d < 3; d++) { 509b072555Sjeremylt PetscInt try = (PetscInt)PetscCeilReal(PetscPowReal(size_left, 1. / (3 - d))); 519b072555Sjeremylt while (try * (size_left / try) != size_left) try++; 52cb32e2e7SValeria Barra m[reverse ? 2 - d : d] = try; 539b072555Sjeremylt size_left /= try; 54cb32e2e7SValeria Barra } 55cb32e2e7SValeria Barra } 56cb32e2e7SValeria Barra 572b730f8bSJeremy L Thompson static PetscInt Max3(const PetscInt a[3]) { return PetscMax(a[0], PetscMax(a[1], a[2])); } 582b730f8bSJeremy L Thompson static PetscInt Min3(const PetscInt a[3]) { return PetscMin(a[0], PetscMin(a[1], a[2])); } 592b730f8bSJeremy L Thompson static void GlobalNodes(const PetscInt p[3], const PetscInt i_rank[3], PetscInt degree, const PetscInt mesh_elem[3], PetscInt m_nodes[3]) { 602b730f8bSJeremy L Thompson for (int d = 0; d < 3; d++) m_nodes[d] = degree * mesh_elem[d] + (i_rank[d] == p[d] - 1); 61cb32e2e7SValeria Barra } 622b730f8bSJeremy L Thompson static PetscInt GlobalStart(const PetscInt p[3], const PetscInt i_rank[3], PetscInt degree, const PetscInt mesh_elem[3]) { 63cb32e2e7SValeria Barra PetscInt start = 0; 64cb32e2e7SValeria Barra // Dumb brute-force is easier to read 65cb32e2e7SValeria Barra for (PetscInt i = 0; i < p[0]; i++) { 66cb32e2e7SValeria Barra for (PetscInt j = 0; j < p[1]; j++) { 67cb32e2e7SValeria Barra for (PetscInt k = 0; k < p[2]; k++) { 689b072555Sjeremylt PetscInt m_nodes[3], ijk_rank[] = {i, j, k}; 699b072555Sjeremylt if (i == i_rank[0] && j == i_rank[1] && k == i_rank[2]) return start; 709b072555Sjeremylt GlobalNodes(p, ijk_rank, degree, mesh_elem, m_nodes); 719b072555Sjeremylt start += m_nodes[0] * m_nodes[1] * m_nodes[2]; 72cb32e2e7SValeria Barra } 73cb32e2e7SValeria Barra } 74cb32e2e7SValeria Barra } 75cb32e2e7SValeria Barra return -1; 76cb32e2e7SValeria Barra } 772b730f8bSJeremy L Thompson static PetscErrorCode CreateRestriction(Ceed ceed, const CeedInt mesh_elem[3], CeedInt P, CeedInt num_comp, CeedElemRestriction *elem_restr) { 789b072555Sjeremylt const PetscInt num_elem = mesh_elem[0] * mesh_elem[1] * mesh_elem[2]; 799b072555Sjeremylt PetscInt m_nodes[3], *idx, *idx_p; 80cb32e2e7SValeria Barra 815dfaedb8SJed Brown PetscFunctionBeginUser; 82cb32e2e7SValeria Barra // Get indicies 839b072555Sjeremylt for (int d = 0; d < 3; d++) m_nodes[d] = mesh_elem[d] * (P - 1) + 1; 849b072555Sjeremylt idx_p = idx = malloc(num_elem * P * P * P * sizeof idx[0]); 852b730f8bSJeremy L Thompson for (CeedInt i = 0; i < mesh_elem[0]; i++) { 862b730f8bSJeremy L Thompson for (CeedInt j = 0; j < mesh_elem[1]; j++) { 872b730f8bSJeremy L Thompson for (CeedInt k = 0; k < mesh_elem[2]; k++, idx_p += P * P * P) { 882b730f8bSJeremy L Thompson for (CeedInt ii = 0; ii < P; ii++) { 892b730f8bSJeremy L Thompson for (CeedInt jj = 0; jj < P; jj++) { 90cb32e2e7SValeria Barra for (CeedInt kk = 0; kk < P; kk++) { 91cb32e2e7SValeria Barra if (0) { // This is the C-style (i,j,k) ordering that I prefer 922b730f8bSJeremy L Thompson idx_p[(ii * P + jj) * P + kk] = num_comp * (((i * (P - 1) + ii) * m_nodes[1] + (j * (P - 1) + jj)) * m_nodes[2] + (k * (P - 1) + kk)); 93cb32e2e7SValeria Barra } else { // (k,j,i) ordering for consistency with MFEM example 942b730f8bSJeremy L Thompson idx_p[ii + P * (jj + P * kk)] = num_comp * (((i * (P - 1) + ii) * m_nodes[1] + (j * (P - 1) + jj)) * m_nodes[2] + (k * (P - 1) + kk)); 952b730f8bSJeremy L Thompson } 962b730f8bSJeremy L Thompson } 972b730f8bSJeremy L Thompson } 982b730f8bSJeremy L Thompson } 992b730f8bSJeremy L Thompson } 100cb32e2e7SValeria Barra } 101cb32e2e7SValeria Barra } 102cb32e2e7SValeria Barra 103cb32e2e7SValeria Barra // Setup CEED restriction 1042b730f8bSJeremy L Thompson CeedElemRestrictionCreate(ceed, num_elem, P * P * P, num_comp, 1, m_nodes[0] * m_nodes[1] * m_nodes[2] * num_comp, CEED_MEM_HOST, CEED_OWN_POINTER, 1052b730f8bSJeremy L Thompson idx, elem_restr); 106cb32e2e7SValeria Barra 107ee4ca9cbSJames Wright PetscFunctionReturn(PETSC_SUCCESS); 108cb32e2e7SValeria Barra } 109cb32e2e7SValeria Barra 110cb32e2e7SValeria Barra // Data for PETSc 111d4d45553Srezgarshakeri typedef struct OperatorApplyContext_ *OperatorApplyContext; 112d4d45553Srezgarshakeri struct OperatorApplyContext_ { 113cb32e2e7SValeria Barra MPI_Comm comm; 1149b072555Sjeremylt VecScatter l_to_g; // Scatter for all entries 1159b072555Sjeremylt VecScatter l_to_g_0; // Skip Dirichlet values 1169b072555Sjeremylt VecScatter g_to_g_D; // global-to-global; only Dirichlet values 1179b072555Sjeremylt Vec X_loc, Y_loc; 1189b072555Sjeremylt CeedVector x_ceed, y_ceed; 119cb32e2e7SValeria Barra CeedOperator op; 1209b072555Sjeremylt CeedVector q_data; 121cb32e2e7SValeria Barra Ceed ceed; 122cb32e2e7SValeria Barra }; 123cb32e2e7SValeria Barra 124cb32e2e7SValeria Barra // BP Options 1252b730f8bSJeremy L Thompson typedef enum { CEED_BP1 = 0, CEED_BP2 = 1, CEED_BP3 = 2, CEED_BP4 = 3, CEED_BP5 = 4, CEED_BP6 = 5 } BPType; 1262b730f8bSJeremy L Thompson static const char *const bp_types[] = {"bp1", "bp2", "bp3", "bp4", "bp5", "bp6", "BPType", "CEED_BP", 0}; 127cb32e2e7SValeria Barra 128cb32e2e7SValeria Barra // BP specific data 129cb32e2e7SValeria Barra typedef struct { 1309b072555Sjeremylt CeedInt num_comp_u, q_data_size, q_extra; 1319b072555Sjeremylt CeedQFunctionUser setup_geo, setup_rhs, apply, error; 1329b072555Sjeremylt const char *setup_geo_loc, *setup_rhs_loc, *apply_loc, *error_loc; 1339b072555Sjeremylt CeedEvalMode in_mode, out_mode; 1349b072555Sjeremylt CeedQuadMode q_mode; 1359b072555Sjeremylt } BPData; 136cb32e2e7SValeria Barra 1379b072555Sjeremylt BPData bp_options[6] = { 1382b730f8bSJeremy L Thompson [CEED_BP1] = {.num_comp_u = 1, 1399b072555Sjeremylt .q_data_size = 1, 1409b072555Sjeremylt .q_extra = 1, 1419b072555Sjeremylt .setup_geo = SetupMassGeo, 1429b072555Sjeremylt .setup_rhs = SetupMassRhs, 143cb32e2e7SValeria Barra .apply = Mass, 144cb32e2e7SValeria Barra .error = Error, 1459b072555Sjeremylt .setup_geo_loc = SetupMassGeo_loc, 1469b072555Sjeremylt .setup_rhs_loc = SetupMassRhs_loc, 1479b072555Sjeremylt .apply_loc = Mass_loc, 1489b072555Sjeremylt .error_loc = Error_loc, 1499b072555Sjeremylt .in_mode = CEED_EVAL_INTERP, 1509b072555Sjeremylt .out_mode = CEED_EVAL_INTERP, 1512b730f8bSJeremy L Thompson .q_mode = CEED_GAUSS }, 1522b730f8bSJeremy L Thompson [CEED_BP2] = {.num_comp_u = 3, 1539b072555Sjeremylt .q_data_size = 1, 1549b072555Sjeremylt .q_extra = 1, 1559b072555Sjeremylt .setup_geo = SetupMassGeo, 1569b072555Sjeremylt .setup_rhs = SetupMassRhs3, 157cb32e2e7SValeria Barra .apply = Mass3, 158cb32e2e7SValeria Barra .error = Error3, 1599b072555Sjeremylt .setup_geo_loc = SetupMassGeo_loc, 1609b072555Sjeremylt .setup_rhs_loc = SetupMassRhs3_loc, 1619b072555Sjeremylt .apply_loc = Mass3_loc, 1629b072555Sjeremylt .error_loc = Error3_loc, 1639b072555Sjeremylt .in_mode = CEED_EVAL_INTERP, 1649b072555Sjeremylt .out_mode = CEED_EVAL_INTERP, 1652b730f8bSJeremy L Thompson .q_mode = CEED_GAUSS }, 1662b730f8bSJeremy L Thompson [CEED_BP3] = {.num_comp_u = 1, 1679b072555Sjeremylt .q_data_size = 7, 1689b072555Sjeremylt .q_extra = 1, 1699b072555Sjeremylt .setup_geo = SetupDiffGeo, 1709b072555Sjeremylt .setup_rhs = SetupDiffRhs, 171cb32e2e7SValeria Barra .apply = Diff, 172cb32e2e7SValeria Barra .error = Error, 1739b072555Sjeremylt .setup_geo_loc = SetupDiffGeo_loc, 1749b072555Sjeremylt .setup_rhs_loc = SetupDiffRhs_loc, 1759b072555Sjeremylt .apply_loc = Diff_loc, 1769b072555Sjeremylt .error_loc = Error_loc, 1779b072555Sjeremylt .in_mode = CEED_EVAL_GRAD, 1789b072555Sjeremylt .out_mode = CEED_EVAL_GRAD, 1792b730f8bSJeremy L Thompson .q_mode = CEED_GAUSS }, 1802b730f8bSJeremy L Thompson [CEED_BP4] = {.num_comp_u = 3, 1819b072555Sjeremylt .q_data_size = 7, 1829b072555Sjeremylt .q_extra = 1, 1839b072555Sjeremylt .setup_geo = SetupDiffGeo, 1849b072555Sjeremylt .setup_rhs = SetupDiffRhs3, 185cb32e2e7SValeria Barra .apply = Diff3, 186cb32e2e7SValeria Barra .error = Error3, 1879b072555Sjeremylt .setup_geo_loc = SetupDiffGeo_loc, 1889b072555Sjeremylt .setup_rhs_loc = SetupDiffRhs3_loc, 1899b072555Sjeremylt .apply_loc = Diff3_loc, 1909b072555Sjeremylt .error_loc = Error3_loc, 1919b072555Sjeremylt .in_mode = CEED_EVAL_GRAD, 1929b072555Sjeremylt .out_mode = CEED_EVAL_GRAD, 1932b730f8bSJeremy L Thompson .q_mode = CEED_GAUSS }, 1942b730f8bSJeremy L Thompson [CEED_BP5] = {.num_comp_u = 1, 1959b072555Sjeremylt .q_data_size = 7, 1969b072555Sjeremylt .q_extra = 0, 1979b072555Sjeremylt .setup_geo = SetupDiffGeo, 1989b072555Sjeremylt .setup_rhs = SetupDiffRhs, 199cb32e2e7SValeria Barra .apply = Diff, 200cb32e2e7SValeria Barra .error = Error, 2019b072555Sjeremylt .setup_geo_loc = SetupDiffGeo_loc, 2029b072555Sjeremylt .setup_rhs_loc = SetupDiffRhs_loc, 2039b072555Sjeremylt .apply_loc = Diff_loc, 2049b072555Sjeremylt .error_loc = Error_loc, 2059b072555Sjeremylt .in_mode = CEED_EVAL_GRAD, 2069b072555Sjeremylt .out_mode = CEED_EVAL_GRAD, 2072b730f8bSJeremy L Thompson .q_mode = CEED_GAUSS_LOBATTO}, 2082b730f8bSJeremy L Thompson [CEED_BP6] = {.num_comp_u = 3, 2099b072555Sjeremylt .q_data_size = 7, 2109b072555Sjeremylt .q_extra = 0, 2119b072555Sjeremylt .setup_geo = SetupDiffGeo, 2129b072555Sjeremylt .setup_rhs = SetupDiffRhs3, 213cb32e2e7SValeria Barra .apply = Diff3, 214cb32e2e7SValeria Barra .error = Error3, 2159b072555Sjeremylt .setup_geo_loc = SetupDiffGeo_loc, 2169b072555Sjeremylt .setup_rhs_loc = SetupDiffRhs3_loc, 2179b072555Sjeremylt .apply_loc = Diff3_loc, 2189b072555Sjeremylt .error_loc = Error3_loc, 2199b072555Sjeremylt .in_mode = CEED_EVAL_GRAD, 2209b072555Sjeremylt .out_mode = CEED_EVAL_GRAD, 2212b730f8bSJeremy L Thompson .q_mode = CEED_GAUSS_LOBATTO} 222cb32e2e7SValeria Barra }; 223cb32e2e7SValeria Barra 224cb32e2e7SValeria Barra // This function uses libCEED to compute the action of the mass matrix 225cb32e2e7SValeria Barra static PetscErrorCode MatMult_Mass(Mat A, Vec X, Vec Y) { 226d4d45553Srezgarshakeri OperatorApplyContext op_apply_ctx; 227cb32e2e7SValeria Barra PetscScalar *x, *y; 2289b072555Sjeremylt PetscMemType x_mem_type, y_mem_type; 229cb32e2e7SValeria Barra 230cb32e2e7SValeria Barra PetscFunctionBeginUser; 2319396343dSjeremylt 2322b730f8bSJeremy L Thompson PetscCall(MatShellGetContext(A, &op_apply_ctx)); 2339396343dSjeremylt 2349396343dSjeremylt // Global-to-local 2352b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(op_apply_ctx->l_to_g, X, op_apply_ctx->X_loc, INSERT_VALUES, SCATTER_REVERSE)); 2362b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(op_apply_ctx->l_to_g, X, op_apply_ctx->X_loc, INSERT_VALUES, SCATTER_REVERSE)); 237cb32e2e7SValeria Barra 2389396343dSjeremylt // Setup libCEED vectors 2392b730f8bSJeremy L Thompson PetscCall(VecGetArrayReadAndMemType(op_apply_ctx->X_loc, (const PetscScalar **)&x, &x_mem_type)); 2402b730f8bSJeremy L Thompson PetscCall(VecGetArrayAndMemType(op_apply_ctx->Y_loc, &y, &y_mem_type)); 2412b730f8bSJeremy L Thompson CeedVectorSetArray(op_apply_ctx->x_ceed, MemTypeP2C(x_mem_type), CEED_USE_POINTER, x); 2422b730f8bSJeremy L Thompson CeedVectorSetArray(op_apply_ctx->y_ceed, MemTypeP2C(y_mem_type), CEED_USE_POINTER, y); 243cb32e2e7SValeria Barra 2449396343dSjeremylt // Apply libCEED operator 2452b730f8bSJeremy L Thompson CeedOperatorApply(op_apply_ctx->op, op_apply_ctx->x_ceed, op_apply_ctx->y_ceed, CEED_REQUEST_IMMEDIATE); 246cb32e2e7SValeria Barra 2479396343dSjeremylt // Restore PETSc vectors 248d4d45553Srezgarshakeri CeedVectorTakeArray(op_apply_ctx->x_ceed, MemTypeP2C(x_mem_type), NULL); 249d4d45553Srezgarshakeri CeedVectorTakeArray(op_apply_ctx->y_ceed, MemTypeP2C(y_mem_type), NULL); 2502b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayReadAndMemType(op_apply_ctx->X_loc, (const PetscScalar **)&x)); 2512b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayAndMemType(op_apply_ctx->Y_loc, &y)); 252cb32e2e7SValeria Barra 2539396343dSjeremylt // Local-to-global 254cb32e2e7SValeria Barra if (Y) { 2552b730f8bSJeremy L Thompson PetscCall(VecZeroEntries(Y)); 2562b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(op_apply_ctx->l_to_g, op_apply_ctx->Y_loc, Y, ADD_VALUES, SCATTER_FORWARD)); 2572b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(op_apply_ctx->l_to_g, op_apply_ctx->Y_loc, Y, ADD_VALUES, SCATTER_FORWARD)); 258cb32e2e7SValeria Barra } 259ee4ca9cbSJames Wright PetscFunctionReturn(PETSC_SUCCESS); 260cb32e2e7SValeria Barra } 261cb32e2e7SValeria Barra 262ea61e9acSJeremy L Thompson // This function uses libCEED to compute the action of the Laplacian with Dirichlet boundary conditions 263cb32e2e7SValeria Barra static PetscErrorCode MatMult_Diff(Mat A, Vec X, Vec Y) { 264d4d45553Srezgarshakeri OperatorApplyContext op_apply_ctx; 265cb32e2e7SValeria Barra PetscScalar *x, *y; 2669b072555Sjeremylt PetscMemType x_mem_type, y_mem_type; 267cb32e2e7SValeria Barra 268cb32e2e7SValeria Barra PetscFunctionBeginUser; 2699396343dSjeremylt 2702b730f8bSJeremy L Thompson PetscCall(MatShellGetContext(A, &op_apply_ctx)); 271cb32e2e7SValeria Barra 272cb32e2e7SValeria Barra // Global-to-local 2732b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(op_apply_ctx->l_to_g_0, X, op_apply_ctx->X_loc, INSERT_VALUES, SCATTER_REVERSE)); 2742b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(op_apply_ctx->l_to_g_0, X, op_apply_ctx->X_loc, INSERT_VALUES, SCATTER_REVERSE)); 275cb32e2e7SValeria Barra 2769396343dSjeremylt // Setup libCEED vectors 2772b730f8bSJeremy L Thompson PetscCall(VecGetArrayReadAndMemType(op_apply_ctx->X_loc, (const PetscScalar **)&x, &x_mem_type)); 2782b730f8bSJeremy L Thompson PetscCall(VecGetArrayAndMemType(op_apply_ctx->Y_loc, &y, &y_mem_type)); 2792b730f8bSJeremy L Thompson CeedVectorSetArray(op_apply_ctx->x_ceed, MemTypeP2C(x_mem_type), CEED_USE_POINTER, x); 2802b730f8bSJeremy L Thompson CeedVectorSetArray(op_apply_ctx->y_ceed, MemTypeP2C(y_mem_type), CEED_USE_POINTER, y); 281cb32e2e7SValeria Barra 2829396343dSjeremylt // Apply libCEED operator 2832b730f8bSJeremy L Thompson CeedOperatorApply(op_apply_ctx->op, op_apply_ctx->x_ceed, op_apply_ctx->y_ceed, CEED_REQUEST_IMMEDIATE); 284cb32e2e7SValeria Barra 285cb32e2e7SValeria Barra // Restore PETSc vectors 286d4d45553Srezgarshakeri CeedVectorTakeArray(op_apply_ctx->x_ceed, MemTypeP2C(x_mem_type), NULL); 287d4d45553Srezgarshakeri CeedVectorTakeArray(op_apply_ctx->y_ceed, MemTypeP2C(y_mem_type), NULL); 2882b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayReadAndMemType(op_apply_ctx->X_loc, (const PetscScalar **)&x)); 2892b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayAndMemType(op_apply_ctx->Y_loc, &y)); 290cb32e2e7SValeria Barra 291cb32e2e7SValeria Barra // Local-to-global 2922b730f8bSJeremy L Thompson PetscCall(VecZeroEntries(Y)); 2932b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(op_apply_ctx->g_to_g_D, X, Y, INSERT_VALUES, SCATTER_FORWARD)); 2942b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(op_apply_ctx->g_to_g_D, X, Y, INSERT_VALUES, SCATTER_FORWARD)); 2952b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(op_apply_ctx->l_to_g_0, op_apply_ctx->Y_loc, Y, ADD_VALUES, SCATTER_FORWARD)); 2962b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(op_apply_ctx->l_to_g_0, op_apply_ctx->Y_loc, Y, ADD_VALUES, SCATTER_FORWARD)); 297cb32e2e7SValeria Barra 298ee4ca9cbSJames Wright PetscFunctionReturn(PETSC_SUCCESS); 299cb32e2e7SValeria Barra } 300cb32e2e7SValeria Barra 301cb32e2e7SValeria Barra // This function calculates the error in the final solution 3022b730f8bSJeremy L Thompson static PetscErrorCode ComputeErrorMax(OperatorApplyContext op_apply_ctx, CeedOperator op_error, Vec X, CeedVector target, PetscReal *max_error) { 303cb32e2e7SValeria Barra PetscScalar *x; 3049b072555Sjeremylt PetscMemType mem_type; 305cb32e2e7SValeria Barra CeedVector collocated_error; 3061f9221feSJeremy L Thompson CeedSize length; 307cb32e2e7SValeria Barra 308cb32e2e7SValeria Barra PetscFunctionBeginUser; 3099396343dSjeremylt 310cb32e2e7SValeria Barra CeedVectorGetLength(target, &length); 311d4d45553Srezgarshakeri CeedVectorCreate(op_apply_ctx->ceed, length, &collocated_error); 312cb32e2e7SValeria Barra 313cb32e2e7SValeria Barra // Global-to-local 3142b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(op_apply_ctx->l_to_g, X, op_apply_ctx->X_loc, INSERT_VALUES, SCATTER_REVERSE)); 3152b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(op_apply_ctx->l_to_g, X, op_apply_ctx->X_loc, INSERT_VALUES, SCATTER_REVERSE)); 3169396343dSjeremylt 3179396343dSjeremylt // Setup libCEED vector 3182b730f8bSJeremy L Thompson PetscCall(VecGetArrayReadAndMemType(op_apply_ctx->X_loc, (const PetscScalar **)&x, &mem_type)); 3192b730f8bSJeremy L Thompson CeedVectorSetArray(op_apply_ctx->x_ceed, MemTypeP2C(mem_type), CEED_USE_POINTER, x); 320cb32e2e7SValeria Barra 3219396343dSjeremylt // Apply libCEED operator 3222b730f8bSJeremy L Thompson CeedOperatorApply(op_error, op_apply_ctx->x_ceed, collocated_error, CEED_REQUEST_IMMEDIATE); 323cb32e2e7SValeria Barra 324cb32e2e7SValeria Barra // Restore PETSc vector 325d4d45553Srezgarshakeri CeedVectorTakeArray(op_apply_ctx->x_ceed, MemTypeP2C(mem_type), NULL); 3262b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayReadAndMemType(op_apply_ctx->X_loc, (const PetscScalar **)&x)); 327cb32e2e7SValeria Barra 328cb32e2e7SValeria Barra // Reduce max error 3299b072555Sjeremylt *max_error = 0; 330cb32e2e7SValeria Barra const CeedScalar *e; 331cb32e2e7SValeria Barra CeedVectorGetArrayRead(collocated_error, CEED_MEM_HOST, &e); 332cb32e2e7SValeria Barra for (CeedInt i = 0; i < length; i++) { 3339b072555Sjeremylt *max_error = PetscMax(*max_error, PetscAbsScalar(e[i])); 334cb32e2e7SValeria Barra } 335cb32e2e7SValeria Barra CeedVectorRestoreArrayRead(collocated_error, &e); 3362b730f8bSJeremy L Thompson PetscCall(MPI_Allreduce(MPI_IN_PLACE, max_error, 1, MPIU_REAL, MPIU_MAX, op_apply_ctx->comm)); 337cb32e2e7SValeria Barra 338cb32e2e7SValeria Barra // Cleanup 339cb32e2e7SValeria Barra CeedVectorDestroy(&collocated_error); 340cb32e2e7SValeria Barra 341ee4ca9cbSJames Wright PetscFunctionReturn(PETSC_SUCCESS); 342cb32e2e7SValeria Barra } 343cb32e2e7SValeria Barra 344cb32e2e7SValeria Barra int main(int argc, char **argv) { 345cb32e2e7SValeria Barra MPI_Comm comm; 3469b072555Sjeremylt char ceed_resource[PETSC_MAX_PATH_LEN] = "/cpu/self"; 347cb32e2e7SValeria Barra double my_rt_start, my_rt, rt_min, rt_max; 3482b730f8bSJeremy L Thompson PetscInt degree, q_extra, local_nodes, local_elem, mesh_elem[3], m_nodes[3], p[3], i_rank[3], l_nodes[3], l_size, num_comp_u = 1, 3492b730f8bSJeremy L Thompson ksp_max_it_clip[2]; 350cb32e2e7SValeria Barra PetscScalar *r; 351cb32e2e7SValeria Barra PetscBool test_mode, benchmark_mode, write_solution; 352cb32e2e7SValeria Barra PetscMPIInt size, rank; 3539b072555Sjeremylt PetscLogStage solve_stage; 3549b072555Sjeremylt Vec X, X_loc, rhs, rhs_loc; 355cb32e2e7SValeria Barra Mat mat; 356cb32e2e7SValeria Barra KSP ksp; 3579b072555Sjeremylt VecScatter l_to_g, l_to_g_0, g_to_g_D; 3589b072555Sjeremylt PetscMemType mem_type; 359d4d45553Srezgarshakeri OperatorApplyContext op_apply_ctx; 360cb32e2e7SValeria Barra Ceed ceed; 3619b072555Sjeremylt CeedBasis basis_x, basis_u; 3629b072555Sjeremylt CeedElemRestriction elem_restr_x, elem_restr_u, elem_restr_u_i, elem_restr_qd_i; 3639b072555Sjeremylt CeedQFunction qf_setup_geo, qf_setup_rhs, qf_apply, qf_error; 3649b072555Sjeremylt CeedOperator op_setup_geo, op_setup_rhs, op_apply, op_error; 3659b072555Sjeremylt CeedVector x_coord, q_data, rhs_ceed, target; 366cb32e2e7SValeria Barra CeedInt P, Q; 3679b072555Sjeremylt const CeedInt dim = 3, num_comp_x = 3; 3689b072555Sjeremylt BPType bp_choice; 369cb32e2e7SValeria Barra 3702b730f8bSJeremy L Thompson PetscCall(PetscInitialize(&argc, &argv, NULL, help)); 371cb32e2e7SValeria Barra comm = PETSC_COMM_WORLD; 37232d2ee49SValeria Barra 37332d2ee49SValeria Barra // Read command line options 37467490bc6SJeremy L Thompson PetscOptionsBegin(comm, NULL, "CEED BPs in PETSc", NULL); 3759b072555Sjeremylt bp_choice = CEED_BP1; 3762b730f8bSJeremy L Thompson PetscCall(PetscOptionsEnum("-problem", "CEED benchmark problem to solve", NULL, bp_types, (PetscEnum)bp_choice, (PetscEnum *)&bp_choice, NULL)); 3779b072555Sjeremylt num_comp_u = bp_options[bp_choice].num_comp_u; 378cb32e2e7SValeria Barra test_mode = PETSC_FALSE; 3792b730f8bSJeremy L Thompson PetscCall(PetscOptionsBool("-test", "Testing mode (do not print unless error is large)", NULL, test_mode, &test_mode, NULL)); 380cb32e2e7SValeria Barra benchmark_mode = PETSC_FALSE; 3812b730f8bSJeremy L Thompson PetscCall(PetscOptionsBool("-benchmark", "Benchmarking mode (prints benchmark statistics)", NULL, benchmark_mode, &benchmark_mode, NULL)); 382cb32e2e7SValeria Barra write_solution = PETSC_FALSE; 3832b730f8bSJeremy L Thompson PetscCall(PetscOptionsBool("-write_solution", "Write solution for visualization", NULL, write_solution, &write_solution, NULL)); 384cb32e2e7SValeria Barra degree = test_mode ? 3 : 1; 3852b730f8bSJeremy L Thompson PetscCall(PetscOptionsInt("-degree", "Polynomial degree of tensor product basis", NULL, degree, °ree, NULL)); 3869b072555Sjeremylt q_extra = bp_options[bp_choice].q_extra; 3872b730f8bSJeremy L Thompson PetscCall(PetscOptionsInt("-q_extra", "Number of extra quadrature points", NULL, q_extra, &q_extra, NULL)); 3882b730f8bSJeremy L Thompson PetscCall(PetscOptionsString("-ceed", "CEED resource specifier", NULL, ceed_resource, ceed_resource, sizeof(ceed_resource), NULL)); 3899b072555Sjeremylt local_nodes = 1000; 3902b730f8bSJeremy L Thompson PetscCall(PetscOptionsInt("-local", "Target number of locally owned nodes per process", NULL, local_nodes, &local_nodes, NULL)); 3912fbc6e41SJeremy L Thompson PetscInt two = 2; 3922fbc6e41SJeremy L Thompson ksp_max_it_clip[0] = 5; 3932fbc6e41SJeremy L Thompson ksp_max_it_clip[1] = 20; 3942b730f8bSJeremy L Thompson PetscCall( 3952b730f8bSJeremy L Thompson PetscOptionsIntArray("-ksp_max_it_clip", "Min and max number of iterations to use during benchmarking", NULL, ksp_max_it_clip, &two, NULL)); 39667490bc6SJeremy L Thompson PetscOptionsEnd(); 397cb32e2e7SValeria Barra P = degree + 1; 3989b072555Sjeremylt Q = P + q_extra; 399cb32e2e7SValeria Barra 4009396343dSjeremylt // Set up libCEED 4019b072555Sjeremylt CeedInit(ceed_resource, &ceed); 4029b072555Sjeremylt CeedMemType mem_type_backend; 4039b072555Sjeremylt CeedGetPreferredMemType(ceed, &mem_type_backend); 4049396343dSjeremylt 4059b072555Sjeremylt VecType default_vec_type = NULL, vec_type; 4069b072555Sjeremylt switch (mem_type_backend) { 4072b730f8bSJeremy L Thompson case CEED_MEM_HOST: 4082b730f8bSJeremy L Thompson default_vec_type = VECSTANDARD; 4092b730f8bSJeremy L Thompson break; 410b68a8d79SJed Brown case CEED_MEM_DEVICE: { 411b68a8d79SJed Brown const char *resolved; 412b68a8d79SJed Brown CeedGetResource(ceed, &resolved); 4139b072555Sjeremylt if (strstr(resolved, "/gpu/cuda")) default_vec_type = VECCUDA; 4142b730f8bSJeremy L Thompson else if (strstr(resolved, "/gpu/hip/occa")) default_vec_type = VECSTANDARD; // https://github.com/CEED/libCEED/issues/678 4159b072555Sjeremylt else if (strstr(resolved, "/gpu/hip")) default_vec_type = VECHIP; 4169b072555Sjeremylt else default_vec_type = VECSTANDARD; 417b68a8d79SJed Brown } 418b68a8d79SJed Brown } 4199396343dSjeremylt 420cb32e2e7SValeria Barra // Determine size of process grid 4212b730f8bSJeremy L Thompson PetscCall(MPI_Comm_size(comm, &size)); 422cb32e2e7SValeria Barra Split3(size, p, false); 423cb32e2e7SValeria Barra 4249b072555Sjeremylt // Find a nicely composite number of elements no less than local_nodes 4252b730f8bSJeremy L Thompson for (local_elem = PetscMax(1, local_nodes / (degree * degree * degree));; local_elem++) { 4269b072555Sjeremylt Split3(local_elem, mesh_elem, true); 4279b072555Sjeremylt if (Max3(mesh_elem) / Min3(mesh_elem) <= 2) break; 428cb32e2e7SValeria Barra } 429cb32e2e7SValeria Barra 430cb32e2e7SValeria Barra // Find my location in the process grid 4312b730f8bSJeremy L Thompson PetscCall(MPI_Comm_rank(comm, &rank)); 4329b072555Sjeremylt for (int d = 0, rank_left = rank; d < dim; d++) { 433cb32e2e7SValeria Barra const int pstride[3] = {p[1] * p[2], p[2], 1}; 4349b072555Sjeremylt i_rank[d] = rank_left / pstride[d]; 4359b072555Sjeremylt rank_left -= i_rank[d] * pstride[d]; 436cb32e2e7SValeria Barra } 437cb32e2e7SValeria Barra 4389b072555Sjeremylt GlobalNodes(p, i_rank, degree, mesh_elem, m_nodes); 439cb32e2e7SValeria Barra 440cb32e2e7SValeria Barra // Setup global vector 4412b730f8bSJeremy L Thompson PetscCall(VecCreate(comm, &X)); 4422b730f8bSJeremy L Thompson PetscCall(VecSetType(X, default_vec_type)); 4432b730f8bSJeremy L Thompson PetscCall(VecSetSizes(X, m_nodes[0] * m_nodes[1] * m_nodes[2] * num_comp_u, PETSC_DECIDE)); 4442b730f8bSJeremy L Thompson PetscCall(VecSetFromOptions(X)); 4452b730f8bSJeremy L Thompson PetscCall(VecSetUp(X)); 446cb32e2e7SValeria Barra 447cb32e2e7SValeria Barra // Set up libCEED 4489b072555Sjeremylt CeedInit(ceed_resource, &ceed); 449cb32e2e7SValeria Barra 450cb32e2e7SValeria Barra // Print summary 451cb32e2e7SValeria Barra CeedInt gsize; 4522b730f8bSJeremy L Thompson PetscCall(VecGetSize(X, &gsize)); 453dc7d240cSValeria Barra if (!test_mode) { 4549b072555Sjeremylt const char *used_resource; 4559b072555Sjeremylt CeedGetResource(ceed, &used_resource); 4569396343dSjeremylt 4572b730f8bSJeremy L Thompson PetscCall(VecGetType(X, &vec_type)); 4589396343dSjeremylt 4592b730f8bSJeremy L Thompson PetscCall(PetscPrintf(comm, 460990fdeb6SJeremy L Thompson "\n-- CEED Benchmark Problem %" CeedInt_FMT " -- libCEED + PETSc --\n" 4619396343dSjeremylt " PETSc:\n" 4629396343dSjeremylt " PETSc Vec Type : %s\n" 463cb32e2e7SValeria Barra " libCEED:\n" 464cb32e2e7SValeria Barra " libCEED Backend : %s\n" 4659396343dSjeremylt " libCEED Backend MemType : %s\n" 466cb32e2e7SValeria Barra " Mesh:\n" 467751eb813Srezgarshakeri " Solution Order (P) : %" CeedInt_FMT "\n" 468751eb813Srezgarshakeri " Quadrature Order (Q) : %" CeedInt_FMT "\n" 46908140895SJed Brown " Global nodes : %" PetscInt_FMT "\n" 4702b730f8bSJeremy L Thompson " Process Decomposition : %" PetscInt_FMT " %" PetscInt_FMT " %" PetscInt_FMT "\n" 4712b730f8bSJeremy L Thompson " Local Elements : %" PetscInt_FMT " = %" PetscInt_FMT " %" PetscInt_FMT " %" PetscInt_FMT "\n" 4722b730f8bSJeremy L Thompson " Owned nodes : %" PetscInt_FMT " = %" PetscInt_FMT " %" PetscInt_FMT " %" PetscInt_FMT "\n" 47308140895SJed Brown " DoF per node : %" PetscInt_FMT "\n", 4742b730f8bSJeremy L Thompson bp_choice + 1, vec_type, used_resource, CeedMemTypes[mem_type_backend], P, Q, gsize / num_comp_u, p[0], p[1], p[2], 4752b730f8bSJeremy L Thompson local_elem, mesh_elem[0], mesh_elem[1], mesh_elem[2], m_nodes[0] * m_nodes[1] * m_nodes[2], m_nodes[0], m_nodes[1], 4762b730f8bSJeremy L Thompson m_nodes[2], num_comp_u)); 477cb32e2e7SValeria Barra } 478cb32e2e7SValeria Barra 479cb32e2e7SValeria Barra { 4809b072555Sjeremylt l_size = 1; 481cb32e2e7SValeria Barra for (int d = 0; d < dim; d++) { 4829b072555Sjeremylt l_nodes[d] = mesh_elem[d] * degree + 1; 4839b072555Sjeremylt l_size *= l_nodes[d]; 484cb32e2e7SValeria Barra } 4852b730f8bSJeremy L Thompson PetscCall(VecCreate(PETSC_COMM_SELF, &X_loc)); 4862b730f8bSJeremy L Thompson PetscCall(VecSetType(X_loc, default_vec_type)); 4872b730f8bSJeremy L Thompson PetscCall(VecSetSizes(X_loc, l_size * num_comp_u, PETSC_DECIDE)); 4882b730f8bSJeremy L Thompson PetscCall(VecSetFromOptions(X_loc)); 4892b730f8bSJeremy L Thompson PetscCall(VecSetUp(X_loc)); 490cb32e2e7SValeria Barra 491cb32e2e7SValeria Barra // Create local-to-global scatter 4929b072555Sjeremylt PetscInt *l_to_g_ind, *l_to_g_ind_0, *loc_ind, l_0_count; 4939b072555Sjeremylt IS l_to_g_is, l_to_g_is_0, loc_is; 4949b072555Sjeremylt PetscInt g_start[2][2][2], g_m_nodes[2][2][2][dim]; 495cb32e2e7SValeria Barra 496cb32e2e7SValeria Barra for (int i = 0; i < 2; i++) { 497cb32e2e7SValeria Barra for (int j = 0; j < 2; j++) { 498cb32e2e7SValeria Barra for (int k = 0; k < 2; k++) { 4999b072555Sjeremylt PetscInt ijk_rank[3] = {i_rank[0] + i, i_rank[1] + j, i_rank[2] + k}; 5009b072555Sjeremylt g_start[i][j][k] = GlobalStart(p, ijk_rank, degree, mesh_elem); 5019b072555Sjeremylt GlobalNodes(p, ijk_rank, degree, mesh_elem, g_m_nodes[i][j][k]); 502cb32e2e7SValeria Barra } 503cb32e2e7SValeria Barra } 504cb32e2e7SValeria Barra } 505cb32e2e7SValeria Barra 5062b730f8bSJeremy L Thompson PetscCall(PetscMalloc1(l_size, &l_to_g_ind)); 5072b730f8bSJeremy L Thompson PetscCall(PetscMalloc1(l_size, &l_to_g_ind_0)); 5082b730f8bSJeremy L Thompson PetscCall(PetscMalloc1(l_size, &loc_ind)); 5099b072555Sjeremylt l_0_count = 0; 5102b730f8bSJeremy L Thompson for (PetscInt i = 0, ir, ii; ir = i >= m_nodes[0], ii = i - ir * m_nodes[0], i < l_nodes[0]; i++) { 5112b730f8bSJeremy L Thompson for (PetscInt j = 0, jr, jj; jr = j >= m_nodes[1], jj = j - jr * m_nodes[1], j < l_nodes[1]; j++) { 5122b730f8bSJeremy L Thompson for (PetscInt k = 0, kr, kk; kr = k >= m_nodes[2], kk = k - kr * m_nodes[2], k < l_nodes[2]; k++) { 5139b072555Sjeremylt PetscInt here = (i * l_nodes[1] + j) * l_nodes[2] + k; 5142b730f8bSJeremy L Thompson l_to_g_ind[here] = g_start[ir][jr][kr] + (ii * g_m_nodes[ir][jr][kr][1] + jj) * g_m_nodes[ir][jr][kr][2] + kk; 5152b730f8bSJeremy L Thompson if ((i_rank[0] == 0 && i == 0) || (i_rank[1] == 0 && j == 0) || (i_rank[2] == 0 && k == 0) || 5162b730f8bSJeremy L Thompson (i_rank[0] + 1 == p[0] && i + 1 == l_nodes[0]) || (i_rank[1] + 1 == p[1] && j + 1 == l_nodes[1]) || 5172b730f8bSJeremy L Thompson (i_rank[2] + 1 == p[2] && k + 1 == l_nodes[2])) 518cb32e2e7SValeria Barra continue; 5199b072555Sjeremylt l_to_g_ind_0[l_0_count] = l_to_g_ind[here]; 5209b072555Sjeremylt loc_ind[l_0_count++] = here; 521cb32e2e7SValeria Barra } 5222b730f8bSJeremy L Thompson } 5232b730f8bSJeremy L Thompson } 5242b730f8bSJeremy L Thompson PetscCall(ISCreateBlock(comm, num_comp_u, l_size, l_to_g_ind, PETSC_OWN_POINTER, &l_to_g_is)); 5252b730f8bSJeremy L Thompson PetscCall(VecScatterCreate(X_loc, NULL, X, l_to_g_is, &l_to_g)); 5262b730f8bSJeremy L Thompson PetscCall(ISCreateBlock(comm, num_comp_u, l_0_count, l_to_g_ind_0, PETSC_OWN_POINTER, &l_to_g_is_0)); 5272b730f8bSJeremy L Thompson PetscCall(ISCreateBlock(comm, num_comp_u, l_0_count, loc_ind, PETSC_OWN_POINTER, &loc_is)); 5282b730f8bSJeremy L Thompson PetscCall(VecScatterCreate(X_loc, loc_is, X, l_to_g_is_0, &l_to_g_0)); 529cb32e2e7SValeria Barra { 530ea61e9acSJeremy L Thompson // Create global-to-global scatter for Dirichlet values (everything not in l_to_g_is_0, which is the range of l_to_g_0) 5319b072555Sjeremylt PetscInt x_start, x_end, *ind_D, count_D = 0; 5329b072555Sjeremylt IS is_D; 533cb32e2e7SValeria Barra const PetscScalar *x; 5342b730f8bSJeremy L Thompson PetscCall(VecZeroEntries(X_loc)); 5352b730f8bSJeremy L Thompson PetscCall(VecSet(X, 1.0)); 5362b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(l_to_g_0, X_loc, X, INSERT_VALUES, SCATTER_FORWARD)); 5372b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(l_to_g_0, X_loc, X, INSERT_VALUES, SCATTER_FORWARD)); 5382b730f8bSJeremy L Thompson PetscCall(VecGetOwnershipRange(X, &x_start, &x_end)); 5392b730f8bSJeremy L Thompson PetscCall(PetscMalloc1(x_end - x_start, &ind_D)); 5402b730f8bSJeremy L Thompson PetscCall(VecGetArrayRead(X, &x)); 5419b072555Sjeremylt for (PetscInt i = 0; i < x_end - x_start; i++) { 5429b072555Sjeremylt if (x[i] == 1.) ind_D[count_D++] = x_start + i; 543cb32e2e7SValeria Barra } 5442b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayRead(X, &x)); 5452b730f8bSJeremy L Thompson PetscCall(ISCreateGeneral(comm, count_D, ind_D, PETSC_COPY_VALUES, &is_D)); 5462b730f8bSJeremy L Thompson PetscCall(PetscFree(ind_D)); 5472b730f8bSJeremy L Thompson PetscCall(VecScatterCreate(X, is_D, X, is_D, &g_to_g_D)); 5482b730f8bSJeremy L Thompson PetscCall(ISDestroy(&is_D)); 549cb32e2e7SValeria Barra } 5502b730f8bSJeremy L Thompson PetscCall(ISDestroy(&l_to_g_is)); 5512b730f8bSJeremy L Thompson PetscCall(ISDestroy(&l_to_g_is_0)); 5522b730f8bSJeremy L Thompson PetscCall(ISDestroy(&loc_is)); 553cb32e2e7SValeria Barra } 554cb32e2e7SValeria Barra 555cb32e2e7SValeria Barra // CEED bases 5562b730f8bSJeremy L Thompson CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_u, P, Q, bp_options[bp_choice].q_mode, &basis_u); 5572b730f8bSJeremy L Thompson CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, 2, Q, bp_options[bp_choice].q_mode, &basis_x); 558cb32e2e7SValeria Barra 559cb32e2e7SValeria Barra // CEED restrictions 5609b072555Sjeremylt CreateRestriction(ceed, mesh_elem, P, num_comp_u, &elem_restr_u); 5619b072555Sjeremylt CreateRestriction(ceed, mesh_elem, 2, dim, &elem_restr_x); 5629b072555Sjeremylt CeedInt num_elem = mesh_elem[0] * mesh_elem[1] * mesh_elem[2]; 5632b730f8bSJeremy L Thompson CeedElemRestrictionCreateStrided(ceed, num_elem, Q * Q * Q, num_comp_u, num_comp_u * num_elem * Q * Q * Q, CEED_STRIDES_BACKEND, &elem_restr_u_i); 5642b730f8bSJeremy L Thompson CeedElemRestrictionCreateStrided(ceed, num_elem, Q * Q * Q, bp_options[bp_choice].q_data_size, 5652b730f8bSJeremy L Thompson bp_options[bp_choice].q_data_size * num_elem * Q * Q * Q, CEED_STRIDES_BACKEND, &elem_restr_qd_i); 566cb32e2e7SValeria Barra { 5679b072555Sjeremylt CeedScalar *x_loc; 5682b730f8bSJeremy L Thompson CeedInt shape[3] = {mesh_elem[0] + 1, mesh_elem[1] + 1, mesh_elem[2] + 1}, len = shape[0] * shape[1] * shape[2]; 5699b072555Sjeremylt x_loc = malloc(len * num_comp_x * sizeof x_loc[0]); 570cb32e2e7SValeria Barra for (CeedInt i = 0; i < shape[0]; i++) { 571cb32e2e7SValeria Barra for (CeedInt j = 0; j < shape[1]; j++) { 572cb32e2e7SValeria Barra for (CeedInt k = 0; k < shape[2]; k++) { 5732b730f8bSJeremy L Thompson x_loc[dim * ((i * shape[1] + j) * shape[2] + k) + 0] = 1. * (i_rank[0] * mesh_elem[0] + i) / (p[0] * mesh_elem[0]); 5742b730f8bSJeremy L Thompson x_loc[dim * ((i * shape[1] + j) * shape[2] + k) + 1] = 1. * (i_rank[1] * mesh_elem[1] + j) / (p[1] * mesh_elem[1]); 5752b730f8bSJeremy L Thompson x_loc[dim * ((i * shape[1] + j) * shape[2] + k) + 2] = 1. * (i_rank[2] * mesh_elem[2] + k) / (p[2] * mesh_elem[2]); 576cb32e2e7SValeria Barra } 577cb32e2e7SValeria Barra } 578cb32e2e7SValeria Barra } 5799b072555Sjeremylt CeedVectorCreate(ceed, len * num_comp_x, &x_coord); 5809b072555Sjeremylt CeedVectorSetArray(x_coord, CEED_MEM_HOST, CEED_OWN_POINTER, x_loc); 581cb32e2e7SValeria Barra } 582cb32e2e7SValeria Barra 5839b072555Sjeremylt // Create the QFunction that builds the operator quadrature data 5842b730f8bSJeremy L Thompson CeedQFunctionCreateInterior(ceed, 1, bp_options[bp_choice].setup_geo, bp_options[bp_choice].setup_geo_loc, &qf_setup_geo); 5859b072555Sjeremylt CeedQFunctionAddInput(qf_setup_geo, "x", num_comp_x, CEED_EVAL_INTERP); 5869b072555Sjeremylt CeedQFunctionAddInput(qf_setup_geo, "dx", num_comp_x * dim, CEED_EVAL_GRAD); 5879b072555Sjeremylt CeedQFunctionAddInput(qf_setup_geo, "weight", 1, CEED_EVAL_WEIGHT); 5882b730f8bSJeremy L Thompson CeedQFunctionAddOutput(qf_setup_geo, "q_data", bp_options[bp_choice].q_data_size, CEED_EVAL_NONE); 589cb32e2e7SValeria Barra 5909b072555Sjeremylt // Create the QFunction that sets up the RHS and true solution 5912b730f8bSJeremy L Thompson CeedQFunctionCreateInterior(ceed, 1, bp_options[bp_choice].setup_rhs, bp_options[bp_choice].setup_rhs_loc, &qf_setup_rhs); 5929b072555Sjeremylt CeedQFunctionAddInput(qf_setup_rhs, "x", num_comp_x, CEED_EVAL_INTERP); 5932b730f8bSJeremy L Thompson CeedQFunctionAddInput(qf_setup_rhs, "q_data", bp_options[bp_choice].q_data_size, CEED_EVAL_NONE); 5949b072555Sjeremylt CeedQFunctionAddOutput(qf_setup_rhs, "true_soln", num_comp_u, CEED_EVAL_NONE); 5959b072555Sjeremylt CeedQFunctionAddOutput(qf_setup_rhs, "rhs", num_comp_u, CEED_EVAL_INTERP); 596cb32e2e7SValeria Barra 597cb32e2e7SValeria Barra // Set up PDE operator 5982b730f8bSJeremy L Thompson CeedQFunctionCreateInterior(ceed, 1, bp_options[bp_choice].apply, bp_options[bp_choice].apply_loc, &qf_apply); 599cb32e2e7SValeria Barra // Add inputs and outputs 6009b072555Sjeremylt CeedInt in_scale = bp_options[bp_choice].in_mode == CEED_EVAL_GRAD ? 3 : 1; 6019b072555Sjeremylt CeedInt out_scale = bp_options[bp_choice].out_mode == CEED_EVAL_GRAD ? 3 : 1; 6022b730f8bSJeremy L Thompson CeedQFunctionAddInput(qf_apply, "u", num_comp_u * in_scale, bp_options[bp_choice].in_mode); 6032b730f8bSJeremy L Thompson CeedQFunctionAddInput(qf_apply, "q_data", bp_options[bp_choice].q_data_size, CEED_EVAL_NONE); 6042b730f8bSJeremy L Thompson CeedQFunctionAddOutput(qf_apply, "v", num_comp_u * out_scale, bp_options[bp_choice].out_mode); 605cb32e2e7SValeria Barra 606cb32e2e7SValeria Barra // Create the error qfunction 6072b730f8bSJeremy L Thompson CeedQFunctionCreateInterior(ceed, 1, bp_options[bp_choice].error, bp_options[bp_choice].error_loc, &qf_error); 6089b072555Sjeremylt CeedQFunctionAddInput(qf_error, "u", num_comp_u, CEED_EVAL_INTERP); 6099b072555Sjeremylt CeedQFunctionAddInput(qf_error, "true_soln", num_comp_u, CEED_EVAL_NONE); 6102b730f8bSJeremy L Thompson CeedQFunctionAddInput(qf_error, "qdata", bp_options[bp_choice].q_data_size, CEED_EVAL_NONE); 6119b072555Sjeremylt CeedQFunctionAddOutput(qf_error, "error", num_comp_u, CEED_EVAL_NONE); 612cb32e2e7SValeria Barra 613cb32e2e7SValeria Barra // Create the persistent vectors that will be needed in setup 6149b072555Sjeremylt CeedInt num_qpts; 6159b072555Sjeremylt CeedBasisGetNumQuadraturePoints(basis_u, &num_qpts); 6162b730f8bSJeremy L Thompson CeedVectorCreate(ceed, bp_options[bp_choice].q_data_size * num_elem * num_qpts, &q_data); 6179b072555Sjeremylt CeedVectorCreate(ceed, num_elem * num_qpts * num_comp_u, &target); 6189b072555Sjeremylt CeedVectorCreate(ceed, l_size * num_comp_u, &rhs_ceed); 619cb32e2e7SValeria Barra 620cb32e2e7SValeria Barra // Create the operator that builds the quadrature data for the ceed operator 6212b730f8bSJeremy L Thompson CeedOperatorCreate(ceed, qf_setup_geo, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_setup_geo); 6222b730f8bSJeremy L Thompson CeedOperatorSetField(op_setup_geo, "x", elem_restr_x, basis_x, CEED_VECTOR_ACTIVE); 6232b730f8bSJeremy L Thompson CeedOperatorSetField(op_setup_geo, "dx", elem_restr_x, basis_x, CEED_VECTOR_ACTIVE); 6242b730f8bSJeremy L Thompson CeedOperatorSetField(op_setup_geo, "weight", CEED_ELEMRESTRICTION_NONE, basis_x, CEED_VECTOR_NONE); 625*356036faSJeremy L Thompson CeedOperatorSetField(op_setup_geo, "q_data", elem_restr_qd_i, CEED_BASIS_NONE, CEED_VECTOR_ACTIVE); 626cb32e2e7SValeria Barra 627cb32e2e7SValeria Barra // Create the operator that builds the RHS and true solution 6282b730f8bSJeremy L Thompson CeedOperatorCreate(ceed, qf_setup_rhs, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_setup_rhs); 6292b730f8bSJeremy L Thompson CeedOperatorSetField(op_setup_rhs, "x", elem_restr_x, basis_x, CEED_VECTOR_ACTIVE); 630*356036faSJeremy L Thompson CeedOperatorSetField(op_setup_rhs, "q_data", elem_restr_qd_i, CEED_BASIS_NONE, q_data); 631*356036faSJeremy L Thompson CeedOperatorSetField(op_setup_rhs, "true_soln", elem_restr_u_i, CEED_BASIS_NONE, target); 6322b730f8bSJeremy L Thompson CeedOperatorSetField(op_setup_rhs, "rhs", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); 633cb32e2e7SValeria Barra 634cb32e2e7SValeria Barra // Create the mass or diff operator 6352b730f8bSJeremy L Thompson CeedOperatorCreate(ceed, qf_apply, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_apply); 6369b072555Sjeremylt CeedOperatorSetField(op_apply, "u", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); 637*356036faSJeremy L Thompson CeedOperatorSetField(op_apply, "q_data", elem_restr_qd_i, CEED_BASIS_NONE, q_data); 6389b072555Sjeremylt CeedOperatorSetField(op_apply, "v", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); 639cb32e2e7SValeria Barra 640cb32e2e7SValeria Barra // Create the error operator 6412b730f8bSJeremy L Thompson CeedOperatorCreate(ceed, qf_error, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_error); 6429b072555Sjeremylt CeedOperatorSetField(op_error, "u", elem_restr_u, basis_u, CEED_VECTOR_ACTIVE); 643*356036faSJeremy L Thompson CeedOperatorSetField(op_error, "true_soln", elem_restr_u_i, CEED_BASIS_NONE, target); 644*356036faSJeremy L Thompson CeedOperatorSetField(op_error, "qdata", elem_restr_qd_i, CEED_BASIS_NONE, q_data); 645*356036faSJeremy L Thompson CeedOperatorSetField(op_error, "error", elem_restr_u_i, CEED_BASIS_NONE, CEED_VECTOR_ACTIVE); 646cb32e2e7SValeria Barra 647cb32e2e7SValeria Barra // Set up Mat 6482b730f8bSJeremy L Thompson PetscCall(PetscMalloc1(1, &op_apply_ctx)); 649d4d45553Srezgarshakeri op_apply_ctx->comm = comm; 650d4d45553Srezgarshakeri op_apply_ctx->l_to_g = l_to_g; 6519b072555Sjeremylt if (bp_choice != CEED_BP1 && bp_choice != CEED_BP2) { 652d4d45553Srezgarshakeri op_apply_ctx->l_to_g_0 = l_to_g_0; 653d4d45553Srezgarshakeri op_apply_ctx->g_to_g_D = g_to_g_D; 654cb32e2e7SValeria Barra } 655d4d45553Srezgarshakeri op_apply_ctx->X_loc = X_loc; 6562b730f8bSJeremy L Thompson PetscCall(VecDuplicate(X_loc, &op_apply_ctx->Y_loc)); 657d4d45553Srezgarshakeri CeedVectorCreate(ceed, l_size * num_comp_u, &op_apply_ctx->x_ceed); 658d4d45553Srezgarshakeri CeedVectorCreate(ceed, l_size * num_comp_u, &op_apply_ctx->y_ceed); 659d4d45553Srezgarshakeri op_apply_ctx->op = op_apply; 660d4d45553Srezgarshakeri op_apply_ctx->q_data = q_data; 661d4d45553Srezgarshakeri op_apply_ctx->ceed = ceed; 662cb32e2e7SValeria Barra 6632b730f8bSJeremy L Thompson PetscCall(MatCreateShell(comm, m_nodes[0] * m_nodes[1] * m_nodes[2] * num_comp_u, m_nodes[0] * m_nodes[1] * m_nodes[2] * num_comp_u, PETSC_DECIDE, 6642b730f8bSJeremy L Thompson PETSC_DECIDE, op_apply_ctx, &mat)); 6659b072555Sjeremylt if (bp_choice == CEED_BP1 || bp_choice == CEED_BP2) { 6662b730f8bSJeremy L Thompson PetscCall(MatShellSetOperation(mat, MATOP_MULT, (void (*)(void))MatMult_Mass)); 667cb32e2e7SValeria Barra } else { 6682b730f8bSJeremy L Thompson PetscCall(MatShellSetOperation(mat, MATOP_MULT, (void (*)(void))MatMult_Diff)); 669cb32e2e7SValeria Barra } 6702b730f8bSJeremy L Thompson PetscCall(VecGetType(X, &vec_type)); 6712b730f8bSJeremy L Thompson PetscCall(MatShellSetVecType(mat, vec_type)); 672cb32e2e7SValeria Barra 673cb32e2e7SValeria Barra // Get RHS vector 6742b730f8bSJeremy L Thompson PetscCall(VecDuplicate(X, &rhs)); 6752b730f8bSJeremy L Thompson PetscCall(VecDuplicate(X_loc, &rhs_loc)); 6762b730f8bSJeremy L Thompson PetscCall(VecZeroEntries(rhs_loc)); 6772b730f8bSJeremy L Thompson PetscCall(VecGetArrayAndMemType(rhs_loc, &r, &mem_type)); 6789b072555Sjeremylt CeedVectorSetArray(rhs_ceed, MemTypeP2C(mem_type), CEED_USE_POINTER, r); 679cb32e2e7SValeria Barra 6809b072555Sjeremylt // Setup q_data, rhs, and target 6819b072555Sjeremylt CeedOperatorApply(op_setup_geo, x_coord, q_data, CEED_REQUEST_IMMEDIATE); 6829b072555Sjeremylt CeedOperatorApply(op_setup_rhs, x_coord, rhs_ceed, CEED_REQUEST_IMMEDIATE); 6839b072555Sjeremylt CeedVectorDestroy(&x_coord); 684cb32e2e7SValeria Barra 685cb32e2e7SValeria Barra // Gather RHS 6862b730f8bSJeremy L Thompson PetscCall(CeedVectorTakeArray(rhs_ceed, MemTypeP2C(mem_type), NULL)); 6872b730f8bSJeremy L Thompson PetscCall(VecRestoreArrayAndMemType(rhs_loc, &r)); 6882b730f8bSJeremy L Thompson PetscCall(VecZeroEntries(rhs)); 6892b730f8bSJeremy L Thompson PetscCall(VecScatterBegin(l_to_g, rhs_loc, rhs, ADD_VALUES, SCATTER_FORWARD)); 6902b730f8bSJeremy L Thompson PetscCall(VecScatterEnd(l_to_g, rhs_loc, rhs, ADD_VALUES, SCATTER_FORWARD)); 6919b072555Sjeremylt CeedVectorDestroy(&rhs_ceed); 692cb32e2e7SValeria Barra 6932b730f8bSJeremy L Thompson PetscCall(KSPCreate(comm, &ksp)); 694cb32e2e7SValeria Barra { 695cb32e2e7SValeria Barra PC pc; 6962b730f8bSJeremy L Thompson PetscCall(KSPGetPC(ksp, &pc)); 6979b072555Sjeremylt if (bp_choice == CEED_BP1 || bp_choice == CEED_BP2) { 6982b730f8bSJeremy L Thompson PetscCall(PCSetType(pc, PCJACOBI)); 6992b730f8bSJeremy L Thompson PetscCall(PCJacobiSetType(pc, PC_JACOBI_ROWSUM)); 700cb32e2e7SValeria Barra } else { 7012b730f8bSJeremy L Thompson PetscCall(PCSetType(pc, PCNONE)); 702cb32e2e7SValeria Barra } 7032b730f8bSJeremy L Thompson PetscCall(KSPSetType(ksp, KSPCG)); 7042b730f8bSJeremy L Thompson PetscCall(KSPSetNormType(ksp, KSP_NORM_NATURAL)); 7052b730f8bSJeremy L Thompson PetscCall(KSPSetTolerances(ksp, 1e-10, PETSC_DEFAULT, PETSC_DEFAULT, PETSC_DEFAULT)); 706cb32e2e7SValeria Barra } 7072b730f8bSJeremy L Thompson PetscCall(KSPSetOperators(ksp, mat, mat)); 708da9108adSvaleriabarra // First run's performance log is not considered for benchmarking purposes 7092b730f8bSJeremy L Thompson PetscCall(KSPSetTolerances(ksp, 1e-10, PETSC_DEFAULT, PETSC_DEFAULT, 1)); 710cb32e2e7SValeria Barra my_rt_start = MPI_Wtime(); 7112b730f8bSJeremy L Thompson PetscCall(KSPSolve(ksp, rhs, X)); 712cb32e2e7SValeria Barra my_rt = MPI_Wtime() - my_rt_start; 7132b730f8bSJeremy L Thompson PetscCall(MPI_Allreduce(MPI_IN_PLACE, &my_rt, 1, MPI_DOUBLE, MPI_MIN, comm)); 714cb32e2e7SValeria Barra // Set maxits based on first iteration timing 715cb32e2e7SValeria Barra if (my_rt > 0.02) { 7162b730f8bSJeremy L Thompson PetscCall(KSPSetTolerances(ksp, 1e-10, PETSC_DEFAULT, PETSC_DEFAULT, ksp_max_it_clip[0])); 717cb32e2e7SValeria Barra } else { 7182b730f8bSJeremy L Thompson PetscCall(KSPSetTolerances(ksp, 1e-10, PETSC_DEFAULT, PETSC_DEFAULT, ksp_max_it_clip[1])); 719cb32e2e7SValeria Barra } 7202b730f8bSJeremy L Thompson PetscCall(KSPSetFromOptions(ksp)); 72109a940d7Sjeremylt 722cb32e2e7SValeria Barra // Timed solve 7232b730f8bSJeremy L Thompson PetscCall(VecZeroEntries(X)); 7242b730f8bSJeremy L Thompson PetscCall(PetscBarrier((PetscObject)ksp)); 72509a940d7Sjeremylt 72609a940d7Sjeremylt // -- Performance logging 7272b730f8bSJeremy L Thompson PetscCall(PetscLogStageRegister("Solve Stage", &solve_stage)); 7282b730f8bSJeremy L Thompson PetscCall(PetscLogStagePush(solve_stage)); 72909a940d7Sjeremylt 73009a940d7Sjeremylt // -- Solve 731cb32e2e7SValeria Barra my_rt_start = MPI_Wtime(); 7322b730f8bSJeremy L Thompson PetscCall(KSPSolve(ksp, rhs, X)); 733cb32e2e7SValeria Barra my_rt = MPI_Wtime() - my_rt_start; 73409a940d7Sjeremylt 73509a940d7Sjeremylt // -- Performance logging 7362b730f8bSJeremy L Thompson PetscCall(PetscLogStagePop()); 73709a940d7Sjeremylt 7388e87e98bSJed Brown // Output results 739cb32e2e7SValeria Barra { 7409b072555Sjeremylt KSPType ksp_type; 741cb32e2e7SValeria Barra KSPConvergedReason reason; 742cb32e2e7SValeria Barra PetscReal rnorm; 743cb32e2e7SValeria Barra PetscInt its; 7442b730f8bSJeremy L Thompson PetscCall(KSPGetType(ksp, &ksp_type)); 7452b730f8bSJeremy L Thompson PetscCall(KSPGetConvergedReason(ksp, &reason)); 7462b730f8bSJeremy L Thompson PetscCall(KSPGetIterationNumber(ksp, &its)); 7472b730f8bSJeremy L Thompson PetscCall(KSPGetResidualNorm(ksp, &rnorm)); 748a22c4fb5SJed Brown if (!test_mode || reason < 0 || rnorm > 1e-8) { 7492b730f8bSJeremy L Thompson PetscCall(PetscPrintf(comm, 750cb32e2e7SValeria Barra " KSP:\n" 751cb32e2e7SValeria Barra " KSP Type : %s\n" 752cb32e2e7SValeria Barra " KSP Convergence : %s\n" 75308140895SJed Brown " Total KSP Iterations : %" PetscInt_FMT "\n" 754cb32e2e7SValeria Barra " Final rnorm : %e\n", 7552b730f8bSJeremy L Thompson ksp_type, KSPConvergedReasons[reason], its, (double)rnorm)); 756cb32e2e7SValeria Barra } 7578e87e98bSJed Brown if (!test_mode) { 7582b730f8bSJeremy L Thompson PetscCall(PetscPrintf(comm, " Performance:\n")); 7598e87e98bSJed Brown } 7608e87e98bSJed Brown { 7619b072555Sjeremylt PetscReal max_error; 7622b730f8bSJeremy L Thompson PetscCall(ComputeErrorMax(op_apply_ctx, op_error, X, target, &max_error)); 7638e87e98bSJed Brown PetscReal tol = 5e-2; 7649b072555Sjeremylt if (!test_mode || max_error > tol) { 7652b730f8bSJeremy L Thompson PetscCall(MPI_Allreduce(&my_rt, &rt_min, 1, MPI_DOUBLE, MPI_MIN, comm)); 7662b730f8bSJeremy L Thompson PetscCall(MPI_Allreduce(&my_rt, &rt_max, 1, MPI_DOUBLE, MPI_MAX, comm)); 7672b730f8bSJeremy L Thompson PetscCall(PetscPrintf(comm, 7688e87e98bSJed Brown " Pointwise Error (max) : %e\n" 7698e87e98bSJed Brown " CG Solve Time : %g (%g) sec\n", 7702b730f8bSJeremy L Thompson (double)max_error, rt_max, rt_min)); 771cb32e2e7SValeria Barra } 772cb32e2e7SValeria Barra } 7738d0bb2bbSvaleriabarra if (!test_mode) { 7742b730f8bSJeremy L Thompson PetscCall( 7752b730f8bSJeremy L Thompson PetscPrintf(comm, " DoFs/Sec in CG : %g (%g) million\n", 1e-6 * gsize * its / rt_max, 1e-6 * gsize * its / rt_min)); 776cb32e2e7SValeria Barra } 777cb32e2e7SValeria Barra } 778cb32e2e7SValeria Barra 779cb32e2e7SValeria Barra if (write_solution) { 7809b072555Sjeremylt PetscViewer vtk_viewer_soln; 781cb32e2e7SValeria Barra 7822b730f8bSJeremy L Thompson PetscCall(PetscViewerCreate(comm, &vtk_viewer_soln)); 7832b730f8bSJeremy L Thompson PetscCall(PetscViewerSetType(vtk_viewer_soln, PETSCVIEWERVTK)); 7842b730f8bSJeremy L Thompson PetscCall(PetscViewerFileSetName(vtk_viewer_soln, "solution.vtu")); 7852b730f8bSJeremy L Thompson PetscCall(VecView(X, vtk_viewer_soln)); 7862b730f8bSJeremy L Thompson PetscCall(PetscViewerDestroy(&vtk_viewer_soln)); 787cb32e2e7SValeria Barra } 788cb32e2e7SValeria Barra 7892b730f8bSJeremy L Thompson PetscCall(VecDestroy(&rhs)); 7902b730f8bSJeremy L Thompson PetscCall(VecDestroy(&rhs_loc)); 7912b730f8bSJeremy L Thompson PetscCall(VecDestroy(&X)); 7922b730f8bSJeremy L Thompson PetscCall(VecDestroy(&op_apply_ctx->X_loc)); 7932b730f8bSJeremy L Thompson PetscCall(VecDestroy(&op_apply_ctx->Y_loc)); 7942b730f8bSJeremy L Thompson PetscCall(VecScatterDestroy(&l_to_g)); 7952b730f8bSJeremy L Thompson PetscCall(VecScatterDestroy(&l_to_g_0)); 7962b730f8bSJeremy L Thompson PetscCall(VecScatterDestroy(&g_to_g_D)); 7972b730f8bSJeremy L Thompson PetscCall(MatDestroy(&mat)); 7982b730f8bSJeremy L Thompson PetscCall(KSPDestroy(&ksp)); 799cb32e2e7SValeria Barra 800d4d45553Srezgarshakeri CeedVectorDestroy(&op_apply_ctx->x_ceed); 801d4d45553Srezgarshakeri CeedVectorDestroy(&op_apply_ctx->y_ceed); 802d4d45553Srezgarshakeri CeedVectorDestroy(&op_apply_ctx->q_data); 803cb32e2e7SValeria Barra CeedVectorDestroy(&target); 8049b072555Sjeremylt CeedOperatorDestroy(&op_setup_geo); 8059b072555Sjeremylt CeedOperatorDestroy(&op_setup_rhs); 8069b072555Sjeremylt CeedOperatorDestroy(&op_apply); 8079b072555Sjeremylt CeedOperatorDestroy(&op_error); 8089b072555Sjeremylt CeedElemRestrictionDestroy(&elem_restr_u); 8099b072555Sjeremylt CeedElemRestrictionDestroy(&elem_restr_x); 8109b072555Sjeremylt CeedElemRestrictionDestroy(&elem_restr_u_i); 8119b072555Sjeremylt CeedElemRestrictionDestroy(&elem_restr_qd_i); 8129b072555Sjeremylt CeedQFunctionDestroy(&qf_setup_geo); 8139b072555Sjeremylt CeedQFunctionDestroy(&qf_setup_rhs); 8149b072555Sjeremylt CeedQFunctionDestroy(&qf_apply); 8159b072555Sjeremylt CeedQFunctionDestroy(&qf_error); 8169b072555Sjeremylt CeedBasisDestroy(&basis_u); 8179b072555Sjeremylt CeedBasisDestroy(&basis_x); 818cb32e2e7SValeria Barra CeedDestroy(&ceed); 8192b730f8bSJeremy L Thompson PetscCall(PetscFree(op_apply_ctx)); 820cb32e2e7SValeria Barra return PetscFinalize(); 821cb32e2e7SValeria Barra } 822