1d275d636SJeremy L Thompson // Copyright (c) 2017-2025, 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. 3241a4b83SYohann // 43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 5241a4b83SYohann // 63d8e8822SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 73d576824SJeremy L Thompson 8b8e71988SJeremy L Thompson #define CEED_DEBUG_COLOR 12 97df94212SJeremy L Thompson 1049aac155SJeremy L Thompson #include <ceed.h> 11ec3da8bcSJed Brown #include <ceed/backend.h> 120183ed61SJeremy L Thompson #include <ceed/gen-tools.h> 139e201c85SYohann #include <ceed/jit-tools.h> 143d576824SJeremy L Thompson #include <cuda_runtime.h> 152b730f8bSJeremy L Thompson 16241a4b83SYohann #include <iostream> 17241a4b83SYohann #include <sstream> 18b2165e7aSSebastian Grimberg #include <string> 192b730f8bSJeremy L Thompson 200d0321e0SJeremy L Thompson #include "../cuda-ref/ceed-cuda-ref.h" 21241a4b83SYohann #include "../cuda-shared/ceed-cuda-shared.h" 2249aac155SJeremy L Thompson #include "../cuda/ceed-cuda-common.h" 232b730f8bSJeremy L Thompson #include "../cuda/ceed-cuda-compile.h" 242b730f8bSJeremy L Thompson #include "ceed-cuda-gen.h" 25241a4b83SYohann 2645a787f7SJeremy L Thompson struct FieldReuse_Cuda { 2745a787f7SJeremy L Thompson CeedInt index; 2845a787f7SJeremy L Thompson bool is_input; 2945a787f7SJeremy L Thompson CeedEvalMode eval_mode; 3045a787f7SJeremy L Thompson }; 3145a787f7SJeremy L Thompson 32ab213215SJeremy L Thompson //------------------------------------------------------------------------------ 334b3e95d5SJeremy L Thompson // Determine type of operator 344b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 354b3e95d5SJeremy L Thompson static int CeedOperatorBuildKernelData_Cuda_gen(Ceed ceed, CeedInt num_input_fields, CeedOperatorField *op_input_fields, 364b3e95d5SJeremy L Thompson CeedQFunctionField *qf_input_fields, CeedInt num_output_fields, CeedOperatorField *op_output_fields, 37412e5683SJeremy L Thompson CeedQFunctionField *qf_output_fields, CeedInt *max_P, CeedInt *max_P_1d, CeedInt *Q, CeedInt *Q_1d, 38412e5683SJeremy L Thompson CeedInt *max_dim, bool *is_all_tensor, bool *use_3d_slices) { 39412e5683SJeremy L Thompson // Check if all are tensor 40412e5683SJeremy L Thompson *is_all_tensor = true; 414b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 424b3e95d5SJeremy L Thompson CeedBasis basis; 434b3e95d5SJeremy L Thompson 444b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 454b3e95d5SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 464b3e95d5SJeremy L Thompson bool is_field_tensor; 474b3e95d5SJeremy L Thompson 484b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_field_tensor)); 49412e5683SJeremy L Thompson *is_all_tensor = *is_all_tensor && is_field_tensor; 504b3e95d5SJeremy L Thompson } 51681d0ea7SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 524b3e95d5SJeremy L Thompson } 534b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 544b3e95d5SJeremy L Thompson CeedBasis basis; 554b3e95d5SJeremy L Thompson 564b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 574b3e95d5SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 584b3e95d5SJeremy L Thompson bool is_field_tensor; 594b3e95d5SJeremy L Thompson 604b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_field_tensor)); 61412e5683SJeremy L Thompson *is_all_tensor = *is_all_tensor && is_field_tensor; 62412e5683SJeremy L Thompson } 63412e5683SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 64412e5683SJeremy L Thompson } 65412e5683SJeremy L Thompson 66412e5683SJeremy L Thompson // Find max_P, max_P_1d, Q, and Q_1d 67412e5683SJeremy L Thompson bool is_all_3d = true; 68412e5683SJeremy L Thompson 69412e5683SJeremy L Thompson *max_P = 0; 70412e5683SJeremy L Thompson *max_P_1d = 0; 71412e5683SJeremy L Thompson *Q = 0; 72412e5683SJeremy L Thompson *Q_1d = 0; 73412e5683SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 74412e5683SJeremy L Thompson CeedBasis basis; 75412e5683SJeremy L Thompson 76412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 77412e5683SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 78412e5683SJeremy L Thompson bool is_field_tensor; 79412e5683SJeremy L Thompson CeedInt field_dim = 0, field_P = 0, field_P_1d = 0, field_Q = 0, field_Q_1d = 0; 80412e5683SJeremy L Thompson 81412e5683SJeremy L Thompson // Check if 3D 824b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &field_dim)); 83412e5683SJeremy L Thompson is_all_3d = is_all_3d && (field_dim == 3); 84412e5683SJeremy L Thompson *max_dim = CeedIntMax(*max_dim, field_dim); 85412e5683SJeremy L Thompson 86412e5683SJeremy L Thompson // Collect P, P_1d, Q, and Q_1d 87412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes(basis, &field_P)); 88412e5683SJeremy L Thompson *max_P = CeedIntMax(*max_P, field_P); 89412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_field_tensor)); 90412e5683SJeremy L Thompson if (is_field_tensor) { 91412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &field_P_1d)); 92412e5683SJeremy L Thompson *max_P_1d = CeedIntMax(*max_P_1d, field_P_1d); 93412e5683SJeremy L Thompson } 94412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints(basis, &field_Q)); 95412e5683SJeremy L Thompson CeedCheck(*Q == 0 || field_Q == *Q, ceed, CEED_ERROR_BACKEND, "Quadrature spaces must be compatible"); 96412e5683SJeremy L Thompson *Q = field_Q; 97412e5683SJeremy L Thompson if (is_field_tensor) { 98412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &field_Q_1d)); 994b3e95d5SJeremy L Thompson CeedCheck(*Q_1d == 0 || field_Q_1d == *Q_1d, ceed, CEED_ERROR_BACKEND, "Quadrature spaces must be compatible"); 1004b3e95d5SJeremy L Thompson *Q_1d = field_Q_1d; 1014b3e95d5SJeremy L Thompson } 102412e5683SJeremy L Thompson } 103412e5683SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 104412e5683SJeremy L Thompson } 105412e5683SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 106412e5683SJeremy L Thompson CeedBasis basis; 107412e5683SJeremy L Thompson 108412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 109412e5683SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 110412e5683SJeremy L Thompson bool is_field_tensor; 111412e5683SJeremy L Thompson CeedInt field_dim = 0, field_P = 0, field_P_1d = 0, field_Q = 0, field_Q_1d = 0; 112412e5683SJeremy L Thompson 113412e5683SJeremy L Thompson // Check if 3D 114412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &field_dim)); 115412e5683SJeremy L Thompson is_all_3d = is_all_3d && (field_dim == 3); 116412e5683SJeremy L Thompson *max_dim = CeedIntMax(*max_dim, field_dim); 117412e5683SJeremy L Thompson 118412e5683SJeremy L Thompson // Collect P, P_1d, Q, and Q_1d 119412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes(basis, &field_P)); 120412e5683SJeremy L Thompson *max_P = CeedIntMax(*max_P, field_P); 121412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_field_tensor)); 122412e5683SJeremy L Thompson if (is_field_tensor) { 123412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &field_P_1d)); 124412e5683SJeremy L Thompson *max_P_1d = CeedIntMax(*max_P_1d, field_P_1d); 125412e5683SJeremy L Thompson } 126412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints(basis, &field_Q)); 127412e5683SJeremy L Thompson CeedCheck(*Q == 0 || field_Q == *Q, ceed, CEED_ERROR_BACKEND, "Quadrature spaces must be compatible"); 128412e5683SJeremy L Thompson *Q = field_Q; 129412e5683SJeremy L Thompson if (is_field_tensor) { 130412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &field_Q_1d)); 131412e5683SJeremy L Thompson CeedCheck(*Q_1d == 0 || field_Q_1d == *Q_1d, ceed, CEED_ERROR_BACKEND, "Quadrature spaces must be compatible"); 132412e5683SJeremy L Thompson *Q_1d = field_Q_1d; 133412e5683SJeremy L Thompson } 134412e5683SJeremy L Thompson } 135681d0ea7SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 1364b3e95d5SJeremy L Thompson } 1374b3e95d5SJeremy L Thompson 1384b3e95d5SJeremy L Thompson // Only use 3D collocated gradient parallelization strategy when gradient is computed 1394b3e95d5SJeremy L Thompson *use_3d_slices = false; 140412e5683SJeremy L Thompson if (is_all_3d && *is_all_tensor) { 1414b3e95d5SJeremy L Thompson bool was_grad_found = false; 1424b3e95d5SJeremy L Thompson 1434b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1444b3e95d5SJeremy L Thompson CeedEvalMode eval_mode; 1454b3e95d5SJeremy L Thompson 1464b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 1474b3e95d5SJeremy L Thompson if (eval_mode == CEED_EVAL_GRAD) { 1484b3e95d5SJeremy L Thompson CeedBasis_Cuda_shared *basis_data; 1494b3e95d5SJeremy L Thompson CeedBasis basis; 1504b3e95d5SJeremy L Thompson 1514b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 1524b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &basis_data)); 1534b3e95d5SJeremy L Thompson *use_3d_slices = basis_data->d_collo_grad_1d && (was_grad_found ? *use_3d_slices : true); 1544b3e95d5SJeremy L Thompson was_grad_found = true; 155681d0ea7SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 1564b3e95d5SJeremy L Thompson } 1574b3e95d5SJeremy L Thompson } 1584b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 1594b3e95d5SJeremy L Thompson CeedEvalMode eval_mode; 1604b3e95d5SJeremy L Thompson 1614b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 1624b3e95d5SJeremy L Thompson if (eval_mode == CEED_EVAL_GRAD) { 1634b3e95d5SJeremy L Thompson CeedBasis_Cuda_shared *basis_data; 1644b3e95d5SJeremy L Thompson CeedBasis basis; 1654b3e95d5SJeremy L Thompson 1664b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 1674b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &basis_data)); 1684b3e95d5SJeremy L Thompson *use_3d_slices = basis_data->d_collo_grad_1d && (was_grad_found ? *use_3d_slices : true); 1694b3e95d5SJeremy L Thompson was_grad_found = true; 170681d0ea7SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 1714b3e95d5SJeremy L Thompson } 1724b3e95d5SJeremy L Thompson } 1734b3e95d5SJeremy L Thompson } 1744b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 1754b3e95d5SJeremy L Thompson } 1764b3e95d5SJeremy L Thompson 1774b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 1784b3e95d5SJeremy L Thompson // Setup fields 1794b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 1800183ed61SJeremy L Thompson static int CeedOperatorBuildKernelFieldData_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt i, 1810183ed61SJeremy L Thompson CeedOperatorField op_field, CeedQFunctionField qf_field, FieldReuse_Cuda field_reuse, 1820183ed61SJeremy L Thompson CeedInt max_dim, CeedInt Q, CeedInt Q_1d, bool is_input, bool is_all_tensor, bool is_at_points, 1830183ed61SJeremy L Thompson bool use_3d_slices) { 184412e5683SJeremy L Thompson bool is_tensor = true; 185412e5683SJeremy L Thompson CeedBasis basis; 186412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_field, &basis)); 187412e5683SJeremy L Thompson if (basis != CEED_BASIS_NONE) CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 188412e5683SJeremy L Thompson 18959fa3f92SJeremy L Thompson const char *field_name; 1904b3e95d5SJeremy L Thompson std::string var_suffix = (is_input ? "_in_" : "_out_") + std::to_string(i); 191dc007f05SJeremy L Thompson std::string P_name = (is_tensor ? "P_1d" : "P") + var_suffix, Q_name = is_tensor ? "Q_1d" : "Q"; 1924b3e95d5SJeremy L Thompson std::string option_name = (is_input ? "inputs" : "outputs"); 1934b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 1948014c5e7SJeremy L Thompson CeedInt elem_size = 0, num_comp = 0, dim = max_dim, P_1d = 0; 1954b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 1964b3e95d5SJeremy L Thompson CeedBasis_Cuda_shared *basis_data; 1974b3e95d5SJeremy L Thompson 1980a2a6492SJeremy L Thompson // Field reuse info 19945a787f7SJeremy L Thompson bool use_previous_field = field_reuse.index != -1; 2000a2a6492SJeremy L Thompson 20159fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_field, &field_name)); 2020183ed61SJeremy L Thompson code << tab << "// -- " << (is_input ? "Input" : "Output") << " field " << i << ": " << field_name << "\n"; 2034b3e95d5SJeremy L Thompson 2044b3e95d5SJeremy L Thompson // Get field data 2054b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_field, &elem_rstr)); 2064b3e95d5SJeremy L Thompson if (elem_rstr != CEED_ELEMRESTRICTION_NONE) { 2074b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 2084b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 2094b3e95d5SJeremy L Thompson } 210681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 2114b3e95d5SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 2124b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &basis_data)); 213412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &dim)); 214dc007f05SJeremy L Thompson if (is_tensor) CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 215dc007f05SJeremy L Thompson else CeedCallBackend(CeedBasisGetNumNodes(basis, &P_1d)); 2164b3e95d5SJeremy L Thompson } 2174b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_field, &eval_mode)); 2184b3e95d5SJeremy L Thompson 2194b3e95d5SJeremy L Thompson // Set field constants 2200183ed61SJeremy L Thompson code << tab << "const CeedInt dim" << var_suffix << " = " << dim << ";\n"; 221412e5683SJeremy L Thompson if (is_tensor && !is_all_tensor) { 222412e5683SJeremy L Thompson CeedInt P = 0; 223412e5683SJeremy L Thompson 224412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes(basis, &P)); 2250183ed61SJeremy L Thompson code << tab << "const CeedInt P" << var_suffix << " = " << (basis == CEED_BASIS_NONE ? Q : P) << ";\n"; 226412e5683SJeremy L Thompson } 2270183ed61SJeremy L Thompson code << tab << "const CeedInt " << P_name << " = " << (basis == CEED_BASIS_NONE ? Q_1d : P_1d) << ";\n"; 228343e3094SJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) { 2290183ed61SJeremy L Thompson code << tab << "const CeedInt num_comp" << var_suffix << " = " << num_comp << ";\n"; 2304b3e95d5SJeremy L Thompson } 2314b3e95d5SJeremy L Thompson 2324b3e95d5SJeremy L Thompson // Load basis data 2330183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 2344b3e95d5SJeremy L Thompson switch (eval_mode) { 2354b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 2364b3e95d5SJeremy L Thompson break; 2374b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 2388b97b69aSJeremy L Thompson if (is_at_points) { 2398b97b69aSJeremy L Thompson // AtPoints 2408b97b69aSJeremy L Thompson if (!basis_data->d_chebyshev_interp_1d) { 2418b97b69aSJeremy L Thompson CeedSize interp_bytes; 2428b97b69aSJeremy L Thompson CeedScalar *chebyshev_interp_1d; 2438b97b69aSJeremy L Thompson 2448b97b69aSJeremy L Thompson interp_bytes = P_1d * Q_1d * sizeof(CeedScalar); 2458b97b69aSJeremy L Thompson CeedCallBackend(CeedCalloc(P_1d * Q_1d, &chebyshev_interp_1d)); 2468b97b69aSJeremy L Thompson CeedCallBackend(CeedBasisGetChebyshevInterp1D(basis, chebyshev_interp_1d)); 2478b97b69aSJeremy L Thompson CeedCallCuda(CeedBasisReturnCeed(basis), cudaMalloc((void **)&basis_data->d_chebyshev_interp_1d, interp_bytes)); 2488b97b69aSJeremy L Thompson CeedCallCuda(CeedBasisReturnCeed(basis), 2498b97b69aSJeremy L Thompson cudaMemcpy(basis_data->d_chebyshev_interp_1d, chebyshev_interp_1d, interp_bytes, cudaMemcpyHostToDevice)); 2508b97b69aSJeremy L Thompson CeedCallBackend(CeedFree(&chebyshev_interp_1d)); 2518b97b69aSJeremy L Thompson } 2528b97b69aSJeremy L Thompson if (is_input) data->B.inputs[i] = basis_data->d_chebyshev_interp_1d; 2538b97b69aSJeremy L Thompson else data->B.outputs[i] = basis_data->d_chebyshev_interp_1d; 2548b97b69aSJeremy L Thompson } else { 2558b97b69aSJeremy L Thompson // Standard quadrature 2564b3e95d5SJeremy L Thompson if (is_input) data->B.inputs[i] = basis_data->d_interp_1d; 2574b3e95d5SJeremy L Thompson else data->B.outputs[i] = basis_data->d_interp_1d; 2588b97b69aSJeremy L Thompson } 2590a2a6492SJeremy L Thompson if (use_previous_field) { 26045a787f7SJeremy L Thompson std::string reuse_var = "s_B" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 2610a2a6492SJeremy L Thompson 2620183ed61SJeremy L Thompson code << tab << "CeedScalar *s_B" << var_suffix << " = " << reuse_var << ";\n"; 2630a2a6492SJeremy L Thompson } else { 264*0ccda8ebSJeremy L Thompson bool is_collocated = false; 265*0ccda8ebSJeremy L Thompson 266*0ccda8ebSJeremy L Thompson CeedCallBackend(CeedBasisIsCollocated(basis, &is_collocated)); 267*0ccda8ebSJeremy L Thompson if (is_collocated && !is_at_points) { 268*0ccda8ebSJeremy L Thompson code << tab << "CeedScalar *s_B" << var_suffix << " = NULL;\n"; 269*0ccda8ebSJeremy L Thompson } else { 2700183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_B" << var_suffix << "[" << P_name << "*" << Q_name << "];\n"; 2710183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << P_name << ", " << Q_name << ">(data, B." << option_name << "[" << i << "], s_B" << var_suffix << ");\n"; 2720a2a6492SJeremy L Thompson } 273*0ccda8ebSJeremy L Thompson } 2744b3e95d5SJeremy L Thompson break; 2754b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 2768b97b69aSJeremy L Thompson if (is_at_points) { 2778b97b69aSJeremy L Thompson // AtPoints 2788b97b69aSJeremy L Thompson if (!basis_data->d_chebyshev_interp_1d) { 2798b97b69aSJeremy L Thompson CeedSize interp_bytes; 2808b97b69aSJeremy L Thompson CeedScalar *chebyshev_interp_1d; 2818b97b69aSJeremy L Thompson 2828b97b69aSJeremy L Thompson interp_bytes = P_1d * Q_1d * sizeof(CeedScalar); 2838b97b69aSJeremy L Thompson CeedCallBackend(CeedCalloc(P_1d * Q_1d, &chebyshev_interp_1d)); 2848b97b69aSJeremy L Thompson CeedCallBackend(CeedBasisGetChebyshevInterp1D(basis, chebyshev_interp_1d)); 2858b97b69aSJeremy L Thompson CeedCallCuda(CeedBasisReturnCeed(basis), cudaMalloc((void **)&basis_data->d_chebyshev_interp_1d, interp_bytes)); 2868b97b69aSJeremy L Thompson CeedCallCuda(CeedBasisReturnCeed(basis), 2878b97b69aSJeremy L Thompson cudaMemcpy(basis_data->d_chebyshev_interp_1d, chebyshev_interp_1d, interp_bytes, cudaMemcpyHostToDevice)); 2888b97b69aSJeremy L Thompson CeedCallBackend(CeedFree(&chebyshev_interp_1d)); 2898b97b69aSJeremy L Thompson } 2908b97b69aSJeremy L Thompson if (is_input) data->B.inputs[i] = basis_data->d_chebyshev_interp_1d; 2918b97b69aSJeremy L Thompson else data->B.outputs[i] = basis_data->d_chebyshev_interp_1d; 2928b97b69aSJeremy L Thompson } else { 2938b97b69aSJeremy L Thompson // Standard quadrature 2944b3e95d5SJeremy L Thompson if (is_input) data->B.inputs[i] = basis_data->d_interp_1d; 2954b3e95d5SJeremy L Thompson else data->B.outputs[i] = basis_data->d_interp_1d; 2968b97b69aSJeremy L Thompson } 297dc007f05SJeremy L Thompson if (is_tensor) { 2980a2a6492SJeremy L Thompson if (use_previous_field) { 29945a787f7SJeremy L Thompson std::string reuse_var = "s_B" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 3000a2a6492SJeremy L Thompson 3010183ed61SJeremy L Thompson code << tab << "CeedScalar *s_B" << var_suffix << " = " << reuse_var << ";\n"; 3020a2a6492SJeremy L Thompson } else { 303*0ccda8ebSJeremy L Thompson bool is_collocated = false; 304*0ccda8ebSJeremy L Thompson 305*0ccda8ebSJeremy L Thompson CeedCallBackend(CeedBasisIsCollocated(basis, &is_collocated)); 306*0ccda8ebSJeremy L Thompson if (is_collocated && !is_at_points) { 307*0ccda8ebSJeremy L Thompson code << tab << "CeedScalar *s_B" << var_suffix << " = NULL;\n"; 308*0ccda8ebSJeremy L Thompson } else { 3090183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_B" << var_suffix << "[" << P_name << "*" << Q_name << "];\n"; 3100183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << P_name << ", " << Q_name << ">(data, B." << option_name << "[" << i << "], s_B" << var_suffix << ");\n"; 311dc007f05SJeremy L Thompson } 3120a2a6492SJeremy L Thompson } 313*0ccda8ebSJeremy L Thompson } 3148b97b69aSJeremy L Thompson if (is_at_points) break; // No G mat for AtPoints 3154b3e95d5SJeremy L Thompson if (use_3d_slices) { 3164b3e95d5SJeremy L Thompson if (is_input) data->G.inputs[i] = basis_data->d_collo_grad_1d; 3174b3e95d5SJeremy L Thompson else data->G.outputs[i] = basis_data->d_collo_grad_1d; 31845a787f7SJeremy L Thompson if (use_previous_field && field_reuse.eval_mode == CEED_EVAL_GRAD) { 31945a787f7SJeremy L Thompson std::string reuse_var = "s_G" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 3200a2a6492SJeremy L Thompson 3210183ed61SJeremy L Thompson code << tab << "CeedScalar *s_G" << var_suffix << " = " << reuse_var << ";\n"; 3220a2a6492SJeremy L Thompson } else { 3230183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_G" << var_suffix << "[" << Q_name << "*" << Q_name << "];\n"; 3240183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << Q_name << ", " << Q_name << ">(data, G." << option_name << "[" << i << "], s_G" << var_suffix << ");\n"; 3250a2a6492SJeremy L Thompson } 3264b3e95d5SJeremy L Thompson } else { 3274b3e95d5SJeremy L Thompson bool has_collo_grad = basis_data->d_collo_grad_1d; 3284b3e95d5SJeremy L Thompson 3294b3e95d5SJeremy L Thompson if (is_input) data->G.inputs[i] = has_collo_grad ? basis_data->d_collo_grad_1d : basis_data->d_grad_1d; 3304b3e95d5SJeremy L Thompson else data->G.outputs[i] = has_collo_grad ? basis_data->d_collo_grad_1d : basis_data->d_grad_1d; 3314b3e95d5SJeremy L Thompson if (has_collo_grad) { 33245a787f7SJeremy L Thompson if (use_previous_field && field_reuse.eval_mode == CEED_EVAL_GRAD) { 33345a787f7SJeremy L Thompson std::string reuse_var = "s_G" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 3340a2a6492SJeremy L Thompson 3350183ed61SJeremy L Thompson code << tab << "CeedScalar *s_G" << var_suffix << " = " << reuse_var << ";\n"; 3360a2a6492SJeremy L Thompson } else { 3370183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_G" << var_suffix << "[" << Q_name << "*" << Q_name << "];\n"; 3380183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << Q_name << ", " << Q_name << ">(data, G." << option_name << "[" << i << "], s_G" << var_suffix << ");\n"; 3390a2a6492SJeremy L Thompson } 3400a2a6492SJeremy L Thompson } else { 34145a787f7SJeremy L Thompson if (use_previous_field && field_reuse.eval_mode == CEED_EVAL_GRAD) { 34245a787f7SJeremy L Thompson std::string reuse_var = "s_G" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 3430a2a6492SJeremy L Thompson 3440183ed61SJeremy L Thompson code << tab << "CeedScalar *s_G" << var_suffix << " = " << reuse_var << ";\n"; 3454b3e95d5SJeremy L Thompson } else { 3460183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_G" << var_suffix << "[" << P_name << "*" << Q_name << (is_tensor ? "" : "*dim") 347412e5683SJeremy L Thompson << (is_tensor ? "" : var_suffix) << "];\n"; 3480183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << P_name << ", " << Q_name << (is_tensor ? "" : "*dim") << (is_tensor ? "" : var_suffix) << ">(data, G." 349412e5683SJeremy L Thompson << option_name << "[" << i << "], s_G" << var_suffix << ");\n"; 3504b3e95d5SJeremy L Thompson } 3514b3e95d5SJeremy L Thompson } 3520a2a6492SJeremy L Thompson } 3534b3e95d5SJeremy L Thompson break; 3544b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 3554b3e95d5SJeremy L Thompson break; // No action 3564b3e95d5SJeremy L Thompson // LCOV_EXCL_START 3574b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 3584b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 3594b3e95d5SJeremy L Thompson break; // TODO: Not implemented 3604b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 3614b3e95d5SJeremy L Thompson } 3628b97b69aSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 3634b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 3644b3e95d5SJeremy L Thompson } 3654b3e95d5SJeremy L Thompson 3664b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 3674b3e95d5SJeremy L Thompson // Restriction 3684b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 3690183ed61SJeremy L Thompson static int CeedOperatorBuildKernelRestriction_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt i, 3700183ed61SJeremy L Thompson CeedInt field_input_buffer[], CeedOperatorField op_field, CeedQFunctionField qf_field, 3710183ed61SJeremy L Thompson CeedInt max_dim, CeedInt Q_1d, bool is_input, bool is_all_tensor, bool is_at_points, 3720183ed61SJeremy L Thompson bool use_3d_slices) { 3734b3e95d5SJeremy L Thompson std::string var_suffix = (is_input ? "_in_" : "_out_") + std::to_string(i); 374412e5683SJeremy L Thompson std::string P_name = (is_all_tensor ? "P_1d" : "P") + var_suffix; 3754b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 376412e5683SJeremy L Thompson CeedInt elem_size = 0, num_comp = 0; 3774b3e95d5SJeremy L Thompson CeedSize l_size; 378f815fac9SJeremy L Thompson CeedRestrictionType rstr_type = CEED_RESTRICTION_STANDARD; 3794b3e95d5SJeremy L Thompson CeedElemRestriction_Cuda *rstr_data; 3804b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 3814b3e95d5SJeremy L Thompson 3824b3e95d5SJeremy L Thompson // Get field data 3834b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_field, &elem_rstr)); 3844b3e95d5SJeremy L Thompson if (elem_rstr != CEED_ELEMRESTRICTION_NONE) { 385f815fac9SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetType(elem_rstr, &rstr_type)); 3864b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 3874b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 3884b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetData(elem_rstr, &rstr_data)); 3894b3e95d5SJeremy L Thompson } 3904b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_field, &eval_mode)); 3914b3e95d5SJeremy L Thompson 3924b3e95d5SJeremy L Thompson // Restriction 3934b3e95d5SJeremy L Thompson if (is_input) { 3944b3e95d5SJeremy L Thompson // Input 395e93651e5SJeremy L Thompson if (field_input_buffer[i] != i) { 396e93651e5SJeremy L Thompson std::string buffer_name = "r_e_in_" + std::to_string(field_input_buffer[i]); 397e93651e5SJeremy L Thompson 398e93651e5SJeremy L Thompson // Restriction was already done for previous input 3990183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = " << buffer_name << ";\n"; 4008b97b69aSJeremy L Thompson } else if (eval_mode != CEED_EVAL_WEIGHT && !((eval_mode == CEED_EVAL_NONE) && use_3d_slices && is_at_points)) { 4018b97b69aSJeremy L Thompson if (eval_mode == CEED_EVAL_NONE && rstr_type != CEED_RESTRICTION_POINTS) { 402e93651e5SJeremy L Thompson // No basis action, so r_e_in_* in also r_q_in_* and needs to be allocated 4030183ed61SJeremy L Thompson code << tab << "CeedScalar r_e" << var_suffix << "[num_comp" << var_suffix << "*" << P_name << "];\n"; 4048b97b69aSJeremy L Thompson } else if (rstr_type != CEED_RESTRICTION_POINTS) { 405e93651e5SJeremy L Thompson // Otherwise we're using the scratch space 4060183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_scratch;\n"; 407e93651e5SJeremy L Thompson } 408f815fac9SJeremy L Thompson switch (rstr_type) { 409f815fac9SJeremy L Thompson case CEED_RESTRICTION_STANDARD: { 4104b3e95d5SJeremy L Thompson CeedInt comp_stride; 4114b3e95d5SJeremy L Thompson 4124b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 4130183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 4144b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 4150183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 4164b3e95d5SJeremy L Thompson data->indices.inputs[i] = (CeedInt *)rstr_data->d_offsets; 4170183ed61SJeremy L Thompson code << tab << "ReadLVecStandard" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", " 4180183ed61SJeremy L Thompson << P_name << ">(data, l_size" << var_suffix << ", elem, indices.inputs[" << i << "], d" << var_suffix << ", r_e" << var_suffix 4190183ed61SJeremy L Thompson << ");\n"; 420f815fac9SJeremy L Thompson break; 421f815fac9SJeremy L Thompson } 422f815fac9SJeremy L Thompson case CEED_RESTRICTION_STRIDED: { 4234b3e95d5SJeremy L Thompson bool has_backend_strides; 4244b3e95d5SJeremy L Thompson CeedInt num_elem; 4254b3e95d5SJeremy L Thompson 4264b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionHasBackendStrides(elem_rstr, &has_backend_strides)); 4274b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumElements(elem_rstr, &num_elem)); 4284b3e95d5SJeremy L Thompson CeedInt strides[3] = {1, elem_size * num_elem, elem_size}; 4294b3e95d5SJeremy L Thompson 4304b3e95d5SJeremy L Thompson if (!has_backend_strides) { 4314b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetStrides(elem_rstr, strides)); 4324b3e95d5SJeremy L Thompson } 4330183ed61SJeremy L Thompson code << tab << "const CeedInt strides" << var_suffix << "_0 = " << strides[0] << ", strides" << var_suffix << "_1 = " << strides[1] 4340183ed61SJeremy L Thompson << ", strides" << var_suffix << "_2 = " << strides[2] << ";\n"; 4350183ed61SJeremy L Thompson code << tab << "ReadLVecStrided" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", " << P_name << ", strides" 4360183ed61SJeremy L Thompson << var_suffix << "_0, strides" << var_suffix << "_1, strides" << var_suffix << "_2>(data, elem, d" << var_suffix << ", r_e" 4370183ed61SJeremy L Thompson << var_suffix << ");\n"; 438f815fac9SJeremy L Thompson break; 439f815fac9SJeremy L Thompson } 4408b97b69aSJeremy L Thompson case CEED_RESTRICTION_POINTS: { 4418b97b69aSJeremy L Thompson CeedInt comp_stride; 4428b97b69aSJeremy L Thompson 4438b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 4440183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 4458b97b69aSJeremy L Thompson data->indices.inputs[i] = (CeedInt *)rstr_data->d_offsets; 4468b97b69aSJeremy L Thompson break; 4478b97b69aSJeremy L Thompson } 448f815fac9SJeremy L Thompson // LCOV_EXCL_START 449f815fac9SJeremy L Thompson case CEED_RESTRICTION_ORIENTED: 450f815fac9SJeremy L Thompson case CEED_RESTRICTION_CURL_ORIENTED: 451f815fac9SJeremy L Thompson break; // TODO: Not implemented 452f815fac9SJeremy L Thompson // LCOV_EXCL_STOP 4534b3e95d5SJeremy L Thompson } 4544b3e95d5SJeremy L Thompson } 4554b3e95d5SJeremy L Thompson } else { 4564b3e95d5SJeremy L Thompson // Output 457f815fac9SJeremy L Thompson switch (rstr_type) { 458f815fac9SJeremy L Thompson case CEED_RESTRICTION_STANDARD: { 4594b3e95d5SJeremy L Thompson CeedInt comp_stride; 4604b3e95d5SJeremy L Thompson 4614b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 4620183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 4634b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 4640183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 4654b3e95d5SJeremy L Thompson data->indices.outputs[i] = (CeedInt *)rstr_data->d_offsets; 4660183ed61SJeremy L Thompson code << tab << "WriteLVecStandard" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", " 4670183ed61SJeremy L Thompson << P_name << ">(data, l_size" << var_suffix << ", elem, indices.outputs[" << i << "], r_e" << var_suffix << ", d" << var_suffix 4680183ed61SJeremy L Thompson << ");\n"; 469f815fac9SJeremy L Thompson break; 470f815fac9SJeremy L Thompson } 471f815fac9SJeremy L Thompson case CEED_RESTRICTION_STRIDED: { 4724b3e95d5SJeremy L Thompson bool has_backend_strides; 4734b3e95d5SJeremy L Thompson CeedInt num_elem; 4744b3e95d5SJeremy L Thompson 4754b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionHasBackendStrides(elem_rstr, &has_backend_strides)); 4764b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumElements(elem_rstr, &num_elem)); 4774b3e95d5SJeremy L Thompson CeedInt strides[3] = {1, elem_size * num_elem, elem_size}; 4784b3e95d5SJeremy L Thompson 4794b3e95d5SJeremy L Thompson if (!has_backend_strides) { 4804b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetStrides(elem_rstr, strides)); 4814b3e95d5SJeremy L Thompson } 4820183ed61SJeremy L Thompson code << tab << "const CeedInt strides" << var_suffix << "_0 = " << strides[0] << ", strides" << var_suffix << "_1 = " << strides[1] 4830183ed61SJeremy L Thompson << ", strides" << var_suffix << "_2 = " << strides[2] << ";\n"; 4840183ed61SJeremy L Thompson code << tab << "WriteLVecStrided" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", " << P_name << ", strides" 4850183ed61SJeremy L Thompson << var_suffix << "_0, strides" << var_suffix << "_1, strides" << var_suffix << "_2>(data, elem, r_e" << var_suffix << ", d" << var_suffix 4860183ed61SJeremy L Thompson << ");\n"; 487f815fac9SJeremy L Thompson break; 488f815fac9SJeremy L Thompson } 4898b97b69aSJeremy L Thompson case CEED_RESTRICTION_POINTS: 4908b97b69aSJeremy L Thompson data->indices.outputs[i] = (CeedInt *)rstr_data->d_offsets; 4918b97b69aSJeremy L Thompson break; 492f815fac9SJeremy L Thompson // LCOV_EXCL_START 493f815fac9SJeremy L Thompson case CEED_RESTRICTION_ORIENTED: 494f815fac9SJeremy L Thompson case CEED_RESTRICTION_CURL_ORIENTED: 495f815fac9SJeremy L Thompson break; // TODO: Not implemented 496f815fac9SJeremy L Thompson // LCOV_EXCL_STOP 4974b3e95d5SJeremy L Thompson } 4984b3e95d5SJeremy L Thompson } 499681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 5004b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 5014b3e95d5SJeremy L Thompson } 5024b3e95d5SJeremy L Thompson 5034b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 5044b3e95d5SJeremy L Thompson // Basis 5054b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 5060183ed61SJeremy L Thompson static int CeedOperatorBuildKernelBasis_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt i, 5070183ed61SJeremy L Thompson CeedOperatorField op_field, CeedQFunctionField qf_field, CeedInt max_dim, CeedInt Q_1d, 5080183ed61SJeremy L Thompson bool is_input, bool is_all_tensor, bool is_at_points, bool use_3d_slices) { 509*0ccda8ebSJeremy L Thompson bool is_tensor = true, is_collocated = true; 510412e5683SJeremy L Thompson CeedBasis basis; 511412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_field, &basis)); 512412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 513*0ccda8ebSJeremy L Thompson CeedCallBackend(CeedBasisIsCollocated(basis, &is_collocated)); 514412e5683SJeremy L Thompson 5154b3e95d5SJeremy L Thompson std::string var_suffix = (is_input ? "_in_" : "_out_") + std::to_string(i); 516dc007f05SJeremy L Thompson std::string P_name = (is_tensor ? "P_1d" : "P") + var_suffix, Q_name = is_tensor ? "Q_1d" : "Q"; 5174b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 518412e5683SJeremy L Thompson CeedInt dim = max_dim, elem_size = 0, num_comp = 0, P_1d = 0; 5194b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 5204b3e95d5SJeremy L Thompson 5214b3e95d5SJeremy L Thompson // Get field data 5224b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_field, &elem_rstr)); 5234b3e95d5SJeremy L Thompson if (elem_rstr != CEED_ELEMRESTRICTION_NONE) { 5244b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 5254b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 5264b3e95d5SJeremy L Thompson } 527681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 5284b3e95d5SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 529412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &dim)); 530dc007f05SJeremy L Thompson if (is_tensor) CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 531dc007f05SJeremy L Thompson else CeedCallBackend(CeedBasisGetNumNodes(basis, &P_1d)); 5324b3e95d5SJeremy L Thompson } 5334b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_field, &eval_mode)); 5344b3e95d5SJeremy L Thompson 5354b3e95d5SJeremy L Thompson // Basis 5360183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 5374b3e95d5SJeremy L Thompson if (is_input) { 5384b3e95d5SJeremy L Thompson switch (eval_mode) { 5394b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 5408b97b69aSJeremy L Thompson if (!use_3d_slices && !is_at_points) { 5410183ed61SJeremy L Thompson code << tab << "CeedScalar *r_q" << var_suffix << " = r_e" << var_suffix << ";\n"; 5424b3e95d5SJeremy L Thompson } 5434b3e95d5SJeremy L Thompson break; 5444b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 5458b97b69aSJeremy L Thompson if (is_at_points) { 546dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "Interp" : "InterpTensor") + std::to_string(dim) + "d"; 547dc007f05SJeremy L Thompson 5480183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (dim >= 3 ? Q_name : "1") << "];\n"; 5490183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_e" << var_suffix 55099421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_c" << var_suffix << ");\n"; 5518b97b69aSJeremy L Thompson } else { 552*0ccda8ebSJeremy L Thompson std::string function_name = is_tensor ? ((dim == 1 ? "Interp" : "InterpTensor") + std::string(is_collocated ? "CollocatedNodes" : "") + 553*0ccda8ebSJeremy L Thompson std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")) 554412e5683SJeremy L Thompson : "InterpNonTensor"; 555c433aabcSJeremy L Thompson std::string op_t_1d_name = (is_all_tensor || !is_tensor) ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 556dc007f05SJeremy L Thompson 5570183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << (is_all_tensor && (dim >= 3) ? Q_name : "1") << "];\n"; 5580183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_e" 559c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", r_q" << var_suffix << ");\n"; 5608b97b69aSJeremy L Thompson } 5614b3e95d5SJeremy L Thompson break; 5624b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 5638b97b69aSJeremy L Thompson if (is_at_points) { 564dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "Interp" : "InterpTensor") + std::to_string(dim) + "d"; 565dc007f05SJeremy L Thompson 5660183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (dim >= 3 ? Q_name : "1") << "];\n"; 5670183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_e" << var_suffix 56899421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_c" << var_suffix << ");\n"; 5698b97b69aSJeremy L Thompson } else if (use_3d_slices) { 570*0ccda8ebSJeremy L Thompson std::string function_name = 571*0ccda8ebSJeremy L Thompson (dim > 1 ? "InterpTensor" : "Interp") + std::string(is_collocated ? "CollocatedNodes" : "") + std::to_string(dim) + "d"; 572dc007f05SJeremy L Thompson 5730183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << Q_name << "];\n"; 5740183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_e" << var_suffix 57599421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_q" << var_suffix << ");\n"; 576dc007f05SJeremy L Thompson } else if (is_tensor) { 577*0ccda8ebSJeremy L Thompson bool is_collocated_grad = dim == 3 && Q_1d >= P_1d; 578*0ccda8ebSJeremy L Thompson std::string function_name = 579*0ccda8ebSJeremy L Thompson (dim == 1 ? "Grad" 580*0ccda8ebSJeremy L Thompson : ("GradTensor" + std::string(is_collocated ? "CollocatedNodes" : (is_collocated_grad ? "Collocated" : ""))) + 581*0ccda8ebSJeremy L Thompson std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")); 582c433aabcSJeremy L Thompson std::string op_t_1d_name = is_all_tensor ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 583dc007f05SJeremy L Thompson 5840183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "*" 585259057edSJeremy L Thompson << (is_all_tensor && dim >= 3 ? Q_name : "1") << "];\n"; 5860183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_e" 587c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", s_G" << var_suffix << ", r_q" << var_suffix << ");\n"; 5884b3e95d5SJeremy L Thompson } else { 589dc007f05SJeremy L Thompson std::string function_name = "GradNonTensor"; 590dc007f05SJeremy L Thompson 5910183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 5920183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", dim" << var_suffix << ", " << P_name << ", " << Q_name 593c433aabcSJeremy L Thompson << ", OP_T_1D>(data, r_e" << var_suffix << ", s_G" << var_suffix << ", r_q" << var_suffix << ");\n"; 5944b3e95d5SJeremy L Thompson } 5954b3e95d5SJeremy L Thompson break; 5964b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: { 5978b97b69aSJeremy L Thompson if (is_at_points) { 5980183ed61SJeremy L Thompson code << tab << "// Nothing to do AtPoints\n"; 5998b97b69aSJeremy L Thompson } else { 6004b3e95d5SJeremy L Thompson CeedBasis_Cuda_shared *basis_data; 601412e5683SJeremy L Thompson std::string function_name = is_tensor 602412e5683SJeremy L Thompson ? ((dim == 1 ? "Weight" : "WeightTensor") + std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")) 603412e5683SJeremy L Thompson : "WeightNonTensor"; 6044b3e95d5SJeremy L Thompson 6050183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[" << (is_all_tensor && (dim >= 3) ? Q_name : "1") << "];\n"; 6064b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &basis_data)); 6074b3e95d5SJeremy L Thompson data->W = basis_data->d_q_weight_1d; 6080183ed61SJeremy L Thompson code << tab << function_name << "<" << P_name << ", " << Q_name << ">(data, W, r_q" << var_suffix << ");\n"; 6098b97b69aSJeremy L Thompson } 6104b3e95d5SJeremy L Thompson break; 6114b3e95d5SJeremy L Thompson } 6124b3e95d5SJeremy L Thompson // LCOV_EXCL_START 6134b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 6144b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 6154b3e95d5SJeremy L Thompson break; // TODO: Not implemented 6164b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 6174b3e95d5SJeremy L Thompson } 6184b3e95d5SJeremy L Thompson } else { 6194b3e95d5SJeremy L Thompson switch (eval_mode) { 6204b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 6210183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_q" << var_suffix << ";\n"; 6224b3e95d5SJeremy L Thompson break; // No action 6234b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 6240183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_scratch;\n"; 6258b97b69aSJeremy L Thompson if (is_at_points) { 626dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::to_string(dim) + "d"; 627dc007f05SJeremy L Thompson 6280183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_c" << var_suffix 62999421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 6308b97b69aSJeremy L Thompson } else { 631dc007f05SJeremy L Thompson std::string function_name = 632*0ccda8ebSJeremy L Thompson is_tensor ? ((dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::string(is_collocated ? "CollocatedNodes" : "") + 633*0ccda8ebSJeremy L Thompson std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")) 634412e5683SJeremy L Thompson : "InterpTransposeNonTensor"; 635c433aabcSJeremy L Thompson std::string op_t_1d_name = (is_all_tensor || !is_tensor) ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 636dc007f05SJeremy L Thompson 6370183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_q" 638c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 6398b97b69aSJeremy L Thompson } 6404b3e95d5SJeremy L Thompson break; 6414b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 6420183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_scratch;\n"; 6438b97b69aSJeremy L Thompson if (is_at_points) { 644dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::to_string(dim) + "d"; 645dc007f05SJeremy L Thompson 6460183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_c" << var_suffix 64799421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 6488b97b69aSJeremy L Thompson } else if (use_3d_slices) { 649*0ccda8ebSJeremy L Thompson std::string function_name = (dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::string(is_collocated ? "CollocatedNodes" : "") + 650*0ccda8ebSJeremy L Thompson std::to_string(dim) + "d"; 651dc007f05SJeremy L Thompson 6520183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_q" << var_suffix 65399421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 654dc007f05SJeremy L Thompson } else if (is_tensor) { 655*0ccda8ebSJeremy L Thompson bool is_collocated_grad = dim == 3 && Q_1d >= P_1d; 656*0ccda8ebSJeremy L Thompson std::string function_name = 657*0ccda8ebSJeremy L Thompson (dim == 1 ? "GradTranspose" 658*0ccda8ebSJeremy L Thompson : ("GradTransposeTensor" + std::string(is_collocated ? "CollocatedNodes" : (is_collocated_grad ? "Collocated" : "")))) + 659412e5683SJeremy L Thompson std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened"); 660c433aabcSJeremy L Thompson std::string op_t_1d_name = is_all_tensor ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 661dc007f05SJeremy L Thompson 6620183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_q" 663c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", s_G" << var_suffix << ", r_e" << var_suffix << ");\n"; 6644b3e95d5SJeremy L Thompson } else { 665dc007f05SJeremy L Thompson std::string function_name = "GradTransposeNonTensor"; 666dc007f05SJeremy L Thompson 6670183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", dim" << var_suffix << ", " << P_name << ", " << Q_name 668c433aabcSJeremy L Thompson << ", OP_T_1D>(data, r_q" << var_suffix << ", s_G" << var_suffix << ", r_e" << var_suffix << ");\n"; 6694b3e95d5SJeremy L Thompson } 6704b3e95d5SJeremy L Thompson break; 6714b3e95d5SJeremy L Thompson // LCOV_EXCL_START 6724b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 6734b3e95d5SJeremy L Thompson break; // Should not occur 6744b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 6754b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 6764b3e95d5SJeremy L Thompson break; // TODO: Not implemented 6774b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 6784b3e95d5SJeremy L Thompson } 6794b3e95d5SJeremy L Thompson } 680681d0ea7SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 6814b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 6824b3e95d5SJeremy L Thompson } 6834b3e95d5SJeremy L Thompson 6844b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 6854b3e95d5SJeremy L Thompson // QFunction 6864b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 6870183ed61SJeremy L Thompson static int CeedOperatorBuildKernelQFunction_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt max_dim, 6880183ed61SJeremy L Thompson CeedInt max_num_points, CeedInt num_input_fields, CeedOperatorField *op_input_fields, 6898b97b69aSJeremy L Thompson CeedQFunctionField *qf_input_fields, CeedInt num_output_fields, 6908b97b69aSJeremy L Thompson CeedOperatorField *op_output_fields, CeedQFunctionField *qf_output_fields, 691412e5683SJeremy L Thompson std::string qfunction_name, CeedInt Q_1d, bool is_all_tensor, bool is_at_points, 692dc007f05SJeremy L Thompson bool use_3d_slices) { 693412e5683SJeremy L Thompson std::string Q_name = is_all_tensor ? "Q_1d" : "Q"; 6944b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 6954b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 6964b3e95d5SJeremy L Thompson 6978b97b69aSJeremy L Thompson // Setup output arrays 6980183ed61SJeremy L Thompson code << "\n"; 6990183ed61SJeremy L Thompson code << tab << "// -- Output field setup\n"; 7004b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 70159fa3f92SJeremy L Thompson const char *field_name; 7024b3e95d5SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 7034b3e95d5SJeremy L Thompson 70459fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 7050183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 7064b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 7078b97b69aSJeremy L Thompson switch (eval_mode) { 7088b97b69aSJeremy L Thompson case CEED_EVAL_NONE: 7098b97b69aSJeremy L Thompson if (is_at_points) { 7100183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7118b97b69aSJeremy L Thompson } else { 7120183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << (is_all_tensor && (max_dim >= 3) ? Q_name : "1") 713412e5683SJeremy L Thompson << "];\n"; 7144b3e95d5SJeremy L Thompson } 7158b97b69aSJeremy L Thompson break; 7168b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 7178b97b69aSJeremy L Thompson if (is_at_points) { 7188b97b69aSJeremy L Thompson // Accumulator for point data 7190183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "];\n"; 7200183ed61SJeremy L Thompson code << tab << "for (CeedInt i = 0; i < num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "; i++) r_c" << var_suffix 721b8245c6cSJeremy L Thompson << "[i] = 0.0;\n"; 7228b97b69aSJeremy L Thompson } else { 7230183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << (is_all_tensor && (max_dim >= 3) ? Q_name : "1") 724412e5683SJeremy L Thompson << "];\n"; 7258b97b69aSJeremy L Thompson } 7268b97b69aSJeremy L Thompson break; 7278b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 7288b97b69aSJeremy L Thompson if (is_at_points) { 7298b97b69aSJeremy L Thompson // Accumulator for point data 7300183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "];\n"; 7310183ed61SJeremy L Thompson code << tab << "for (CeedInt i = 0; i < num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "; i++) r_c" << var_suffix 732b8245c6cSJeremy L Thompson << "[i] = 0.0;\n"; 7338b97b69aSJeremy L Thompson } else if (use_3d_slices) { 7344b3e95d5SJeremy L Thompson // Accumulator for gradient slices 7350183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << Q_name << "];\n"; 7360183ed61SJeremy L Thompson code << tab << "for (CeedInt i = 0; i < num_comp" << var_suffix << "*" << Q_name << "; i++) r_q" << var_suffix << "[i] = 0.0;\n"; 7374b3e95d5SJeremy L Thompson } else { 7380183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "*" 739412e5683SJeremy L Thompson << (is_all_tensor && (max_dim >= 3) ? Q_name : "1") << "];\n"; 7404b3e95d5SJeremy L Thompson } 7418b97b69aSJeremy L Thompson break; 7428b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 7438b97b69aSJeremy L Thompson break; 7448b97b69aSJeremy L Thompson // LCOV_EXCL_START 7458b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 7468b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 7478b97b69aSJeremy L Thompson break; // TODO: Not implemented 7488b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 7494b3e95d5SJeremy L Thompson } 7504b3e95d5SJeremy L Thompson } 7514b3e95d5SJeremy L Thompson 7528b97b69aSJeremy L Thompson if (is_at_points) { 7538b97b69aSJeremy L Thompson // We need to handle batches of points 7540183ed61SJeremy L Thompson code << "\n"; 7550183ed61SJeremy L Thompson code << tab << "// Note: Using batches of points\n"; 7560183ed61SJeremy L Thompson code << tab << "const CeedInt point_loop_bound = (blockDim.x*blockDim.y) * ceil((1.0*max_num_points) / (blockDim.x*blockDim.y));\n\n"; 7570183ed61SJeremy L Thompson code << tab << "#pragma unroll\n"; 7580183ed61SJeremy L Thompson code << tab << "for (CeedInt i = threadIdx.x + threadIdx.y*blockDim.x; i < point_loop_bound; i += blockDim.x*blockDim.y) {\n"; 7590183ed61SJeremy L Thompson tab.push(); 7600183ed61SJeremy L Thompson code << tab << "const CeedInt p = i % max_num_points;\n\n"; 7618b97b69aSJeremy L Thompson 7620183ed61SJeremy L Thompson code << tab << "// -- Coordinates\n"; 7630183ed61SJeremy L Thompson code << tab << "CeedScalar r_x[max_dim];\n"; 7640183ed61SJeremy L Thompson code << tab << "ReadPoint<max_dim, coords_comp_stride, max_num_points>(data, elem, p, max_num_points, points.indices, points.coords, r_x);\n\n"; 7658b97b69aSJeremy L Thompson 7660183ed61SJeremy L Thompson code << tab << "// -- Input fields\n"; 7678b97b69aSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 76859fa3f92SJeremy L Thompson const char *field_name; 7698b97b69aSJeremy L Thompson std::string var_suffix = "_in_" + std::to_string(i); 770f725b54bSJeremy L Thompson std::string P_name = "P_1d" + var_suffix; 7718b97b69aSJeremy L Thompson 77259fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 7730183ed61SJeremy L Thompson code << tab << "// ---- Input field " << i << ": " << field_name << "\n"; 7748b97b69aSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 7758b97b69aSJeremy L Thompson // Basis action 7760183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 7778b97b69aSJeremy L Thompson switch (eval_mode) { 7788b97b69aSJeremy L Thompson case CEED_EVAL_NONE: 7790183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7800183ed61SJeremy L Thompson code << tab << "ReadPoint<num_comp" << var_suffix << ", comp_stride" << var_suffix 7818b97b69aSJeremy L Thompson << ", max_num_points>(data, elem, p, max_num_points, indices.inputs[" << i << "], d" << var_suffix << ", r_s" << var_suffix << ");\n"; 7828b97b69aSJeremy L Thompson break; 7838b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 7840183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7850183ed61SJeremy L Thompson code << tab << "InterpAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 786412e5683SJeremy L Thompson << ">(data, i, r_c" << var_suffix << ", r_x, r_s" << var_suffix << ");\n"; 7878b97b69aSJeremy L Thompson break; 7888b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 7890183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 7900183ed61SJeremy L Thompson code << tab << "GradAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 791412e5683SJeremy L Thompson << ">(data, i, r_c" << var_suffix << ", r_x, r_s" << var_suffix << ");\n"; 7928b97b69aSJeremy L Thompson break; 7938b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 7940183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[1];\n"; 7950183ed61SJeremy L Thompson code << tab << "r_s" << var_suffix << "[0] = 1.0;\n"; 7968b97b69aSJeremy L Thompson break; 7978b97b69aSJeremy L Thompson // LCOV_EXCL_START 7988b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 7998b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 8008b97b69aSJeremy L Thompson break; // TODO: Not implemented 8018b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 8028b97b69aSJeremy L Thompson } 8038b97b69aSJeremy L Thompson } 8040183ed61SJeremy L Thompson code << "\n"; 8050183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 8068b97b69aSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 80759fa3f92SJeremy L Thompson const char *field_name; 8088b97b69aSJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 8098b97b69aSJeremy L Thompson 81059fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 8110183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 8128b97b69aSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 8138b97b69aSJeremy L Thompson // Basis action 8148b97b69aSJeremy L Thompson switch (eval_mode) { 8158b97b69aSJeremy L Thompson case CEED_EVAL_NONE: 8160183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 8178b97b69aSJeremy L Thompson break; 8188b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 8190183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 8208b97b69aSJeremy L Thompson break; 8218b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 8220183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 8238b97b69aSJeremy L Thompson break; 8248b97b69aSJeremy L Thompson // LCOV_EXCL_START 8258b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 8268b97b69aSJeremy L Thompson break; // Should not occur 8278b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 8288b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 8298b97b69aSJeremy L Thompson break; // TODO: Not implemented 8308b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 8318b97b69aSJeremy L Thompson } 8328b97b69aSJeremy L Thompson } 8338b97b69aSJeremy L Thompson 8348b97b69aSJeremy L Thompson } else if (use_3d_slices) { 8354b3e95d5SJeremy L Thompson // We treat quadrature points per slice in 3d to save registers 8360183ed61SJeremy L Thompson code << "\n"; 8370183ed61SJeremy L Thompson code << tab << "// Note: Using planes of 3D elements\n"; 8380183ed61SJeremy L Thompson code << tab << "#pragma unroll\n"; 8390183ed61SJeremy L Thompson code << tab << "for (CeedInt q = 0; q < " << Q_name << "; q++) {\n"; 8400183ed61SJeremy L Thompson tab.push(); 8410183ed61SJeremy L Thompson code << tab << "// -- Input fields\n"; 8424b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 84359fa3f92SJeremy L Thompson const char *field_name; 8444b3e95d5SJeremy L Thompson std::string var_suffix = "_in_" + std::to_string(i); 8454b3e95d5SJeremy L Thompson 84659fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 8470183ed61SJeremy L Thompson code << tab << "// ---- Input field " << i << ": " << field_name << "\n"; 8484b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 8494b3e95d5SJeremy L Thompson // Basis action 8500183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 8514b3e95d5SJeremy L Thompson switch (eval_mode) { 8524b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 8534b3e95d5SJeremy L Thompson bool is_strided; 8544b3e95d5SJeremy L Thompson 8550183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 8564b3e95d5SJeremy L Thompson 8574b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 8584b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionIsStrided(elem_rstr, &is_strided)); 8594b3e95d5SJeremy L Thompson if (is_strided) { 8604b3e95d5SJeremy L Thompson bool has_backend_strides; 8614b3e95d5SJeremy L Thompson CeedInt num_elem, elem_size; 8624b3e95d5SJeremy L Thompson 8634b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 8644b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionHasBackendStrides(elem_rstr, &has_backend_strides)); 8654b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumElements(elem_rstr, &num_elem)); 8664b3e95d5SJeremy L Thompson CeedInt strides[3] = {1, elem_size * num_elem, elem_size}; 8674b3e95d5SJeremy L Thompson 8684b3e95d5SJeremy L Thompson if (!has_backend_strides) { 8694b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetStrides(elem_rstr, strides)); 8704b3e95d5SJeremy L Thompson } 8710183ed61SJeremy L Thompson code << tab << "const CeedInt strides" << var_suffix << "_0 = " << strides[0] << ", strides" << var_suffix << "_1 = " << strides[1] 8720183ed61SJeremy L Thompson << ", strides" << var_suffix << "_2 = " << strides[2] << ";\n"; 8730183ed61SJeremy L Thompson code << tab << "ReadEVecSliceStrided3d<num_comp" << var_suffix << ", " << Q_name << ", strides" << var_suffix << "_0, strides" 8740183ed61SJeremy L Thompson << var_suffix << "_1, strides" << var_suffix << "_2>(data, elem, q, d" << var_suffix << ", r_s" << var_suffix << ");\n"; 8754b3e95d5SJeremy L Thompson } else { 8764b3e95d5SJeremy L Thompson CeedSize l_size = 0; 8774b3e95d5SJeremy L Thompson CeedInt comp_stride; 8784b3e95d5SJeremy L Thompson CeedElemRestriction_Cuda *rstr_data; 8794b3e95d5SJeremy L Thompson 8804b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 8810183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 8824b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 8830183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 8844b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetData(elem_rstr, &rstr_data)); 8854b3e95d5SJeremy L Thompson data->indices.inputs[i] = (CeedInt *)rstr_data->d_offsets; 8860183ed61SJeremy L Thompson code << tab << "ReadEVecSliceStandard3d<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", " << Q_name << ">(data, l_size" 8870183ed61SJeremy L Thompson << var_suffix << ", elem, q, indices.inputs[" << i << "], d" << var_suffix << ", r_s" << var_suffix << ");\n"; 8884b3e95d5SJeremy L Thompson } 889681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 8904b3e95d5SJeremy L Thompson break; 8914b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 8920183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 8930183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << "; j++) {\n"; 8940183ed61SJeremy L Thompson tab.push(); 895*0ccda8ebSJeremy L Thompson code << tab << "r_s" << var_suffix << "[j] = r_q" << var_suffix << "[q + j*" << Q_name << "];\n"; 8960183ed61SJeremy L Thompson tab.pop(); 8970183ed61SJeremy L Thompson code << tab << "}\n"; 8984b3e95d5SJeremy L Thompson break; 8994b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 9000183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 9010183ed61SJeremy L Thompson code << tab << "GradColloSlice3d<num_comp" << var_suffix << ", " << Q_name << ", OP_T_1D>(data, q, r_q" << var_suffix << ", s_G" 90299421279SJeremy L Thompson << var_suffix << ", r_s" << var_suffix << ");\n"; 9034b3e95d5SJeremy L Thompson break; 9044b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 9050183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[1];\n"; 9060183ed61SJeremy L Thompson code << tab << "r_s" << var_suffix << "[0] = r_q" << var_suffix << "[q];\n"; 9078b97b69aSJeremy L Thompson break; 9084b3e95d5SJeremy L Thompson // LCOV_EXCL_START 9094b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 9104b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 9114b3e95d5SJeremy L Thompson break; // TODO: Not implemented 9124b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 9134b3e95d5SJeremy L Thompson } 9144b3e95d5SJeremy L Thompson } 9150183ed61SJeremy L Thompson code << "\n"; 9160183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 9174b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 91859fa3f92SJeremy L Thompson const char *field_name; 9194b3e95d5SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 9204b3e95d5SJeremy L Thompson 92159fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9220183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 9234b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 9244b3e95d5SJeremy L Thompson // Basis action 9254b3e95d5SJeremy L Thompson switch (eval_mode) { 9264b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 9270183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 9288b97b69aSJeremy L Thompson break; 9294b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 9300183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 9314b3e95d5SJeremy L Thompson break; 9324b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 9330183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 9344b3e95d5SJeremy L Thompson break; 9354b3e95d5SJeremy L Thompson // LCOV_EXCL_START 9364b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 9374b3e95d5SJeremy L Thompson break; // Should not occur 9384b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 9394b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 9404b3e95d5SJeremy L Thompson break; // TODO: Not implemented 9414b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 9424b3e95d5SJeremy L Thompson } 9434b3e95d5SJeremy L Thompson } 9444b3e95d5SJeremy L Thompson } else { 9450183ed61SJeremy L Thompson code << "\n"; 9460183ed61SJeremy L Thompson code << tab << "// Note: Using full elements\n"; 9470183ed61SJeremy L Thompson code << tab << "{\n"; 9480183ed61SJeremy L Thompson tab.push(); 9490183ed61SJeremy L Thompson code << tab << "// -- Input fields\n"; 9504b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 95159fa3f92SJeremy L Thompson const char *field_name; 95259fa3f92SJeremy L Thompson 95359fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 9540183ed61SJeremy L Thompson code << tab << "// ---- Input field " << i << ": " << field_name << "\n"; 9550183ed61SJeremy L Thompson code << tab << "CeedScalar *r_s_in_" << i << " = r_q_in_" << i << ";\n"; 9564b3e95d5SJeremy L Thompson } 9570183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 9584b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 95959fa3f92SJeremy L Thompson const char *field_name; 96059fa3f92SJeremy L Thompson 96159fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9620183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 9630183ed61SJeremy L Thompson code << tab << "CeedScalar *r_s_out_" << i << " = r_q_out_" << i << ";\n"; 9644b3e95d5SJeremy L Thompson } 9654b3e95d5SJeremy L Thompson } 9664b3e95d5SJeremy L Thompson 9674b3e95d5SJeremy L Thompson // Input and output buffers 9680183ed61SJeremy L Thompson code << "\n"; 9690183ed61SJeremy L Thompson code << tab << "// -- QFunction inputs and outputs\n"; 9700183ed61SJeremy L Thompson code << tab << "// ---- Inputs\n"; 9710183ed61SJeremy L Thompson code << tab << "CeedScalar *inputs[" << CeedIntMax(num_input_fields, 1) << "];\n"; 9724b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 97359fa3f92SJeremy L Thompson const char *field_name; 97459fa3f92SJeremy L Thompson 97559fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 9760183ed61SJeremy L Thompson code << tab << "// ------ Input field " << i << ": " << field_name << "\n"; 9770183ed61SJeremy L Thompson code << tab << "inputs[" << i << "] = r_s_in_" << i << ";\n"; 9784b3e95d5SJeremy L Thompson } 9790183ed61SJeremy L Thompson code << tab << "// ---- Outputs\n"; 9800183ed61SJeremy L Thompson code << tab << "CeedScalar *outputs[" << CeedIntMax(num_output_fields, 1) << "];\n"; 9814b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 98259fa3f92SJeremy L Thompson const char *field_name; 98359fa3f92SJeremy L Thompson 98459fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9850183ed61SJeremy L Thompson code << tab << "// ------ Output field " << i << ": " << field_name << "\n"; 9860183ed61SJeremy L Thompson code << tab << "outputs[" << i << "] = r_s_out_" << i << ";\n"; 9874b3e95d5SJeremy L Thompson } 9884b3e95d5SJeremy L Thompson 9894b3e95d5SJeremy L Thompson // Apply QFunction 9900183ed61SJeremy L Thompson code << "\n"; 9910183ed61SJeremy L Thompson code << tab << "// -- Apply QFunction\n"; 9920183ed61SJeremy L Thompson code << tab << "" << qfunction_name << "(ctx, "; 993412e5683SJeremy L Thompson if (max_dim != 3 || is_at_points || use_3d_slices || !is_all_tensor) { 9944b3e95d5SJeremy L Thompson code << "1"; 9954b3e95d5SJeremy L Thompson } else { 996dc007f05SJeremy L Thompson code << Q_name; 9974b3e95d5SJeremy L Thompson } 9984b3e95d5SJeremy L Thompson code << ", inputs, outputs);\n"; 9994b3e95d5SJeremy L Thompson 10008b97b69aSJeremy L Thompson if (is_at_points) { 10018b97b69aSJeremy L Thompson // Map back to coefficients 10020183ed61SJeremy L Thompson code << "\n"; 10030183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 10048b97b69aSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 100559fa3f92SJeremy L Thompson const char *field_name; 10068b97b69aSJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 10078b97b69aSJeremy L Thompson std::string P_name = "P_1d" + var_suffix; 10088b97b69aSJeremy L Thompson 100959fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 10100183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 10118b97b69aSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 10128b97b69aSJeremy L Thompson // Basis action 10130183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 10148b97b69aSJeremy L Thompson switch (eval_mode) { 10158b97b69aSJeremy L Thompson case CEED_EVAL_NONE: { 10168b97b69aSJeremy L Thompson CeedInt comp_stride; 10178b97b69aSJeremy L Thompson CeedElemRestriction elem_rstr; 10188b97b69aSJeremy L Thompson 10198b97b69aSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 10208b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 10218b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 10220183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 10230183ed61SJeremy L Thompson code << tab << "WritePoint<num_comp" << var_suffix << ", comp_stride" << var_suffix 10248b97b69aSJeremy L Thompson << ", max_num_points>(data, elem, i, points.num_per_elem[elem], indices.outputs[" << i << "]" 10258b97b69aSJeremy L Thompson << ", r_s" << var_suffix << ", d" << var_suffix << ");\n"; 10268b97b69aSJeremy L Thompson break; 10278b97b69aSJeremy L Thompson } 10288b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 10290183ed61SJeremy L Thompson code << tab << "if (i >= points.num_per_elem[elem]) {\n"; 10300183ed61SJeremy L Thompson tab.push(); 10310183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << "; j++) r_s" << var_suffix << "[j] = 0.0;\n"; 10320183ed61SJeremy L Thompson tab.pop(); 10330183ed61SJeremy L Thompson code << tab << "}\n"; 10340183ed61SJeremy L Thompson code << tab << "InterpTransposeAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 1035f725b54bSJeremy L Thompson << ">(data, i, r_s" << var_suffix << ", r_x, r_c" << var_suffix << ");\n"; 10368b97b69aSJeremy L Thompson break; 10378b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 10380183ed61SJeremy L Thompson code << tab << "if (i >= points.num_per_elem[elem]) {\n"; 10390183ed61SJeremy L Thompson tab.push(); 10400183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << "*dim" << var_suffix << "; j++) r_s" << var_suffix << "[j] = 0.0;\n"; 10410183ed61SJeremy L Thompson tab.pop(); 10420183ed61SJeremy L Thompson code << tab << "}\n"; 10430183ed61SJeremy L Thompson code << tab << "GradTransposeAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 1044f725b54bSJeremy L Thompson << ">(data, i, r_s" << var_suffix << ", r_x, r_c" << var_suffix << ");\n"; 10458b97b69aSJeremy L Thompson break; 10468b97b69aSJeremy L Thompson // LCOV_EXCL_START 10478b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 10488b97b69aSJeremy L Thompson break; // Should not occur 10498b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 10508b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 10518b97b69aSJeremy L Thompson break; // TODO: Not implemented 10528b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 10538b97b69aSJeremy L Thompson } 10548b97b69aSJeremy L Thompson } 10558b97b69aSJeremy L Thompson } else if (use_3d_slices) { 10564b3e95d5SJeremy L Thompson // Copy or apply transpose grad, if needed 10570183ed61SJeremy L Thompson code << "\n"; 10580183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 10594b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 106059fa3f92SJeremy L Thompson const char *field_name; 10614b3e95d5SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 10624b3e95d5SJeremy L Thompson std::string P_name = "P_1d" + var_suffix; 10634b3e95d5SJeremy L Thompson 106459fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 10650183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 10664b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 10674b3e95d5SJeremy L Thompson // Basis action 10680183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 10694b3e95d5SJeremy L Thompson switch (eval_mode) { 10704b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 10710183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << " ; j++) {\n"; 10720183ed61SJeremy L Thompson tab.push(); 10730183ed61SJeremy L Thompson code << tab << "r_q" << var_suffix << "[q + j*" << Q_name << "] = r_s" << var_suffix << "[j];\n"; 10740183ed61SJeremy L Thompson tab.pop(); 10750183ed61SJeremy L Thompson code << tab << "}\n"; 10768b97b69aSJeremy L Thompson break; 10774b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 10780183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << " ; j++) {\n"; 10790183ed61SJeremy L Thompson tab.push(); 10800183ed61SJeremy L Thompson code << tab << "r_q" << var_suffix << "[q + j*" << Q_name << "] = r_s" << var_suffix << "[j];\n"; 10810183ed61SJeremy L Thompson tab.pop(); 10820183ed61SJeremy L Thompson code << tab << "}\n"; 10834b3e95d5SJeremy L Thompson break; 10844b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 10850183ed61SJeremy L Thompson code << tab << "GradColloSliceTranspose3d<num_comp" << var_suffix << ", " << Q_name << ", OP_T_1D>(data, q, r_s" << var_suffix << ", s_G" 1086f815fac9SJeremy L Thompson << var_suffix << ", r_q" << var_suffix << ");\n"; 10874b3e95d5SJeremy L Thompson break; 10884b3e95d5SJeremy L Thompson // LCOV_EXCL_START 10894b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 10904b3e95d5SJeremy L Thompson break; // Should not occur 10914b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 10924b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 10934b3e95d5SJeremy L Thompson break; // TODO: Not implemented 10944b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 10954b3e95d5SJeremy L Thompson } 10964b3e95d5SJeremy L Thompson } 10974b3e95d5SJeremy L Thompson } 10980183ed61SJeremy L Thompson tab.pop(); 10990183ed61SJeremy L Thompson code << tab << "}\n"; 11004b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 11014b3e95d5SJeremy L Thompson } 11024b3e95d5SJeremy L Thompson 11034b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 1104b2165e7aSSebastian Grimberg // Build single operator kernel 1105ab213215SJeremy L Thompson //------------------------------------------------------------------------------ 1106ddae5012SJeremy L Thompson extern "C" int CeedOperatorBuildKernel_Cuda_gen(CeedOperator op, bool *is_good_build) { 1107412e5683SJeremy L Thompson bool is_all_tensor = true, is_all_nontensor = true, is_at_points = false, use_3d_slices = false; 1108241a4b83SYohann Ceed ceed; 1109efa41df3SJeremy L Thompson CeedInt Q = 0, Q_1d = 0, num_input_fields, num_output_fields, max_dim = 1, max_num_points = 0, coords_comp_stride = 0; 1110ca735530SJeremy L Thompson CeedQFunctionField *qf_input_fields, *qf_output_fields; 1111ca735530SJeremy L Thompson CeedQFunction_Cuda_gen *qf_data; 1112ca735530SJeremy L Thompson CeedQFunction qf; 1113ca735530SJeremy L Thompson CeedOperatorField *op_input_fields, *op_output_fields; 1114ca735530SJeremy L Thompson CeedOperator_Cuda_gen *data; 11154b3e95d5SJeremy L Thompson std::ostringstream code; 11160183ed61SJeremy L Thompson Tab tab; 11174b3e95d5SJeremy L Thompson 1118ddae5012SJeremy L Thompson CeedCallBackend(CeedOperatorGetData(op, &data)); 11194b3e95d5SJeremy L Thompson { 11204b3e95d5SJeremy L Thompson bool is_setup_done; 1121ca735530SJeremy L Thompson 1122ca735530SJeremy L Thompson CeedCallBackend(CeedOperatorIsSetupDone(op, &is_setup_done)); 1123ddae5012SJeremy L Thompson if (is_setup_done) { 1124ddae5012SJeremy L Thompson *is_good_build = !data->use_fallback; 1125ddae5012SJeremy L Thompson return CEED_ERROR_SUCCESS; 1126ddae5012SJeremy L Thompson } 1127ddae5012SJeremy L Thompson } 1128ddae5012SJeremy L Thompson 1129ddae5012SJeremy L Thompson // Check field compatibility 11308d12f40eSJeremy L Thompson CeedCallBackend(CeedOperatorGetFields(op, &num_input_fields, &op_input_fields, &num_output_fields, &op_output_fields)); 1131ddae5012SJeremy L Thompson { 1132412e5683SJeremy L Thompson bool has_shared_bases = true; 1133ddae5012SJeremy L Thompson 1134ddae5012SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1135ddae5012SJeremy L Thompson CeedBasis basis; 1136ddae5012SJeremy L Thompson 1137ddae5012SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 1138ddae5012SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 1139ddae5012SJeremy L Thompson bool is_tensor = true; 1140ddae5012SJeremy L Thompson const char *resource; 1141ddae5012SJeremy L Thompson char *resource_root; 1142ddae5012SJeremy L Thompson Ceed basis_ceed; 1143ddae5012SJeremy L Thompson 1144ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 1145c9192acaSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 114645a787f7SJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 1147ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 1148ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 1149ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 1150c9192acaSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 1151ddae5012SJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 1152ddae5012SJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 1153ddae5012SJeremy L Thompson } 1154ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 11554b3e95d5SJeremy L Thompson } 1156ca735530SJeremy L Thompson 1157ddae5012SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 1158ddae5012SJeremy L Thompson CeedBasis basis; 1159ddae5012SJeremy L Thompson 1160ddae5012SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 1161ddae5012SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 1162ddae5012SJeremy L Thompson bool is_tensor = true; 1163ddae5012SJeremy L Thompson const char *resource; 1164ddae5012SJeremy L Thompson char *resource_root; 1165ddae5012SJeremy L Thompson Ceed basis_ceed; 1166ddae5012SJeremy L Thompson 1167ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 1168c9192acaSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 1169c9192acaSJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 1170ddae5012SJeremy L Thompson 1171ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 1172ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 1173ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 1174c9192acaSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 1175ddae5012SJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 1176ddae5012SJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 1177ddae5012SJeremy L Thompson } 1178ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 1179ddae5012SJeremy L Thompson } 1180ddae5012SJeremy L Thompson // -- Fallback to ref if not all bases are shared 1181412e5683SJeremy L Thompson if (!has_shared_bases) { 1182ddae5012SJeremy L Thompson *is_good_build = false; 1183ddae5012SJeremy L Thompson return CEED_ERROR_SUCCESS; 1184ddae5012SJeremy L Thompson } 1185ddae5012SJeremy L Thompson } 1186ca735530SJeremy L Thompson CeedCallBackend(CeedOperatorGetCeed(op, &ceed)); 1187ca735530SJeremy L Thompson CeedCallBackend(CeedOperatorGetQFunction(op, &qf)); 1188ca735530SJeremy L Thompson CeedCallBackend(CeedQFunctionGetData(qf, &qf_data)); 1189ca735530SJeremy L Thompson CeedCallBackend(CeedQFunctionGetFields(qf, NULL, &qf_input_fields, NULL, &qf_output_fields)); 1190241a4b83SYohann 11914b3e95d5SJeremy L Thompson // Get operator data 11928b97b69aSJeremy L Thompson CeedCallBackend(CeedOperatorIsAtPoints(op, &is_at_points)); 1193412e5683SJeremy L Thompson { 1194efa41df3SJeremy L Thompson CeedInt max_P = 0, max_P_1d = 0; 1195412e5683SJeremy L Thompson 1196412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelData_Cuda_gen(ceed, num_input_fields, op_input_fields, qf_input_fields, num_output_fields, 1197412e5683SJeremy L Thompson op_output_fields, qf_output_fields, &max_P, &max_P_1d, &Q, &Q_1d, &max_dim, &is_all_tensor, 1198412e5683SJeremy L Thompson &use_3d_slices)); 1199412e5683SJeremy L Thompson data->max_P_1d = is_all_tensor ? max_P_1d : max_P; 1200412e5683SJeremy L Thompson } 1201412e5683SJeremy L Thompson if (max_dim == 0) max_dim = 1; 1202412e5683SJeremy L Thompson data->dim = max_dim; 12038b97b69aSJeremy L Thompson if (is_at_points) { 12048b97b69aSJeremy L Thompson CeedElemRestriction_Cuda *rstr_data; 12058b97b69aSJeremy L Thompson CeedElemRestriction rstr_points = NULL; 12064b3e95d5SJeremy L Thompson 12078b97b69aSJeremy L Thompson CeedCallBackend(CeedOperatorAtPointsGetPoints(op, &rstr_points, NULL)); 12088b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetMaxPointsInElement(rstr_points, &max_num_points)); 12098b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(rstr_points, &coords_comp_stride)); 12108b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetData(rstr_points, &rstr_data)); 12118b97b69aSJeremy L Thompson data->points.indices = (CeedInt *)rstr_data->d_offsets; 12128b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_points)); 12138b97b69aSJeremy L Thompson } 12148b97b69aSJeremy L Thompson if (is_at_points) use_3d_slices = false; 12158b97b69aSJeremy L Thompson if (Q_1d == 0) { 12168b97b69aSJeremy L Thompson if (is_at_points) Q_1d = max_num_points; 12178b97b69aSJeremy L Thompson else CeedCallBackend(CeedOperatorGetNumQuadraturePoints(op, &Q_1d)); 12184b3e95d5SJeremy L Thompson } 1219c433aabcSJeremy L Thompson if (Q == 0) Q = Q_1d; 1220c433aabcSJeremy L Thompson data->Q = Q; 12214b3e95d5SJeremy L Thompson data->Q_1d = Q_1d; 12224b3e95d5SJeremy L Thompson 12230b454692Sjeremylt // Check for restriction only identity operator 12244b3e95d5SJeremy L Thompson { 12254b3e95d5SJeremy L Thompson bool is_identity_qf; 12264b3e95d5SJeremy L Thompson 12272b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionIsIdentity(qf, &is_identity_qf)); 12280b454692Sjeremylt if (is_identity_qf) { 12299e201c85SYohann CeedEvalMode eval_mode_in, eval_mode_out; 1230ca735530SJeremy L Thompson 12312b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[0], &eval_mode_in)); 12322b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[0], &eval_mode_out)); 12336574a04fSJeremy L Thompson CeedCheck(eval_mode_in != CEED_EVAL_NONE || eval_mode_out != CEED_EVAL_NONE, ceed, CEED_ERROR_BACKEND, 12346574a04fSJeremy L Thompson "Backend does not implement restriction only identity operators"); 12350b454692Sjeremylt } 12364b3e95d5SJeremy L Thompson } 12370b454692Sjeremylt 1238f1a13f77SYohann Dudouit // Add atomicAdd function for old NVidia architectures 12394b3e95d5SJeremy L Thompson { 12404b3e95d5SJeremy L Thompson Ceed_Cuda *ceed_data; 12414b3e95d5SJeremy L Thompson struct cudaDeviceProp prop; 12424b3e95d5SJeremy L Thompson 12432b730f8bSJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_data)); 12442b730f8bSJeremy L Thompson CeedCallBackend(cudaGetDeviceProperties(&prop, ceed_data->device_id)); 124580a9ef05SNatalie Beams if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { 12460183ed61SJeremy L Thompson code << tab << "// AtomicAdd fallback source\n"; 12470183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-atomic-add-fallback.h>\n\n"; 1248f1a13f77SYohann Dudouit } 12494b3e95d5SJeremy L Thompson } 1250f1a13f77SYohann Dudouit 12519e201c85SYohann // Load basis source files 1252412e5683SJeremy L Thompson if (!is_all_nontensor) { 12530183ed61SJeremy L Thompson code << tab << "// Tensor basis source\n"; 12540183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-templates.h>\n\n"; 1255412e5683SJeremy L Thompson } 1256412e5683SJeremy L Thompson if (!is_all_tensor) { 12570183ed61SJeremy L Thompson code << tab << "// Non-tensor basis source\n"; 12580183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-nontensor-templates.h>\n\n"; 1259dc007f05SJeremy L Thompson } 1260c8e372f0SJeremy L Thompson if (!is_all_tensor && !is_all_nontensor) { 1261c8e372f0SJeremy L Thompson code << "// Tensor basis source\n"; 1262c8e372f0SJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-flattened-templates.h>\n\n"; 1263c8e372f0SJeremy L Thompson } 1264dc007f05SJeremy L Thompson if (is_at_points) { 12658b97b69aSJeremy L Thompson code << "// AtPoints basis source\n"; 12668b97b69aSJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-at-points-templates.h>\n\n"; 1267dc007f05SJeremy L Thompson } 12689c25dd66SJeremy L Thompson code << "// CodeGen operator source\n"; 12699c25dd66SJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-gen-templates.h>\n\n"; 1270241a4b83SYohann 12714b3e95d5SJeremy L Thompson // Get QFunction name 12724b3e95d5SJeremy L Thompson std::string qfunction_name(qf_data->qfunction_name); 12734b3e95d5SJeremy L Thompson std::string operator_name; 12744b3e95d5SJeremy L Thompson 127509095acaSJeremy L Thompson operator_name = "CeedKernelCudaGenOperator_" + qfunction_name; 12764d537eeaSYohann 12779e201c85SYohann // Define CEED_Q_VLA 12780183ed61SJeremy L Thompson code << "\n" << tab << "#undef CEED_Q_VLA\n"; 1279412e5683SJeremy L Thompson if (max_dim != 3 || is_at_points || use_3d_slices || !is_all_tensor) { 12800183ed61SJeremy L Thompson code << tab << "#define CEED_Q_VLA 1\n\n"; 12819e201c85SYohann } else { 12820183ed61SJeremy L Thompson code << tab << "#define CEED_Q_VLA " << Q_1d << "\n\n"; 12839e201c85SYohann } 12849e201c85SYohann 12854b3e95d5SJeremy L Thompson // Add user QFunction source 12864b3e95d5SJeremy L Thompson { 12879c25dd66SJeremy L Thompson const char *source_path; 12884b3e95d5SJeremy L Thompson 12899c25dd66SJeremy L Thompson CeedCallBackend(CeedQFunctionGetSourcePath(qf, &source_path)); 12909c25dd66SJeremy L Thompson CeedCheck(source_path, ceed, CEED_ERROR_UNSUPPORTED, "/gpu/cuda/gen backend requires QFunction source code file"); 12919c25dd66SJeremy L Thompson 12920183ed61SJeremy L Thompson code << tab << "// User QFunction source\n"; 12930183ed61SJeremy L Thompson code << tab << "#include \"" << source_path << "\"\n\n"; 12944b3e95d5SJeremy L Thompson } 1295241a4b83SYohann 1296241a4b83SYohann // Setup 12970183ed61SJeremy L Thompson code << "\n" << tab << "// -----------------------------------------------------------------------------\n"; 12980183ed61SJeremy L Thompson code << tab << "// Operator Kernel\n"; 12990183ed61SJeremy L Thompson code << tab << "// \n"; 13000183ed61SJeremy L Thompson code << tab << "// d_[in,out]_i: CeedVector device array\n"; 13010183ed61SJeremy L Thompson code << tab << "// r_[in,out]_e_i: Element vector register\n"; 13020183ed61SJeremy L Thompson code << tab << "// r_[in,out]_q_i: Quadrature space vector register\n"; 13030183ed61SJeremy L Thompson code << tab << "// r_[in,out]_c_i: AtPoints Chebyshev coefficients register\n"; 13040183ed61SJeremy L Thompson code << tab << "// r_[in,out]_s_i: Quadrature space slice vector register\n"; 13050183ed61SJeremy L Thompson code << tab << "// \n"; 13060183ed61SJeremy L Thompson code << tab << "// s_B_[in,out]_i: Interpolation matrix, shared memory\n"; 13070183ed61SJeremy L Thompson code << tab << "// s_G_[in,out]_i: Gradient matrix, shared memory\n"; 13080183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n"; 13090183ed61SJeremy L Thompson code << tab << "extern \"C\" __global__ void " << operator_name 13108b97b69aSJeremy L Thompson << "(CeedInt num_elem, void* ctx, FieldsInt_Cuda indices, Fields_Cuda fields, Fields_Cuda B, Fields_Cuda G, CeedScalar *W, Points_Cuda " 13118b97b69aSJeremy L Thompson "points) {\n"; 13120183ed61SJeremy L Thompson tab.push(); 13134b3e95d5SJeremy L Thompson 13144b3e95d5SJeremy L Thompson // Scratch buffers 13159e201c85SYohann for (CeedInt i = 0; i < num_input_fields; i++) { 13164b3e95d5SJeremy L Thompson CeedEvalMode eval_mode; 13174b3e95d5SJeremy L Thompson 13182b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 13199e201c85SYohann if (eval_mode != CEED_EVAL_WEIGHT) { // Skip CEED_EVAL_WEIGHT 13200183ed61SJeremy L Thompson code << tab << "const CeedScalar *__restrict__ d_in_" << i << " = fields.inputs[" << i << "];\n"; 1321241a4b83SYohann } 1322241a4b83SYohann } 13239e201c85SYohann for (CeedInt i = 0; i < num_output_fields; i++) { 13240183ed61SJeremy L Thompson code << tab << "CeedScalar *__restrict__ d_out_" << i << " = fields.outputs[" << i << "];\n"; 1325241a4b83SYohann } 13261da99368SJeremy L Thompson 13270183ed61SJeremy L Thompson code << tab << "const CeedInt max_dim = " << max_dim << ";\n"; 1328412e5683SJeremy L Thompson if (!is_all_tensor) { 13290183ed61SJeremy L Thompson code << tab << "const CeedInt Q = " << Q << ";\n"; 1330412e5683SJeremy L Thompson } 1331412e5683SJeremy L Thompson if (!is_all_nontensor) { 13320183ed61SJeremy L Thompson code << tab << "const CeedInt Q_1d = " << Q_1d << ";\n"; 1333412e5683SJeremy L Thompson } 13348b97b69aSJeremy L Thompson if (is_at_points) { 13350183ed61SJeremy L Thompson code << tab << "const CeedInt max_num_points = " << max_num_points << ";\n"; 13360183ed61SJeremy L Thompson code << tab << "const CeedInt coords_comp_stride = " << coords_comp_stride << ";\n"; 13378b97b69aSJeremy L Thompson } 13381da99368SJeremy L Thompson 13394b3e95d5SJeremy L Thompson // Shared data 13400183ed61SJeremy L Thompson code << tab << "extern __shared__ CeedScalar slice[];\n"; 13410183ed61SJeremy L Thompson code << tab << "SharedData_Cuda data;\n"; 13420183ed61SJeremy L Thompson code << tab << "data.t_id_x = threadIdx.x;\n"; 13430183ed61SJeremy L Thompson code << tab << "data.t_id_y = threadIdx.y;\n"; 13440183ed61SJeremy L Thompson code << tab << "data.t_id_z = threadIdx.z;\n"; 13450183ed61SJeremy L Thompson code << tab << "data.t_id = threadIdx.x + threadIdx.y*blockDim.x + threadIdx.z*blockDim.y*blockDim.x;\n"; 13460183ed61SJeremy L Thompson code << tab << "data.slice = slice + data.t_id_z*OP_T_1D" << ((!is_all_tensor || max_dim == 1) ? "" : "*OP_T_1D") << ";\n"; 1347920dcdc4Sjeremylt 13480a2a6492SJeremy L Thompson // -- Determine input mat reuse 134945a787f7SJeremy L Thompson FieldReuse_Cuda input_matrix_reuse[CEED_FIELD_MAX]; 13500a2a6492SJeremy L Thompson 13510a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 135245a787f7SJeremy L Thompson input_matrix_reuse[i].index = -1; 13530a2a6492SJeremy L Thompson } 13540a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1355412e5683SJeremy L Thompson bool is_tensor = true; 13560a2a6492SJeremy L Thompson CeedEvalMode eval_mode_i; 13570a2a6492SJeremy L Thompson CeedBasis basis_i; 13580a2a6492SJeremy L Thompson 13590a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode_i)); 13600a2a6492SJeremy L Thompson if (eval_mode_i == CEED_EVAL_WEIGHT) continue; 13610a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis_i)); 1362412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 136345a787f7SJeremy L Thompson for (CeedInt j = 0; (input_matrix_reuse[i].index == -1) && (j < i); j++) { 13640a2a6492SJeremy L Thompson CeedEvalMode eval_mode_j; 13650a2a6492SJeremy L Thompson CeedBasis basis_j; 13660a2a6492SJeremy L Thompson 13670a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 13680a2a6492SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 13690a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 13700a2a6492SJeremy L Thompson if (basis_i == basis_j) { 13710a2a6492SJeremy L Thompson if (is_tensor) { 137245a787f7SJeremy L Thompson input_matrix_reuse[i].index = j; 137345a787f7SJeremy L Thompson input_matrix_reuse[i].is_input = true; 137445a787f7SJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 13750a2a6492SJeremy L Thompson } else { 13760a2a6492SJeremy L Thompson // For non-tensor can only re-use with the same eval mode 13770a2a6492SJeremy L Thompson if (eval_mode_i == eval_mode_j) { 137845a787f7SJeremy L Thompson input_matrix_reuse[i].index = j; 137945a787f7SJeremy L Thompson input_matrix_reuse[i].is_input = true; 138045a787f7SJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 13810a2a6492SJeremy L Thompson } 13820a2a6492SJeremy L Thompson } 13830a2a6492SJeremy L Thompson } 13840a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 13850a2a6492SJeremy L Thompson } 13860a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 13870a2a6492SJeremy L Thompson } 13880a2a6492SJeremy L Thompson 13890a2a6492SJeremy L Thompson // -- Determine output mat reuse 139045a787f7SJeremy L Thompson FieldReuse_Cuda output_matrix_reuse[CEED_FIELD_MAX]; 13910a2a6492SJeremy L Thompson 13920a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 139345a787f7SJeremy L Thompson output_matrix_reuse[i].index = -1; 13940a2a6492SJeremy L Thompson } 13950a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 1396412e5683SJeremy L Thompson bool is_tensor = true; 13970a2a6492SJeremy L Thompson CeedEvalMode eval_mode_i; 13980a2a6492SJeremy L Thompson CeedBasis basis_i; 13990a2a6492SJeremy L Thompson 14000a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode_i)); 14010a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis_i)); 1402412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 140345a787f7SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < num_input_fields); j++) { 14040a2a6492SJeremy L Thompson CeedEvalMode eval_mode_j; 14050a2a6492SJeremy L Thompson CeedBasis basis_j; 14060a2a6492SJeremy L Thompson 14070a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 14080a2a6492SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 14090a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 14100a2a6492SJeremy L Thompson if (basis_i == basis_j) { 14110a2a6492SJeremy L Thompson if (is_tensor) { 141245a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 141345a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = true; 141445a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 14150a2a6492SJeremy L Thompson } else { 14160a2a6492SJeremy L Thompson // For non-tensor can only re-use with the same eval mode 14170a2a6492SJeremy L Thompson if (eval_mode_i == eval_mode_j) { 141845a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 141945a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = true; 142045a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 14210a2a6492SJeremy L Thompson } 14220a2a6492SJeremy L Thompson } 14230a2a6492SJeremy L Thompson } 14240a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 14250a2a6492SJeremy L Thompson } 142645a787f7SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < i); j++) { 14270a2a6492SJeremy L Thompson CeedEvalMode eval_mode_j; 14280a2a6492SJeremy L Thompson CeedBasis basis_j; 14290a2a6492SJeremy L Thompson 14300a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[j], &eval_mode_j)); 14310a2a6492SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 14320a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[j], &basis_j)); 14330a2a6492SJeremy L Thompson if (basis_i == basis_j) { 14340a2a6492SJeremy L Thompson if (is_tensor) { 143545a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 143645a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = false; 143745a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 14380a2a6492SJeremy L Thompson } else { 14390a2a6492SJeremy L Thompson // For non-tensor can only re-use with the same eval mode 14400a2a6492SJeremy L Thompson if (eval_mode_i == eval_mode_j) { 144145a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 144245a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = false; 144345a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 14440a2a6492SJeremy L Thompson } 14450a2a6492SJeremy L Thompson } 14460a2a6492SJeremy L Thompson } 14470a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 14480a2a6492SJeremy L Thompson } 14490a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 14500a2a6492SJeremy L Thompson } 14510a2a6492SJeremy L Thompson 1452ac421f39SYohann // Initialize constants, and matrices B and G 14530183ed61SJeremy L Thompson code << "\n" << tab << "// Input field constants and basis data\n"; 14549e201c85SYohann for (CeedInt i = 0; i < num_input_fields; i++) { 14550183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_input_fields[i], qf_input_fields[i], input_matrix_reuse[i], 14560183ed61SJeremy L Thompson max_dim, Q, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 1457920dcdc4Sjeremylt } 14580183ed61SJeremy L Thompson code << "\n" << tab << "// Output field constants and basis data\n"; 14599e201c85SYohann for (CeedInt i = 0; i < num_output_fields; i++) { 14600183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], output_matrix_reuse[i], 14618014c5e7SJeremy L Thompson max_dim, Q, Q_1d, false, is_all_tensor, is_at_points, use_3d_slices)); 14624b3e95d5SJeremy L Thompson } 1463920dcdc4Sjeremylt 14644b3e95d5SJeremy L Thompson // Loop over all elements 14650183ed61SJeremy L Thompson code << "\n" << tab << "// Element loop\n"; 14660183ed61SJeremy L Thompson code << tab << "__syncthreads();\n"; 14670183ed61SJeremy L Thompson code << tab << "for (CeedInt elem = blockIdx.x*blockDim.z + threadIdx.z; elem < num_elem; elem += gridDim.x*blockDim.z) {\n"; 14680183ed61SJeremy L Thompson tab.push(); 14694b3e95d5SJeremy L Thompson 1470e93651e5SJeremy L Thompson // -- Compute minimum buffer space needed 14718b97b69aSJeremy L Thompson CeedInt max_rstr_buffer_size = 1; 1472e93651e5SJeremy L Thompson 14739e201c85SYohann for (CeedInt i = 0; i < num_input_fields; i++) { 14746de40545SJeremy L Thompson CeedEvalMode eval_mode; 14756de40545SJeremy L Thompson 14766de40545SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 14776de40545SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE && eval_mode != CEED_EVAL_WEIGHT) { 1478a61b1c91SJeremy L Thompson CeedInt num_comp; 1479e93651e5SJeremy L Thompson CeedElemRestriction elem_rstr; 1480e93651e5SJeremy L Thompson 1481e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 1482e93651e5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 1483a61b1c91SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 1484681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 1485e93651e5SJeremy L Thompson } 14866de40545SJeremy L Thompson } 1487e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 14886de40545SJeremy L Thompson CeedEvalMode eval_mode; 14896de40545SJeremy L Thompson 14906de40545SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 14916de40545SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE) { 1492a61b1c91SJeremy L Thompson CeedInt num_comp; 1493e93651e5SJeremy L Thompson CeedElemRestriction elem_rstr; 1494e93651e5SJeremy L Thompson 1495e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 1496e93651e5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 1497a61b1c91SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 1498681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 1499e93651e5SJeremy L Thompson } 15006de40545SJeremy L Thompson } 15010183ed61SJeremy L Thompson code << tab << "// Scratch restriction buffer space\n"; 15020183ed61SJeremy L Thompson code << tab << "CeedScalar r_e_scratch[" << max_rstr_buffer_size << "];\n"; 1503e93651e5SJeremy L Thompson 1504e93651e5SJeremy L Thompson // -- Determine best input field processing order 1505e93651e5SJeremy L Thompson CeedInt field_rstr_in_buffer[CEED_FIELD_MAX], input_field_order[CEED_FIELD_MAX]; 1506e93651e5SJeremy L Thompson 1507e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1508e93651e5SJeremy L Thompson field_rstr_in_buffer[i] = -1; 1509e93651e5SJeremy L Thompson input_field_order[i] = -1; 1510e93651e5SJeremy L Thompson } 1511e93651e5SJeremy L Thompson { 1512e93651e5SJeremy L Thompson bool is_ordered[CEED_FIELD_MAX]; 1513e93651e5SJeremy L Thompson CeedInt curr_index = 0; 1514e93651e5SJeremy L Thompson 1515e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) is_ordered[i] = false; 1516e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1517e93651e5SJeremy L Thompson CeedVector vec_i; 1518e93651e5SJeremy L Thompson CeedElemRestriction rstr_i; 1519e93651e5SJeremy L Thompson 1520e93651e5SJeremy L Thompson if (is_ordered[i]) continue; 1521e93651e5SJeremy L Thompson field_rstr_in_buffer[i] = i; 1522e93651e5SJeremy L Thompson is_ordered[i] = true; 1523e93651e5SJeremy L Thompson input_field_order[curr_index] = i; 1524e93651e5SJeremy L Thompson curr_index++; 1525034f99fdSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[i], &vec_i)); 1526e93651e5SJeremy L Thompson if (vec_i == CEED_VECTOR_NONE) continue; // CEED_EVAL_WEIGHT 1527e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &rstr_i)); 1528e93651e5SJeremy L Thompson for (CeedInt j = i + 1; j < num_input_fields; j++) { 1529e93651e5SJeremy L Thompson CeedVector vec_j; 1530e93651e5SJeremy L Thompson CeedElemRestriction rstr_j; 1531e93651e5SJeremy L Thompson 1532e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[j], &vec_j)); 1533e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[j], &rstr_j)); 1534e93651e5SJeremy L Thompson if (rstr_i == rstr_j && vec_i == vec_j) { 1535e93651e5SJeremy L Thompson field_rstr_in_buffer[j] = i; 1536e93651e5SJeremy L Thompson is_ordered[j] = true; 1537e93651e5SJeremy L Thompson input_field_order[curr_index] = j; 1538e93651e5SJeremy L Thompson curr_index++; 1539e93651e5SJeremy L Thompson } 1540681d0ea7SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_j)); 1541681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_j)); 1542e93651e5SJeremy L Thompson } 1543681d0ea7SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_i)); 1544681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_i)); 1545e93651e5SJeremy L Thompson } 1546e93651e5SJeremy L Thompson } 1547e93651e5SJeremy L Thompson 1548e93651e5SJeremy L Thompson // -- Input restriction and basis 15490183ed61SJeremy L Thompson code << "\n" << tab << "// -- Input field restrictions and basis actions\n"; 1550e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 155159fa3f92SJeremy L Thompson const char *field_name; 155259fa3f92SJeremy L Thompson const CeedInt f = input_field_order[i]; 1553e93651e5SJeremy L Thompson 155459fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 15550183ed61SJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 1556920dcdc4Sjeremylt 15574b3e95d5SJeremy L Thompson // ---- Restriction 15580183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, f, field_rstr_in_buffer, op_input_fields[f], qf_input_fields[f], 15590183ed61SJeremy L Thompson max_dim, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 15609a2291e3SJeremy L Thompson 15614b3e95d5SJeremy L Thompson // ---- Basis action 15620183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 15630183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 1564920dcdc4Sjeremylt } 1565920dcdc4Sjeremylt 15664b3e95d5SJeremy L Thompson // -- Q function 15670183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelQFunction_Cuda_gen(code, data, tab, max_dim, max_num_points, num_input_fields, op_input_fields, 15680183ed61SJeremy L Thompson qf_input_fields, num_output_fields, op_output_fields, qf_output_fields, qfunction_name, 15690183ed61SJeremy L Thompson Q_1d, is_all_tensor, is_at_points, use_3d_slices)); 1570ca735530SJeremy L Thompson 15714b3e95d5SJeremy L Thompson // -- Output basis and restriction 15720183ed61SJeremy L Thompson code << "\n" << tab << "// -- Output field basis action and restrictions\n"; 15739e201c85SYohann for (CeedInt i = 0; i < num_output_fields; i++) { 157459fa3f92SJeremy L Thompson const char *field_name; 157559fa3f92SJeremy L Thompson 157659fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 15770183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 1578ca735530SJeremy L Thompson 15794b3e95d5SJeremy L Thompson // ---- Basis action 15800183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], max_dim, Q_1d, false, 1581412e5683SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 15829a2291e3SJeremy L Thompson 15834b3e95d5SJeremy L Thompson // ---- Restriction 15840183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, i, NULL, op_output_fields[i], qf_output_fields[i], max_dim, Q_1d, 15850183ed61SJeremy L Thompson false, is_all_tensor, is_at_points, use_3d_slices)); 1586ac421f39SYohann } 1587241a4b83SYohann 15884b3e95d5SJeremy L Thompson // Close loop and function 15890183ed61SJeremy L Thompson tab.pop(); 15900183ed61SJeremy L Thompson code << tab << "}\n"; 15910183ed61SJeremy L Thompson tab.pop(); 15920183ed61SJeremy L Thompson code << tab << "}\n"; 15930183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n\n"; 1594241a4b83SYohann 15953a2968d6SJeremy L Thompson // Compile 1596ddae5012SJeremy L Thompson { 1597ddae5012SJeremy L Thompson bool is_compile_good = false; 1598412e5683SJeremy L Thompson const CeedInt T_1d = CeedIntMax(is_all_tensor ? Q_1d : Q, data->max_P_1d); 1599ddae5012SJeremy L Thompson 1600a61b1c91SJeremy L Thompson data->thread_1d = T_1d; 1601412e5683SJeremy L Thompson CeedCallBackend(CeedTryCompile_Cuda(ceed, code.str().c_str(), &is_compile_good, &data->module, 1, "OP_T_1D", T_1d)); 1602ddae5012SJeremy L Thompson if (is_compile_good) { 1603ddae5012SJeremy L Thompson *is_good_build = true; 1604eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Cuda(ceed, data->module, operator_name.c_str(), &data->op)); 1605ddae5012SJeremy L Thompson } else { 1606ddae5012SJeremy L Thompson *is_good_build = false; 1607ddae5012SJeremy L Thompson data->use_fallback = true; 1608ddae5012SJeremy L Thompson } 1609ddae5012SJeremy L Thompson } 16102b730f8bSJeremy L Thompson CeedCallBackend(CeedOperatorSetSetupDone(op)); 16119bc66399SJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 1612c11e12f4SJeremy L Thompson CeedCallBackend(CeedQFunctionDestroy(&qf)); 1613e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 1614241a4b83SYohann } 16152a86cc9dSSebastian Grimberg 1616ab213215SJeremy L Thompson //------------------------------------------------------------------------------ 16170183ed61SJeremy L Thompson // Build AtPoints assembly operator kernel 16180183ed61SJeremy L Thompson //------------------------------------------------------------------------------ 16190183ed61SJeremy L Thompson static int CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen(CeedOperator op, bool is_full, bool *is_good_build) { 16200183ed61SJeremy L Thompson bool is_all_tensor = true, is_at_points = false, use_3d_slices = false; 16210183ed61SJeremy L Thompson Ceed ceed; 16220183ed61SJeremy L Thompson CeedInt Q, Q_1d, num_input_fields, num_output_fields, max_dim = 1, max_num_points = 0, coords_comp_stride = 0; 16230183ed61SJeremy L Thompson CeedQFunctionField *qf_input_fields, *qf_output_fields; 16240183ed61SJeremy L Thompson CeedQFunction_Cuda_gen *qf_data; 16250183ed61SJeremy L Thompson CeedQFunction qf; 16260183ed61SJeremy L Thompson CeedOperatorField *op_input_fields, *op_output_fields; 16270183ed61SJeremy L Thompson CeedOperator_Cuda_gen *data; 16280183ed61SJeremy L Thompson std::ostringstream code; 16290183ed61SJeremy L Thompson Tab tab; 16300183ed61SJeremy L Thompson 16310183ed61SJeremy L Thompson // Check compatibility 16320183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetCeed(op, &ceed)); 16330183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorIsAtPoints(op, &is_at_points)); 16340183ed61SJeremy L Thompson CeedCheck(is_at_points, ceed, CEED_ERROR_BACKEND, "Only AtPoints operator assembly supported"); 16350183ed61SJeremy L Thompson 16360183ed61SJeremy L Thompson // Retrieve operator data 16370183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetData(op, &data)); 16380183ed61SJeremy L Thompson Q = data->Q; 16390183ed61SJeremy L Thompson Q_1d = data->Q_1d; 16400183ed61SJeremy L Thompson max_dim = data->dim; 16410183ed61SJeremy L Thompson { 16420183ed61SJeremy L Thompson CeedElemRestriction rstr_points = NULL; 16430183ed61SJeremy L Thompson 16440183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorAtPointsGetPoints(op, &rstr_points, NULL)); 16450183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetMaxPointsInElement(rstr_points, &max_num_points)); 16460183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(rstr_points, &coords_comp_stride)); 16470183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_points)); 16480183ed61SJeremy L Thompson } 16490183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetQFunction(op, &qf)); 16500183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionGetData(qf, &qf_data)); 16510183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionGetFields(qf, NULL, &qf_input_fields, NULL, &qf_output_fields)); 16520183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetFields(op, &num_input_fields, &op_input_fields, &num_output_fields, &op_output_fields)); 16530183ed61SJeremy L Thompson 16540183ed61SJeremy L Thompson // Add atomicAdd function for old NVidia architectures 16550183ed61SJeremy L Thompson { 16560183ed61SJeremy L Thompson Ceed_Cuda *ceed_data; 16570183ed61SJeremy L Thompson struct cudaDeviceProp prop; 16580183ed61SJeremy L Thompson 16590183ed61SJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_data)); 16600183ed61SJeremy L Thompson CeedCallBackend(cudaGetDeviceProperties(&prop, ceed_data->device_id)); 16610183ed61SJeremy L Thompson if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { 16620183ed61SJeremy L Thompson code << tab << "// AtomicAdd fallback source\n"; 16630183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-atomic-add-fallback.h>\n\n"; 16640183ed61SJeremy L Thompson } 16650183ed61SJeremy L Thompson } 16660183ed61SJeremy L Thompson 16670183ed61SJeremy L Thompson // Load basis source files 16680183ed61SJeremy L Thompson code << tab << "// Tensor basis source\n"; 16690183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-templates.h>\n\n"; 16700183ed61SJeremy L Thompson code << tab << "// AtPoints basis source\n"; 16710183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-at-points-templates.h>\n\n"; 16720183ed61SJeremy L Thompson code << tab << "// CodeGen operator source\n"; 16730183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-gen-templates.h>\n\n"; 16740183ed61SJeremy L Thompson 16750183ed61SJeremy L Thompson // Get QFunction name 16760183ed61SJeremy L Thompson std::string qfunction_name(qf_data->qfunction_name); 16770183ed61SJeremy L Thompson std::string operator_name; 16780183ed61SJeremy L Thompson 16790183ed61SJeremy L Thompson if (is_full) { 16800183ed61SJeremy L Thompson operator_name = "CeedKernelCudaGenOperatorFullAssembly_" + qfunction_name; 16810183ed61SJeremy L Thompson } else { 16820183ed61SJeremy L Thompson operator_name = "CeedKernelCudaGenOperatorDiagonalAssembly_" + qfunction_name; 16830183ed61SJeremy L Thompson } 16840183ed61SJeremy L Thompson 16850183ed61SJeremy L Thompson // Define CEED_Q_VLA 16860183ed61SJeremy L Thompson code << "\n" << tab << "#undef CEED_Q_VLA\n"; 16870183ed61SJeremy L Thompson code << tab << "#define CEED_Q_VLA 1\n\n"; 16880183ed61SJeremy L Thompson 16890183ed61SJeremy L Thompson // Add user QFunction source 16900183ed61SJeremy L Thompson { 16910183ed61SJeremy L Thompson const char *source_path; 16920183ed61SJeremy L Thompson 16930183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionGetSourcePath(qf, &source_path)); 16940183ed61SJeremy L Thompson CeedCheck(source_path, ceed, CEED_ERROR_UNSUPPORTED, "/gpu/cuda/gen backend requires QFunction source code file"); 16950183ed61SJeremy L Thompson 16960183ed61SJeremy L Thompson code << tab << "// User QFunction source\n"; 16970183ed61SJeremy L Thompson code << tab << "#include \"" << source_path << "\"\n\n"; 16980183ed61SJeremy L Thompson } 16990183ed61SJeremy L Thompson 17000183ed61SJeremy L Thompson // Setup 17010183ed61SJeremy L Thompson code << "\n" << tab << "// -----------------------------------------------------------------------------\n"; 17020183ed61SJeremy L Thompson code << tab << "// Operator Assembly Kernel\n"; 17030183ed61SJeremy L Thompson code << tab << "// \n"; 17040183ed61SJeremy L Thompson code << tab << "// d_[in,out]_i: CeedVector device array\n"; 17050183ed61SJeremy L Thompson code << tab << "// r_[in,out]_e_i: Element vector register\n"; 17060183ed61SJeremy L Thompson code << tab << "// r_[in,out]_q_i: Quadrature space vector register\n"; 17070183ed61SJeremy L Thompson code << tab << "// r_[in,out]_c_i: AtPoints Chebyshev coefficients register\n"; 17080183ed61SJeremy L Thompson code << tab << "// r_[in,out]_s_i: Quadrature space slice vector register\n"; 17090183ed61SJeremy L Thompson code << tab << "// \n"; 17100183ed61SJeremy L Thompson code << tab << "// s_B_[in,out]_i: Interpolation matrix, shared memory\n"; 17110183ed61SJeremy L Thompson code << tab << "// s_G_[in,out]_i: Gradient matrix, shared memory\n"; 17120183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n"; 17130183ed61SJeremy L Thompson code << tab << "extern \"C\" __global__ void " << operator_name 17140183ed61SJeremy L Thompson << "(CeedInt num_elem, void* ctx, FieldsInt_Cuda indices, Fields_Cuda fields, Fields_Cuda B, Fields_Cuda G, CeedScalar *W, Points_Cuda " 17150183ed61SJeremy L Thompson "points, CeedScalar *__restrict__ values_array) {\n"; 17160183ed61SJeremy L Thompson tab.push(); 17170183ed61SJeremy L Thompson 17180183ed61SJeremy L Thompson // Scratch buffers 17190183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 17200183ed61SJeremy L Thompson CeedEvalMode eval_mode; 17210183ed61SJeremy L Thompson 17220183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 17230183ed61SJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) { // Skip CEED_EVAL_WEIGHT 17240183ed61SJeremy L Thompson code << tab << "const CeedScalar *__restrict__ d_in_" << i << " = fields.inputs[" << i << "];\n"; 17250183ed61SJeremy L Thompson } 17260183ed61SJeremy L Thompson } 17270183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 17280183ed61SJeremy L Thompson code << tab << "CeedScalar *__restrict__ d_out_" << i << " = fields.outputs[" << i << "];\n"; 17290183ed61SJeremy L Thompson } 17300183ed61SJeremy L Thompson 17310183ed61SJeremy L Thompson code << tab << "const CeedInt max_dim = " << max_dim << ";\n"; 17320183ed61SJeremy L Thompson code << tab << "const CeedInt Q_1d = " << Q_1d << ";\n"; 17330183ed61SJeremy L Thompson code << tab << "const CeedInt max_num_points = " << max_num_points << ";\n"; 17340183ed61SJeremy L Thompson code << tab << "const CeedInt coords_comp_stride = " << coords_comp_stride << ";\n"; 17350183ed61SJeremy L Thompson 17360183ed61SJeremy L Thompson // Shared data 17370183ed61SJeremy L Thompson code << tab << "extern __shared__ CeedScalar slice[];\n"; 17380183ed61SJeremy L Thompson code << tab << "SharedData_Cuda data;\n"; 17390183ed61SJeremy L Thompson code << tab << "data.t_id_x = threadIdx.x;\n"; 17400183ed61SJeremy L Thompson code << tab << "data.t_id_y = threadIdx.y;\n"; 17410183ed61SJeremy L Thompson code << tab << "data.t_id_z = threadIdx.z;\n"; 17420183ed61SJeremy L Thompson code << tab << "data.t_id = threadIdx.x + threadIdx.y*blockDim.x + threadIdx.z*blockDim.y*blockDim.x;\n"; 17430183ed61SJeremy L Thompson code << tab << "data.slice = slice + data.t_id_z*OP_T_1D" << ((!is_all_tensor || max_dim == 1) ? "" : "*OP_T_1D") << ";\n"; 17440183ed61SJeremy L Thompson 17450183ed61SJeremy L Thompson // -- Determine input mat reuse 17460183ed61SJeremy L Thompson FieldReuse_Cuda input_matrix_reuse[CEED_FIELD_MAX]; 17470183ed61SJeremy L Thompson 17480183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 17490183ed61SJeremy L Thompson input_matrix_reuse[i].index = -1; 17500183ed61SJeremy L Thompson } 17510183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 17520183ed61SJeremy L Thompson CeedEvalMode eval_mode_i; 17530183ed61SJeremy L Thompson CeedBasis basis_i; 17540183ed61SJeremy L Thompson 17550183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode_i)); 17560183ed61SJeremy L Thompson if (eval_mode_i == CEED_EVAL_WEIGHT) continue; 17570183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis_i)); 17580183ed61SJeremy L Thompson for (CeedInt j = 0; (input_matrix_reuse[i].index == -1) && (j < i); j++) { 17590183ed61SJeremy L Thompson CeedEvalMode eval_mode_j; 17600183ed61SJeremy L Thompson CeedBasis basis_j; 17610183ed61SJeremy L Thompson 17620183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 17630183ed61SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 17640183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 17650183ed61SJeremy L Thompson if (basis_i == basis_j) { 17660183ed61SJeremy L Thompson input_matrix_reuse[i].index = j; 17670183ed61SJeremy L Thompson input_matrix_reuse[i].is_input = true; 17680183ed61SJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 17690183ed61SJeremy L Thompson } 17700183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 17710183ed61SJeremy L Thompson } 17720183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 17730183ed61SJeremy L Thompson } 17740183ed61SJeremy L Thompson 17750183ed61SJeremy L Thompson // -- Determine output mat reuse 17760183ed61SJeremy L Thompson FieldReuse_Cuda output_matrix_reuse[CEED_FIELD_MAX]; 17770183ed61SJeremy L Thompson 17780183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 17790183ed61SJeremy L Thompson output_matrix_reuse[i].index = -1; 17800183ed61SJeremy L Thompson } 17810183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 17820183ed61SJeremy L Thompson CeedEvalMode eval_mode_i; 17830183ed61SJeremy L Thompson CeedBasis basis_i; 17840183ed61SJeremy L Thompson 17850183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode_i)); 17860183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis_i)); 17870183ed61SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < num_input_fields); j++) { 17880183ed61SJeremy L Thompson CeedEvalMode eval_mode_j; 17890183ed61SJeremy L Thompson CeedBasis basis_j; 17900183ed61SJeremy L Thompson 17910183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 17920183ed61SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 17930183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 17940183ed61SJeremy L Thompson if (basis_i == basis_j) { 17950183ed61SJeremy L Thompson output_matrix_reuse[i].index = j; 17960183ed61SJeremy L Thompson output_matrix_reuse[i].is_input = true; 17970183ed61SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 17980183ed61SJeremy L Thompson } 17990183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 18000183ed61SJeremy L Thompson } 18010183ed61SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < i); j++) { 18020183ed61SJeremy L Thompson CeedEvalMode eval_mode_j; 18030183ed61SJeremy L Thompson CeedBasis basis_j; 18040183ed61SJeremy L Thompson 18050183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[j], &eval_mode_j)); 18060183ed61SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 18070183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[j], &basis_j)); 18080183ed61SJeremy L Thompson if (basis_i == basis_j) { 18090183ed61SJeremy L Thompson output_matrix_reuse[i].index = j; 18100183ed61SJeremy L Thompson output_matrix_reuse[i].is_input = false; 18110183ed61SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 18120183ed61SJeremy L Thompson } 18130183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 18140183ed61SJeremy L Thompson } 18150183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 18160183ed61SJeremy L Thompson } 18170183ed61SJeremy L Thompson 18180183ed61SJeremy L Thompson // Initialize constants, and matrices B and G 18190183ed61SJeremy L Thompson code << "\n" << tab << "// Input field constants and basis data\n"; 18200183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18210183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_input_fields[i], qf_input_fields[i], input_matrix_reuse[i], 18220183ed61SJeremy L Thompson max_dim, Q, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 18230183ed61SJeremy L Thompson } 18240183ed61SJeremy L Thompson code << "\n" << tab << "// Output field constants and basis data\n"; 18250183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 18260183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], output_matrix_reuse[i], 18270183ed61SJeremy L Thompson max_dim, Q, Q_1d, false, is_all_tensor, is_at_points, use_3d_slices)); 18280183ed61SJeremy L Thompson } 18290183ed61SJeremy L Thompson 18300183ed61SJeremy L Thompson // Loop over all elements 18310183ed61SJeremy L Thompson code << "\n" << tab << "// Element loop\n"; 18320183ed61SJeremy L Thompson code << tab << "__syncthreads();\n"; 18330183ed61SJeremy L Thompson code << tab << "for (CeedInt elem = blockIdx.x*blockDim.z + threadIdx.z; elem < num_elem; elem += gridDim.x*blockDim.z) {\n"; 18340183ed61SJeremy L Thompson tab.push(); 18350183ed61SJeremy L Thompson 18360183ed61SJeremy L Thompson // -- Compute minimum buffer space needed 18370183ed61SJeremy L Thompson CeedInt max_rstr_buffer_size = 1; 18380183ed61SJeremy L Thompson 18390183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18400183ed61SJeremy L Thompson CeedEvalMode eval_mode; 18410183ed61SJeremy L Thompson 18420183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 18430183ed61SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE && eval_mode != CEED_EVAL_WEIGHT) { 18440183ed61SJeremy L Thompson CeedInt num_comp; 18450183ed61SJeremy L Thompson CeedElemRestriction elem_rstr; 18460183ed61SJeremy L Thompson 18470183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 18480183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 18490183ed61SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 18500183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 18510183ed61SJeremy L Thompson } 18520183ed61SJeremy L Thompson } 18530183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 18540183ed61SJeremy L Thompson CeedEvalMode eval_mode; 18550183ed61SJeremy L Thompson 18560183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 18570183ed61SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE) { 18580183ed61SJeremy L Thompson CeedInt num_comp; 18590183ed61SJeremy L Thompson CeedElemRestriction elem_rstr; 18600183ed61SJeremy L Thompson 18610183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 18620183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 18630183ed61SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 18640183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 18650183ed61SJeremy L Thompson } 18660183ed61SJeremy L Thompson } 18670183ed61SJeremy L Thompson code << tab << "// Scratch restriction buffer space\n"; 18680183ed61SJeremy L Thompson code << tab << "CeedScalar r_e_scratch[" << max_rstr_buffer_size << "];\n"; 18690183ed61SJeremy L Thompson 18700183ed61SJeremy L Thompson // -- Determine best input field processing order 18710183ed61SJeremy L Thompson CeedInt field_rstr_in_buffer[CEED_FIELD_MAX], input_field_order[CEED_FIELD_MAX]; 18720183ed61SJeremy L Thompson 18730183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18740183ed61SJeremy L Thompson field_rstr_in_buffer[i] = -1; 18750183ed61SJeremy L Thompson input_field_order[i] = -1; 18760183ed61SJeremy L Thompson } 18770183ed61SJeremy L Thompson { 18780183ed61SJeremy L Thompson bool is_ordered[CEED_FIELD_MAX]; 18790183ed61SJeremy L Thompson CeedInt curr_index = 0; 18800183ed61SJeremy L Thompson 18810183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) is_ordered[i] = false; 18820183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18830183ed61SJeremy L Thompson CeedVector vec_i; 18840183ed61SJeremy L Thompson CeedElemRestriction rstr_i; 18850183ed61SJeremy L Thompson 18860183ed61SJeremy L Thompson if (is_ordered[i]) continue; 18870183ed61SJeremy L Thompson field_rstr_in_buffer[i] = i; 18880183ed61SJeremy L Thompson is_ordered[i] = true; 18890183ed61SJeremy L Thompson input_field_order[curr_index] = i; 18900183ed61SJeremy L Thompson curr_index++; 18910183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[i], &vec_i)); 18920183ed61SJeremy L Thompson if (vec_i == CEED_VECTOR_NONE) continue; // CEED_EVAL_WEIGHT 18930183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &rstr_i)); 18940183ed61SJeremy L Thompson for (CeedInt j = i + 1; j < num_input_fields; j++) { 18950183ed61SJeremy L Thompson CeedVector vec_j; 18960183ed61SJeremy L Thompson CeedElemRestriction rstr_j; 18970183ed61SJeremy L Thompson 18980183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[j], &vec_j)); 18990183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[j], &rstr_j)); 19000183ed61SJeremy L Thompson if (rstr_i == rstr_j && vec_i == vec_j) { 19010183ed61SJeremy L Thompson field_rstr_in_buffer[j] = i; 19020183ed61SJeremy L Thompson is_ordered[j] = true; 19030183ed61SJeremy L Thompson input_field_order[curr_index] = j; 19040183ed61SJeremy L Thompson curr_index++; 19050183ed61SJeremy L Thompson } 19060183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_j)); 19070183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_j)); 19080183ed61SJeremy L Thompson } 19090183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_i)); 19100183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_i)); 19110183ed61SJeremy L Thompson } 19120183ed61SJeremy L Thompson } 19130183ed61SJeremy L Thompson 19140183ed61SJeremy L Thompson // -- Input restriction and basis 19150183ed61SJeremy L Thompson code << "\n" << tab << "// -- Input field restrictions and basis actions\n"; 19160183ed61SJeremy L Thompson CeedInt active_field_index = -1; 19170183ed61SJeremy L Thompson 19180183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 19190183ed61SJeremy L Thompson bool is_active = false; 19200183ed61SJeremy L Thompson const char *field_name; 19210183ed61SJeremy L Thompson const CeedInt f = input_field_order[i]; 19220183ed61SJeremy L Thompson 19230183ed61SJeremy L Thompson { 19240183ed61SJeremy L Thompson CeedVector vec; 19250183ed61SJeremy L Thompson 19260183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[f], &vec)); 19270183ed61SJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 19280183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 19290183ed61SJeremy L Thompson } 19300183ed61SJeremy L Thompson 19310183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 19320183ed61SJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 19330183ed61SJeremy L Thompson 19340183ed61SJeremy L Thompson if (is_active) { 19350183ed61SJeremy L Thompson std::string var_suffix = "_in_" + std::to_string(f); 19360183ed61SJeremy L Thompson 19370183ed61SJeremy L Thompson code << tab << "// Active field - no restriction or basis action here\n"; 19380183ed61SJeremy L Thompson if (active_field_index == -1) { 19390183ed61SJeremy L Thompson active_field_index = f; 19400183ed61SJeremy L Thompson code << tab << "CeedScalar r_e" << var_suffix << "[num_comp" << var_suffix << "*" << (max_dim >= 3 ? "P_1d" + var_suffix : "1") 19410183ed61SJeremy L Thompson << "] = {0.0};\n"; 19420183ed61SJeremy L Thompson } else { 19430183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_in_" << active_field_index << ";\n"; 19440183ed61SJeremy L Thompson } 19450183ed61SJeremy L Thompson } else { 19460183ed61SJeremy L Thompson // ---- Restriction 19470183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, f, field_rstr_in_buffer, op_input_fields[f], qf_input_fields[f], 19480183ed61SJeremy L Thompson max_dim, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 19490183ed61SJeremy L Thompson 19500183ed61SJeremy L Thompson // ---- Basis action 19510183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 19520183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 19530183ed61SJeremy L Thompson } 19540183ed61SJeremy L Thompson } 19550183ed61SJeremy L Thompson 19560183ed61SJeremy L Thompson // -- Loop over active field 19570183ed61SJeremy L Thompson std::string active_var_suffix = "_in_" + std::to_string(active_field_index); 19580183ed61SJeremy L Thompson 19590183ed61SJeremy L Thompson code << "\n" << tab << "// Loop over nodes in active field\n"; 19600183ed61SJeremy L Thompson code << tab << "for (CeedInt n = 0; n < num_comp" << active_var_suffix << "*P_1d" << active_var_suffix 19610183ed61SJeremy L Thompson << (max_dim > 1 ? "*P_1d" + active_var_suffix : "") << (max_dim > 2 ? "*P_1d" + active_var_suffix : "") << "; n++) {\n"; 19620183ed61SJeremy L Thompson tab.push(); 19630183ed61SJeremy L Thompson 19640183ed61SJeremy L Thompson // -- Set current active node and component to 1 19650183ed61SJeremy L Thompson code << tab << "// Set current active node and component to 1.0\n"; 19660183ed61SJeremy L Thompson code << tab << "SetEVecStandard" << max_dim << "d_Single<num_comp" << active_var_suffix << ", P_1d" << active_var_suffix << ">(data, n, 1.0, r_e" 19670183ed61SJeremy L Thompson << active_var_suffix << ");\n\n"; 19680183ed61SJeremy L Thompson 19690183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 19700183ed61SJeremy L Thompson bool is_active = false; 19710183ed61SJeremy L Thompson const char *field_name; 19720183ed61SJeremy L Thompson const CeedInt f = input_field_order[i]; 19730183ed61SJeremy L Thompson 19740183ed61SJeremy L Thompson { 19750183ed61SJeremy L Thompson CeedVector vec; 19760183ed61SJeremy L Thompson 19770183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[f], &vec)); 19780183ed61SJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 19790183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 19800183ed61SJeremy L Thompson } 19810183ed61SJeremy L Thompson if (!is_active) continue; 19820183ed61SJeremy L Thompson 19830183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 19840183ed61SJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 19850183ed61SJeremy L Thompson 19860183ed61SJeremy L Thompson // ---- Basis action 19870183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 19880183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 19890183ed61SJeremy L Thompson } 19900183ed61SJeremy L Thompson 19910183ed61SJeremy L Thompson // -- Q function 19920183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelQFunction_Cuda_gen(code, data, tab, max_dim, max_num_points, num_input_fields, op_input_fields, 19930183ed61SJeremy L Thompson qf_input_fields, num_output_fields, op_output_fields, qf_output_fields, qfunction_name, 19940183ed61SJeremy L Thompson Q_1d, is_all_tensor, is_at_points, use_3d_slices)); 19950183ed61SJeremy L Thompson 19960183ed61SJeremy L Thompson // -- Output basis and restriction 19970183ed61SJeremy L Thompson code << "\n" << tab << "// -- Output field basis action and restrictions\n"; 19980183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 19990183ed61SJeremy L Thompson bool is_active = false; 20000183ed61SJeremy L Thompson const char *field_name; 20010183ed61SJeremy L Thompson 20020183ed61SJeremy L Thompson { 20030183ed61SJeremy L Thompson CeedVector vec; 20040183ed61SJeremy L Thompson 20050183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_output_fields[i], &vec)); 20060183ed61SJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 20070183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 20080183ed61SJeremy L Thompson } 20090183ed61SJeremy L Thompson if (!is_active) continue; 20100183ed61SJeremy L Thompson 20110183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 20120183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 20130183ed61SJeremy L Thompson 20140183ed61SJeremy L Thompson // ---- Basis action 20150183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], max_dim, Q_1d, false, 20160183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 20170183ed61SJeremy L Thompson 20180183ed61SJeremy L Thompson // ---- Restriction 20190183ed61SJeremy L Thompson if (is_full) { 2020915834c9SZach Atkins std::string var_suffix = "_out_" + std::to_string(i); 2021915834c9SZach Atkins CeedInt comp_stride; 2022915834c9SZach Atkins CeedSize l_size; 2023915834c9SZach Atkins CeedElemRestriction elem_rstr; 2024915834c9SZach Atkins 2025915834c9SZach Atkins CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 2026915834c9SZach Atkins CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 2027915834c9SZach Atkins code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 2028915834c9SZach Atkins CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 2029915834c9SZach Atkins code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 2030915834c9SZach Atkins code << tab << "WriteLVecStandard" << max_dim << "d_Assembly<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", P_1d" + var_suffix 2031915834c9SZach Atkins << ">(data, l_size" << var_suffix << ", elem, n, r_e" << var_suffix << ", values_array);\n"; 2032915834c9SZach Atkins CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 20330183ed61SJeremy L Thompson } else { 20340183ed61SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 20350183ed61SJeremy L Thompson CeedInt comp_stride; 20360183ed61SJeremy L Thompson CeedSize l_size; 20370183ed61SJeremy L Thompson CeedElemRestriction elem_rstr; 20380183ed61SJeremy L Thompson 20390183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 20400183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 20410183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 20420183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 20430183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 20440183ed61SJeremy L Thompson code << tab << "WriteLVecStandard" << max_dim << "d_Single<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", P_1d" + var_suffix 20450183ed61SJeremy L Thompson << ">(data, l_size" << var_suffix << ", elem, n, indices.outputs[" << i << "], r_e" << var_suffix << ", values_array);\n"; 20460183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 20470183ed61SJeremy L Thompson } 20480183ed61SJeremy L Thompson } 20490183ed61SJeremy L Thompson 20500183ed61SJeremy L Thompson // -- Reset current active node and component 20510183ed61SJeremy L Thompson code << "\n" << tab << "// Reset current active node and component to 0.0\n"; 20520183ed61SJeremy L Thompson code << tab << "SetEVecStandard" << max_dim << "d_Single<num_comp" << active_var_suffix << ", P_1d" << active_var_suffix << ">(data, n, 0.0, r_e" 20530183ed61SJeremy L Thompson << active_var_suffix << ");\n"; 20540183ed61SJeremy L Thompson 20550183ed61SJeremy L Thompson // -- End of loop over active field 20560183ed61SJeremy L Thompson tab.pop(); 20570183ed61SJeremy L Thompson code << tab << "}\n"; 20580183ed61SJeremy L Thompson 20590183ed61SJeremy L Thompson // Close loop and function 20600183ed61SJeremy L Thompson tab.pop(); 20610183ed61SJeremy L Thompson code << tab << "}\n"; 20620183ed61SJeremy L Thompson tab.pop(); 20630183ed61SJeremy L Thompson code << tab << "}\n"; 20640183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n\n"; 20650183ed61SJeremy L Thompson 20660183ed61SJeremy L Thompson // Compile 20670183ed61SJeremy L Thompson { 20680183ed61SJeremy L Thompson bool is_compile_good = false; 20690183ed61SJeremy L Thompson const CeedInt T_1d = CeedIntMax(is_all_tensor ? Q_1d : Q, data->max_P_1d); 20700183ed61SJeremy L Thompson 20710183ed61SJeremy L Thompson data->thread_1d = T_1d; 20720183ed61SJeremy L Thompson CeedCallBackend(CeedTryCompile_Cuda(ceed, code.str().c_str(), &is_compile_good, 20730183ed61SJeremy L Thompson is_full ? &data->module_assemble_full : &data->module_assemble_diagonal, 1, "OP_T_1D", T_1d)); 20740183ed61SJeremy L Thompson if (is_compile_good) { 20750183ed61SJeremy L Thompson *is_good_build = true; 20760183ed61SJeremy L Thompson CeedCallBackend(CeedGetKernel_Cuda(ceed, is_full ? data->module_assemble_full : data->module_assemble_diagonal, operator_name.c_str(), 20770183ed61SJeremy L Thompson is_full ? &data->assemble_full : &data->assemble_diagonal)); 20780183ed61SJeremy L Thompson } else { 20790183ed61SJeremy L Thompson *is_good_build = false; 20800183ed61SJeremy L Thompson data->use_assembly_fallback = true; 20810183ed61SJeremy L Thompson } 20820183ed61SJeremy L Thompson } 20830183ed61SJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 20840183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionDestroy(&qf)); 20850183ed61SJeremy L Thompson return CEED_ERROR_SUCCESS; 20860183ed61SJeremy L Thompson } 20870183ed61SJeremy L Thompson 20880183ed61SJeremy L Thompson extern "C" int CeedOperatorBuildKernelDiagonalAssemblyAtPoints_Cuda_gen(CeedOperator op, bool *is_good_build) { 20890183ed61SJeremy L Thompson return CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen(op, false, is_good_build); 20900183ed61SJeremy L Thompson } 20910183ed61SJeremy L Thompson 2092915834c9SZach Atkins extern "C" int CeedOperatorBuildKernelFullAssemblyAtPoints_Cuda_gen(CeedOperator op, bool *is_good_build) { 2093915834c9SZach Atkins return CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen(op, true, is_good_build); 2094915834c9SZach Atkins } 2095915834c9SZach Atkins 20960183ed61SJeremy L Thompson //------------------------------------------------------------------------------ 20970816752eSJeremy L Thompson // Build QFunction assembly operator kernel 20980816752eSJeremy L Thompson //------------------------------------------------------------------------------ 20990816752eSJeremy L Thompson extern "C" int CeedOperatorBuildKernelLinearAssembleQFunction_Cuda_gen(CeedOperator op, bool *is_good_build) { 21000816752eSJeremy L Thompson bool is_all_tensor = true, is_all_nontensor = true, is_at_points = false, use_3d_slices = false; 21010816752eSJeremy L Thompson Ceed ceed; 21020816752eSJeremy L Thompson CeedInt Q, Q_1d, num_input_fields, num_output_fields, max_dim = 1, max_num_points = 0; 21030816752eSJeremy L Thompson CeedQFunctionField *qf_input_fields, *qf_output_fields; 21040816752eSJeremy L Thompson CeedQFunction_Cuda_gen *qf_data; 21050816752eSJeremy L Thompson CeedQFunction qf; 21060816752eSJeremy L Thompson CeedOperatorField *op_input_fields, *op_output_fields; 21070816752eSJeremy L Thompson CeedOperator_Cuda_gen *data; 21080816752eSJeremy L Thompson std::ostringstream code; 21090816752eSJeremy L Thompson Tab tab; 21100816752eSJeremy L Thompson 21110816752eSJeremy L Thompson // Check compatibility 21120816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetCeed(op, &ceed)); 21130816752eSJeremy L Thompson CeedCallBackend(CeedOperatorIsAtPoints(op, &is_at_points)); 21140816752eSJeremy L Thompson CeedCheck(!is_at_points, ceed, CEED_ERROR_BACKEND, "AtPoints QFunction assembly is not supported"); 21150816752eSJeremy L Thompson 21160816752eSJeremy L Thompson // Check field compatibility 21170816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetFields(op, &num_input_fields, &op_input_fields, &num_output_fields, &op_output_fields)); 21180816752eSJeremy L Thompson { 21190816752eSJeremy L Thompson bool has_shared_bases = true; 21200816752eSJeremy L Thompson 21210816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 21220816752eSJeremy L Thompson CeedBasis basis; 21230816752eSJeremy L Thompson 21240816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 21250816752eSJeremy L Thompson if (basis != CEED_BASIS_NONE) { 21260816752eSJeremy L Thompson bool is_tensor = true; 21270816752eSJeremy L Thompson const char *resource; 21280816752eSJeremy L Thompson char *resource_root; 21290816752eSJeremy L Thompson Ceed basis_ceed; 21300816752eSJeremy L Thompson 21310816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 21320816752eSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 21330816752eSJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 21340816752eSJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 21350816752eSJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 21360816752eSJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 21370816752eSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 21380816752eSJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 21390816752eSJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 21400816752eSJeremy L Thompson } 21410816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 21420816752eSJeremy L Thompson } 21430816752eSJeremy L Thompson 21440816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 21450816752eSJeremy L Thompson CeedBasis basis; 21460816752eSJeremy L Thompson 21470816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 21480816752eSJeremy L Thompson if (basis != CEED_BASIS_NONE) { 21490816752eSJeremy L Thompson bool is_tensor = true; 21500816752eSJeremy L Thompson const char *resource; 21510816752eSJeremy L Thompson char *resource_root; 21520816752eSJeremy L Thompson Ceed basis_ceed; 21530816752eSJeremy L Thompson 21540816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 21550816752eSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 21560816752eSJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 21570816752eSJeremy L Thompson 21580816752eSJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 21590816752eSJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 21600816752eSJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 21610816752eSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 21620816752eSJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 21630816752eSJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 21640816752eSJeremy L Thompson } 21650816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 21660816752eSJeremy L Thompson } 21670816752eSJeremy L Thompson } 21680816752eSJeremy L Thompson 21690816752eSJeremy L Thompson // Retrieve operator data 21700816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetData(op, &data)); 21710816752eSJeremy L Thompson Q = data->Q; 21720816752eSJeremy L Thompson Q_1d = data->Q_1d; 21730816752eSJeremy L Thompson max_dim = data->dim; 21740816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetQFunction(op, &qf)); 21750816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionGetData(qf, &qf_data)); 21760816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionGetFields(qf, NULL, &qf_input_fields, NULL, &qf_output_fields)); 21770816752eSJeremy L Thompson 21780816752eSJeremy L Thompson // Add atomicAdd function for old NVidia architectures 21790816752eSJeremy L Thompson { 21800816752eSJeremy L Thompson Ceed_Cuda *ceed_data; 21810816752eSJeremy L Thompson struct cudaDeviceProp prop; 21820816752eSJeremy L Thompson 21830816752eSJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_data)); 21840816752eSJeremy L Thompson CeedCallBackend(cudaGetDeviceProperties(&prop, ceed_data->device_id)); 21850816752eSJeremy L Thompson if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { 21860816752eSJeremy L Thompson code << tab << "// AtomicAdd fallback source\n"; 21870816752eSJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-atomic-add-fallback.h>\n\n"; 21880816752eSJeremy L Thompson } 21890816752eSJeremy L Thompson } 21900816752eSJeremy L Thompson 21910816752eSJeremy L Thompson // Load basis source files 21920816752eSJeremy L Thompson if (!is_all_nontensor) { 21930816752eSJeremy L Thompson code << tab << "// Tensor basis source\n"; 21940816752eSJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-templates.h>\n\n"; 21950816752eSJeremy L Thompson } 21960816752eSJeremy L Thompson if (!is_all_tensor) { 21970816752eSJeremy L Thompson code << tab << "// Non-tensor basis source\n"; 21980816752eSJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-nontensor-templates.h>\n\n"; 21990816752eSJeremy L Thompson } 22000816752eSJeremy L Thompson if (!is_all_tensor && !is_all_nontensor) { 22010816752eSJeremy L Thompson code << "// Tensor basis source\n"; 22020816752eSJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-flattened-templates.h>\n\n"; 22030816752eSJeremy L Thompson } 22040816752eSJeremy L Thompson code << "// CodeGen operator source\n"; 22050816752eSJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-gen-templates.h>\n\n"; 22060816752eSJeremy L Thompson 22070816752eSJeremy L Thompson // Get QFunction name 22080816752eSJeremy L Thompson std::string qfunction_name(qf_data->qfunction_name); 22090816752eSJeremy L Thompson std::string operator_name; 22100816752eSJeremy L Thompson 22110816752eSJeremy L Thompson operator_name = "CeedKernelCudaGenQFunctionAssembly_" + qfunction_name; 22120816752eSJeremy L Thompson 22130816752eSJeremy L Thompson // Define CEED_Q_VLA 22140816752eSJeremy L Thompson code << "\n" << tab << "#undef CEED_Q_VLA\n"; 22150816752eSJeremy L Thompson if (max_dim != 3 || is_at_points || use_3d_slices || !is_all_tensor) { 22160816752eSJeremy L Thompson code << tab << "#define CEED_Q_VLA 1\n\n"; 22170816752eSJeremy L Thompson } else { 22180816752eSJeremy L Thompson code << tab << "#define CEED_Q_VLA " << Q_1d << "\n\n"; 22190816752eSJeremy L Thompson } 22200816752eSJeremy L Thompson 22210816752eSJeremy L Thompson // Add user QFunction source 22220816752eSJeremy L Thompson { 22230816752eSJeremy L Thompson const char *source_path; 22240816752eSJeremy L Thompson 22250816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionGetSourcePath(qf, &source_path)); 22260816752eSJeremy L Thompson CeedCheck(source_path, ceed, CEED_ERROR_UNSUPPORTED, "/gpu/cuda/gen backend requires QFunction source code file"); 22270816752eSJeremy L Thompson 22280816752eSJeremy L Thompson code << tab << "// User QFunction source\n"; 22290816752eSJeremy L Thompson code << tab << "#include \"" << source_path << "\"\n\n"; 22300816752eSJeremy L Thompson } 22310816752eSJeremy L Thompson 22320816752eSJeremy L Thompson // Setup 22330816752eSJeremy L Thompson code << "\n" << tab << "// -----------------------------------------------------------------------------\n"; 22340816752eSJeremy L Thompson code << tab << "// Operator Assembly Kernel\n"; 22350816752eSJeremy L Thompson code << tab << "// \n"; 22360816752eSJeremy L Thompson code << tab << "// d_[in,out]_i: CeedVector device array\n"; 22370816752eSJeremy L Thompson code << tab << "// r_[in,out]_e_i: Element vector register\n"; 22380816752eSJeremy L Thompson code << tab << "// r_[in,out]_q_i: Quadrature space vector register\n"; 22390816752eSJeremy L Thompson code << tab << "// r_[in,out]_c_i: AtPoints Chebyshev coefficients register\n"; 22400816752eSJeremy L Thompson code << tab << "// r_[in,out]_s_i: Quadrature space slice vector register\n"; 22410816752eSJeremy L Thompson code << tab << "// \n"; 22420816752eSJeremy L Thompson code << tab << "// s_B_[in,out]_i: Interpolation matrix, shared memory\n"; 22430816752eSJeremy L Thompson code << tab << "// s_G_[in,out]_i: Gradient matrix, shared memory\n"; 22440816752eSJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n"; 22450816752eSJeremy L Thompson code << tab << "extern \"C\" __global__ void " << operator_name 22460816752eSJeremy L Thompson << "(CeedInt num_elem, void* ctx, FieldsInt_Cuda indices, Fields_Cuda fields, Fields_Cuda B, Fields_Cuda G, CeedScalar *W, Points_Cuda " 22470816752eSJeremy L Thompson "points, CeedScalar *__restrict__ values_array) {\n"; 22480816752eSJeremy L Thompson tab.push(); 22490816752eSJeremy L Thompson 22500816752eSJeremy L Thompson // Scratch buffers 22510816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 22520816752eSJeremy L Thompson CeedEvalMode eval_mode; 22530816752eSJeremy L Thompson 22540816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 22550816752eSJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) { // Skip CEED_EVAL_WEIGHT 22560816752eSJeremy L Thompson code << tab << "const CeedScalar *__restrict__ d_in_" << i << " = fields.inputs[" << i << "];\n"; 22570816752eSJeremy L Thompson } 22580816752eSJeremy L Thompson } 22590816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 22600816752eSJeremy L Thompson code << tab << "CeedScalar *__restrict__ d_out_" << i << " = fields.outputs[" << i << "];\n"; 22610816752eSJeremy L Thompson } 22620816752eSJeremy L Thompson 22630816752eSJeremy L Thompson code << tab << "const CeedInt max_dim = " << max_dim << ";\n"; 22640816752eSJeremy L Thompson if (!is_all_tensor) { 22650816752eSJeremy L Thompson code << tab << "const CeedInt Q = " << Q << ";\n"; 22660816752eSJeremy L Thompson } 22670816752eSJeremy L Thompson if (!is_all_nontensor) { 22680816752eSJeremy L Thompson code << tab << "const CeedInt Q_1d = " << Q_1d << ";\n"; 22690816752eSJeremy L Thompson } 22700816752eSJeremy L Thompson 22710816752eSJeremy L Thompson // Shared data 22720816752eSJeremy L Thompson code << tab << "extern __shared__ CeedScalar slice[];\n"; 22730816752eSJeremy L Thompson code << tab << "SharedData_Cuda data;\n"; 22740816752eSJeremy L Thompson code << tab << "data.t_id_x = threadIdx.x;\n"; 22750816752eSJeremy L Thompson code << tab << "data.t_id_y = threadIdx.y;\n"; 22760816752eSJeremy L Thompson code << tab << "data.t_id_z = threadIdx.z;\n"; 22770816752eSJeremy L Thompson code << tab << "data.t_id = threadIdx.x + threadIdx.y*blockDim.x + threadIdx.z*blockDim.y*blockDim.x;\n"; 22780816752eSJeremy L Thompson code << tab << "data.slice = slice + data.t_id_z*OP_T_1D" << ((!is_all_tensor || max_dim == 1) ? "" : "*OP_T_1D") << ";\n"; 22790816752eSJeremy L Thompson 22800816752eSJeremy L Thompson // -- Determine input mat reuse 22810816752eSJeremy L Thompson FieldReuse_Cuda input_matrix_reuse[CEED_FIELD_MAX]; 22820816752eSJeremy L Thompson 22830816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 22840816752eSJeremy L Thompson input_matrix_reuse[i].index = -1; 22850816752eSJeremy L Thompson } 22860816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 22870816752eSJeremy L Thompson bool is_tensor = true; 22880816752eSJeremy L Thompson CeedEvalMode eval_mode_i; 22890816752eSJeremy L Thompson CeedBasis basis_i; 22900816752eSJeremy L Thompson 22910816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode_i)); 22920816752eSJeremy L Thompson if (eval_mode_i == CEED_EVAL_WEIGHT) continue; 22930816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis_i)); 22940816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 22950816752eSJeremy L Thompson for (CeedInt j = 0; (input_matrix_reuse[i].index == -1) && (j < i); j++) { 22960816752eSJeremy L Thompson CeedEvalMode eval_mode_j; 22970816752eSJeremy L Thompson CeedBasis basis_j; 22980816752eSJeremy L Thompson 22990816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 23000816752eSJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 23010816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 23020816752eSJeremy L Thompson if (basis_i == basis_j) { 23030816752eSJeremy L Thompson if (is_tensor) { 23040816752eSJeremy L Thompson input_matrix_reuse[i].index = j; 23050816752eSJeremy L Thompson input_matrix_reuse[i].is_input = true; 23060816752eSJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 23070816752eSJeremy L Thompson } else { 23080816752eSJeremy L Thompson // For non-tensor can only re-use with the same eval mode 23090816752eSJeremy L Thompson if (eval_mode_i == eval_mode_j) { 23100816752eSJeremy L Thompson input_matrix_reuse[i].index = j; 23110816752eSJeremy L Thompson input_matrix_reuse[i].is_input = true; 23120816752eSJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 23130816752eSJeremy L Thompson } 23140816752eSJeremy L Thompson } 23150816752eSJeremy L Thompson } 23160816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 23170816752eSJeremy L Thompson } 23180816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 23190816752eSJeremy L Thompson } 23200816752eSJeremy L Thompson 23210816752eSJeremy L Thompson // -- Determine output mat reuse 23220816752eSJeremy L Thompson FieldReuse_Cuda output_matrix_reuse[CEED_FIELD_MAX]; 23230816752eSJeremy L Thompson 23240816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 23250816752eSJeremy L Thompson output_matrix_reuse[i].index = -1; 23260816752eSJeremy L Thompson } 23270816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 23280816752eSJeremy L Thompson bool is_tensor = true; 23290816752eSJeremy L Thompson CeedEvalMode eval_mode_i; 23300816752eSJeremy L Thompson CeedBasis basis_i; 23310816752eSJeremy L Thompson 23320816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode_i)); 23330816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis_i)); 23340816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 23350816752eSJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < num_input_fields); j++) { 23360816752eSJeremy L Thompson CeedEvalMode eval_mode_j; 23370816752eSJeremy L Thompson CeedBasis basis_j; 23380816752eSJeremy L Thompson 23390816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 23400816752eSJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 23410816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 23420816752eSJeremy L Thompson if (basis_i == basis_j) { 23430816752eSJeremy L Thompson if (is_tensor) { 23440816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 23450816752eSJeremy L Thompson output_matrix_reuse[i].is_input = true; 23460816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 23470816752eSJeremy L Thompson } else { 23480816752eSJeremy L Thompson // For non-tensor can only re-use with the same eval mode 23490816752eSJeremy L Thompson if (eval_mode_i == eval_mode_j) { 23500816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 23510816752eSJeremy L Thompson output_matrix_reuse[i].is_input = true; 23520816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 23530816752eSJeremy L Thompson } 23540816752eSJeremy L Thompson } 23550816752eSJeremy L Thompson } 23560816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 23570816752eSJeremy L Thompson } 23580816752eSJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < i); j++) { 23590816752eSJeremy L Thompson CeedEvalMode eval_mode_j; 23600816752eSJeremy L Thompson CeedBasis basis_j; 23610816752eSJeremy L Thompson 23620816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[j], &eval_mode_j)); 23630816752eSJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 23640816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[j], &basis_j)); 23650816752eSJeremy L Thompson if (basis_i == basis_j) { 23660816752eSJeremy L Thompson if (is_tensor) { 23670816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 23680816752eSJeremy L Thompson output_matrix_reuse[i].is_input = false; 23690816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 23700816752eSJeremy L Thompson } else { 23710816752eSJeremy L Thompson // For non-tensor can only re-use with the same eval mode 23720816752eSJeremy L Thompson if (eval_mode_i == eval_mode_j) { 23730816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 23740816752eSJeremy L Thompson output_matrix_reuse[i].is_input = false; 23750816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 23760816752eSJeremy L Thompson } 23770816752eSJeremy L Thompson } 23780816752eSJeremy L Thompson } 23790816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 23800816752eSJeremy L Thompson } 23810816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 23820816752eSJeremy L Thompson } 23830816752eSJeremy L Thompson 23840816752eSJeremy L Thompson // Initialize constants, and matrices B and G 23850816752eSJeremy L Thompson code << "\n" << tab << "// Input field constants and basis data\n"; 23860816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 23870816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_input_fields[i], qf_input_fields[i], input_matrix_reuse[i], 23880816752eSJeremy L Thompson max_dim, Q, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 23890816752eSJeremy L Thompson } 23900816752eSJeremy L Thompson code << "\n" << tab << "// Output field constants and basis data\n"; 23910816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 23920816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], output_matrix_reuse[i], 23930816752eSJeremy L Thompson max_dim, Q, Q_1d, false, is_all_tensor, is_at_points, use_3d_slices)); 23940816752eSJeremy L Thompson } 23950816752eSJeremy L Thompson 23960816752eSJeremy L Thompson // Loop over all elements 23970816752eSJeremy L Thompson code << "\n" << tab << "// Element loop\n"; 23980816752eSJeremy L Thompson code << tab << "__syncthreads();\n"; 23990816752eSJeremy L Thompson code << tab << "for (CeedInt elem = blockIdx.x*blockDim.z + threadIdx.z; elem < num_elem; elem += gridDim.x*blockDim.z) {\n"; 24000816752eSJeremy L Thompson tab.push(); 24010816752eSJeremy L Thompson 24020816752eSJeremy L Thompson // -- Compute minimum buffer space needed 24030816752eSJeremy L Thompson CeedInt max_rstr_buffer_size = 1; 24040816752eSJeremy L Thompson 24050816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 24060816752eSJeremy L Thompson CeedEvalMode eval_mode; 24070816752eSJeremy L Thompson 24080816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 24090816752eSJeremy L Thompson if (eval_mode != CEED_EVAL_NONE && eval_mode != CEED_EVAL_WEIGHT) { 24100816752eSJeremy L Thompson CeedInt num_comp; 24110816752eSJeremy L Thompson CeedElemRestriction elem_rstr; 24120816752eSJeremy L Thompson 24130816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 24140816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 24150816752eSJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 24160816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 24170816752eSJeremy L Thompson } 24180816752eSJeremy L Thompson } 24190816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 24200816752eSJeremy L Thompson CeedEvalMode eval_mode; 24210816752eSJeremy L Thompson 24220816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 24230816752eSJeremy L Thompson if (eval_mode != CEED_EVAL_NONE) { 24240816752eSJeremy L Thompson CeedInt num_comp; 24250816752eSJeremy L Thompson CeedElemRestriction elem_rstr; 24260816752eSJeremy L Thompson 24270816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 24280816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 24290816752eSJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 24300816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 24310816752eSJeremy L Thompson } 24320816752eSJeremy L Thompson } 24330816752eSJeremy L Thompson code << tab << "// Scratch restriction buffer space\n"; 24340816752eSJeremy L Thompson code << tab << "CeedScalar r_e_scratch[" << max_rstr_buffer_size << "];\n"; 24350816752eSJeremy L Thompson 24360816752eSJeremy L Thompson // -- Determine best input field processing order 24370816752eSJeremy L Thompson CeedInt field_rstr_in_buffer[CEED_FIELD_MAX], input_field_order[CEED_FIELD_MAX]; 24380816752eSJeremy L Thompson 24390816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 24400816752eSJeremy L Thompson field_rstr_in_buffer[i] = -1; 24410816752eSJeremy L Thompson input_field_order[i] = -1; 24420816752eSJeremy L Thompson } 24430816752eSJeremy L Thompson { 24440816752eSJeremy L Thompson bool is_ordered[CEED_FIELD_MAX]; 24450816752eSJeremy L Thompson CeedInt curr_index = 0; 24460816752eSJeremy L Thompson 24470816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) is_ordered[i] = false; 24480816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 24490816752eSJeremy L Thompson CeedVector vec_i; 24500816752eSJeremy L Thompson CeedElemRestriction rstr_i; 24510816752eSJeremy L Thompson 24520816752eSJeremy L Thompson if (is_ordered[i]) continue; 24530816752eSJeremy L Thompson field_rstr_in_buffer[i] = i; 24540816752eSJeremy L Thompson is_ordered[i] = true; 24550816752eSJeremy L Thompson input_field_order[curr_index] = i; 24560816752eSJeremy L Thompson curr_index++; 24570816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[i], &vec_i)); 24580816752eSJeremy L Thompson if (vec_i == CEED_VECTOR_NONE) continue; // CEED_EVAL_WEIGHT 24590816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &rstr_i)); 24600816752eSJeremy L Thompson for (CeedInt j = i + 1; j < num_input_fields; j++) { 24610816752eSJeremy L Thompson CeedVector vec_j; 24620816752eSJeremy L Thompson CeedElemRestriction rstr_j; 24630816752eSJeremy L Thompson 24640816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[j], &vec_j)); 24650816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[j], &rstr_j)); 24660816752eSJeremy L Thompson if (rstr_i == rstr_j && vec_i == vec_j) { 24670816752eSJeremy L Thompson field_rstr_in_buffer[j] = i; 24680816752eSJeremy L Thompson is_ordered[j] = true; 24690816752eSJeremy L Thompson input_field_order[curr_index] = j; 24700816752eSJeremy L Thompson curr_index++; 24710816752eSJeremy L Thompson } 24720816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_j)); 24730816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_j)); 24740816752eSJeremy L Thompson } 24750816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_i)); 24760816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_i)); 24770816752eSJeremy L Thompson } 24780816752eSJeremy L Thompson } 24790816752eSJeremy L Thompson 24800816752eSJeremy L Thompson // -- Input restriction and basis 24810816752eSJeremy L Thompson code << "\n" << tab << "// -- Input field restrictions and basis actions\n"; 24820816752eSJeremy L Thompson CeedInt num_active_in = 0, num_active_out = 0, qf_assembly_size_out = 0; 24830816752eSJeremy L Thompson CeedInt active_fields_in[CEED_FIELD_MAX], active_fields_out[CEED_FIELD_MAX]; 24840816752eSJeremy L Thompson 24850816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 24860816752eSJeremy L Thompson bool is_active = false; 24870816752eSJeremy L Thompson const char *field_name; 24880816752eSJeremy L Thompson const CeedInt f = input_field_order[i]; 24890816752eSJeremy L Thompson 24900816752eSJeremy L Thompson { 24910816752eSJeremy L Thompson CeedVector vec; 24920816752eSJeremy L Thompson 24930816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[f], &vec)); 24940816752eSJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 24950816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 24960816752eSJeremy L Thompson } 24970816752eSJeremy L Thompson 24980816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 24990816752eSJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 25000816752eSJeremy L Thompson 25010816752eSJeremy L Thompson if (is_active) { 25020816752eSJeremy L Thompson CeedEvalMode eval_mode; 25030816752eSJeremy L Thompson CeedInt field_size; 25040816752eSJeremy L Thompson 25050816752eSJeremy L Thompson active_fields_in[num_active_in] = f; 25060816752eSJeremy L Thompson num_active_in++; 25070816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetSize(qf_input_fields[f], &field_size)); 25080816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[f], &eval_mode)); 25090816752eSJeremy L Thompson if (eval_mode == CEED_EVAL_GRAD) { 25100816752eSJeremy L Thompson code << tab << "CeedScalar r_q_in_" << f << "[num_comp_in_" << f << "*" << "dim_in_" << f << "*" 25110816752eSJeremy L Thompson << (is_all_tensor && (max_dim >= 3) ? "Q_1d" : "1") << "] = {0.};\n"; 25120816752eSJeremy L Thompson } else { 25130816752eSJeremy L Thompson code << tab << "CeedScalar r_q_in_" << f << "[num_comp_in_" << f << "*" << (is_all_tensor && (max_dim >= 3) ? "Q_1d" : "1") << "] = {0.};\n"; 25140816752eSJeremy L Thompson } 25150816752eSJeremy L Thompson code << tab << "const CeedInt field_size_in_" << f << " = " << field_size << ";\n"; 25160816752eSJeremy L Thompson } else { 25170816752eSJeremy L Thompson // ---- Restriction 25180816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, f, field_rstr_in_buffer, op_input_fields[f], qf_input_fields[f], 25190816752eSJeremy L Thompson max_dim, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 25200816752eSJeremy L Thompson 25210816752eSJeremy L Thompson // ---- Basis action 25220816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 25230816752eSJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 25240816752eSJeremy L Thompson } 25250816752eSJeremy L Thompson } 25260816752eSJeremy L Thompson code << tab << "const CeedInt field_sizes_in[" << num_active_in << "] = {"; 25270816752eSJeremy L Thompson for (CeedInt i = 0; i < num_active_in; i++) { 25280816752eSJeremy L Thompson code << "field_size_in_" << active_fields_in[i] << (i < num_active_in - 1 ? ", " : ""); 25290816752eSJeremy L Thompson } 25300816752eSJeremy L Thompson code << "};\n"; 25310816752eSJeremy L Thompson code << tab << "CeedScalar * r_q_in[" << num_active_in << "] = {"; 25320816752eSJeremy L Thompson for (CeedInt i = 0; i < num_active_in; i++) { 25330816752eSJeremy L Thompson code << "r_q_in_" << active_fields_in[i] << (i < num_active_in - 1 ? ", " : ""); 25340816752eSJeremy L Thompson } 25350816752eSJeremy L Thompson code << "};\n"; 25360816752eSJeremy L Thompson 25370816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 25380816752eSJeremy L Thompson bool is_active = false; 25390816752eSJeremy L Thompson 25400816752eSJeremy L Thompson { 25410816752eSJeremy L Thompson CeedVector vec; 25420816752eSJeremy L Thompson 25430816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_output_fields[i], &vec)); 25440816752eSJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 25450816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 25460816752eSJeremy L Thompson } 25470816752eSJeremy L Thompson if (is_active) { 25480816752eSJeremy L Thompson const char *field_name; 25490816752eSJeremy L Thompson CeedInt field_size; 25500816752eSJeremy L Thompson 25510816752eSJeremy L Thompson active_fields_out[num_active_out] = i; 25520816752eSJeremy L Thompson num_active_out++; 25530816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetSize(qf_output_fields[i], &field_size)); 25540816752eSJeremy L Thompson qf_assembly_size_out += field_size; 25550816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 25560816752eSJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 25570816752eSJeremy L Thompson code << tab << "const CeedInt field_size_out_" << i << " = " << field_size << ";\n"; 25580816752eSJeremy L Thompson } 25590816752eSJeremy L Thompson } 25600816752eSJeremy L Thompson code << tab << "const CeedInt field_sizes_out[" << num_active_out << "] = {"; 25610816752eSJeremy L Thompson for (CeedInt i = 0; i < num_active_out; i++) { 25620816752eSJeremy L Thompson code << "field_size_out_" << active_fields_out[i] << (i < num_active_out - 1 ? ", " : ""); 25630816752eSJeremy L Thompson } 25640816752eSJeremy L Thompson code << "};\n"; 25650816752eSJeremy L Thompson code << tab << "const CeedInt total_size_out = " << qf_assembly_size_out << ";\n"; 25660816752eSJeremy L Thompson 25670816752eSJeremy L Thompson // -- Loop over active field 25680816752eSJeremy L Thompson code << "\n" << tab << "CeedInt input_offset = 0;\n"; 25690816752eSJeremy L Thompson code << tab << "// Loop over active QFunction input fields\n"; 25700816752eSJeremy L Thompson code << tab << "const CeedInt num_active_in = " << num_active_in << ";\n"; 25710816752eSJeremy L Thompson code << tab << "for (CeedInt a = 0; a < num_active_in; a++) {\n"; 25720816752eSJeremy L Thompson tab.push(); 25730816752eSJeremy L Thompson 25740816752eSJeremy L Thompson // -- Loop over size of active field 25750816752eSJeremy L Thompson code << "\n" << tab << "// Loop over current active input field size\n"; 25760816752eSJeremy L Thompson code << tab << "const CeedInt field_size_in = field_sizes_in[a];\n"; 25770816752eSJeremy L Thompson code << tab << "for (CeedInt s = 0; s < field_size_in; s++) {\n"; 25780816752eSJeremy L Thompson tab.push(); 25790816752eSJeremy L Thompson 25800816752eSJeremy L Thompson // -- Set current active point and component to 1 25810816752eSJeremy L Thompson code << tab << "// Set current active point and component to 1.0\n"; 25820816752eSJeremy L Thompson if (is_all_tensor && (max_dim >= 3)) { 25830816752eSJeremy L Thompson code << tab << "for (CeedInt i = 0; i < Q_1d; i++) r_q_in[a][i + s * Q_1d] = 1.0;\n"; 25840816752eSJeremy L Thompson } else { 25850816752eSJeremy L Thompson code << tab << "r_q_in[a][s] = 1.0;\n"; 25860816752eSJeremy L Thompson } 25870816752eSJeremy L Thompson 25880816752eSJeremy L Thompson // -- Q function 25890816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelQFunction_Cuda_gen(code, data, tab, max_dim, max_num_points, num_input_fields, op_input_fields, 25900816752eSJeremy L Thompson qf_input_fields, num_output_fields, op_output_fields, qf_output_fields, qfunction_name, 25910816752eSJeremy L Thompson Q_1d, is_all_tensor, is_at_points, use_3d_slices)); 25920816752eSJeremy L Thompson 25930816752eSJeremy L Thompson // -- Output basis and restriction 25940816752eSJeremy L Thompson code << "\n" << tab << "// -- Output field basis action and restrictions\n"; 25950816752eSJeremy L Thompson CeedScalar offset = 0; 25960816752eSJeremy L Thompson 25970816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 25980816752eSJeremy L Thompson bool is_active = false; 25990816752eSJeremy L Thompson const char *field_name; 26000816752eSJeremy L Thompson 26010816752eSJeremy L Thompson { 26020816752eSJeremy L Thompson CeedVector vec; 26030816752eSJeremy L Thompson 26040816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_output_fields[i], &vec)); 26050816752eSJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 26060816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 26070816752eSJeremy L Thompson } 26080816752eSJeremy L Thompson if (!is_active) continue; 26090816752eSJeremy L Thompson 26100816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 26110816752eSJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 26120816752eSJeremy L Thompson 26130816752eSJeremy L Thompson // ---- Restriction 26140816752eSJeremy L Thompson CeedInt field_size; 26150816752eSJeremy L Thompson 26160816752eSJeremy L Thompson code << tab << "WriteLVecStandard" << (is_all_tensor ? max_dim : 1) << "d_QFAssembly<total_size_out, field_size_out_" << i << ", " 26170816752eSJeremy L Thompson << (is_all_tensor ? "Q_1d" : "Q") << ">(data, num_elem, elem, input_offset + s, " << offset << ", r_q_out_" << i << ", values_array);\n"; 26180816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetSize(qf_output_fields[i], &field_size)); 26190816752eSJeremy L Thompson offset += field_size; 26200816752eSJeremy L Thompson } 26210816752eSJeremy L Thompson 26220816752eSJeremy L Thompson // -- Reset current active node and component 26230816752eSJeremy L Thompson code << "\n" << tab << "// Reset current active node and component to 0.0\n"; 26240816752eSJeremy L Thompson if (is_all_tensor && (max_dim >= 3)) { 26250816752eSJeremy L Thompson code << tab << "for (CeedInt i = 0; i < Q_1d; i++) r_q_in[a][i + s * Q_1d] = 0.0;\n"; 26260816752eSJeremy L Thompson } else { 26270816752eSJeremy L Thompson code << tab << "r_q_in[a][s] = 0.0;\n"; 26280816752eSJeremy L Thompson } 26290816752eSJeremy L Thompson 26300816752eSJeremy L Thompson // -- End of loop over size of active field 26310816752eSJeremy L Thompson tab.pop(); 26320816752eSJeremy L Thompson code << tab << "}\n"; 26330816752eSJeremy L Thompson code << tab << "input_offset += field_size_in;\n"; 26340816752eSJeremy L Thompson 26350816752eSJeremy L Thompson // -- End of loop over active field 26360816752eSJeremy L Thompson tab.pop(); 26370816752eSJeremy L Thompson code << tab << "}\n"; 26380816752eSJeremy L Thompson 26390816752eSJeremy L Thompson // Close loop and function 26400816752eSJeremy L Thompson tab.pop(); 26410816752eSJeremy L Thompson code << tab << "}\n"; 26420816752eSJeremy L Thompson tab.pop(); 26430816752eSJeremy L Thompson code << tab << "}\n"; 26440816752eSJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n\n"; 26450816752eSJeremy L Thompson 26460816752eSJeremy L Thompson // Compile 26470816752eSJeremy L Thompson { 26480816752eSJeremy L Thompson bool is_compile_good = false; 26490816752eSJeremy L Thompson const CeedInt T_1d = CeedIntMax(is_all_tensor ? Q_1d : Q, data->max_P_1d); 26500816752eSJeremy L Thompson 26510816752eSJeremy L Thompson data->thread_1d = T_1d; 26520816752eSJeremy L Thompson CeedCallBackend(CeedTryCompile_Cuda(ceed, code.str().c_str(), &is_compile_good, &data->module_assemble_qfunction, 1, "OP_T_1D", T_1d)); 26530816752eSJeremy L Thompson if (is_compile_good) { 26540816752eSJeremy L Thompson *is_good_build = true; 26550816752eSJeremy L Thompson CeedCallBackend(CeedGetKernel_Cuda(ceed, data->module_assemble_qfunction, operator_name.c_str(), &data->assemble_qfunction)); 26560816752eSJeremy L Thompson } else { 26570816752eSJeremy L Thompson *is_good_build = false; 26580816752eSJeremy L Thompson data->use_assembly_fallback = true; 26590816752eSJeremy L Thompson } 26600816752eSJeremy L Thompson } 26610816752eSJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 26620816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionDestroy(&qf)); 26630816752eSJeremy L Thompson return CEED_ERROR_SUCCESS; 26640816752eSJeremy L Thompson } 26650816752eSJeremy L Thompson 26660816752eSJeremy L Thompson //------------------------------------------------------------------------------ 2667