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 { 2640183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_B" << var_suffix << "[" << P_name << "*" << Q_name << "];\n"; 2650183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << P_name << ", " << Q_name << ">(data, B." << option_name << "[" << i << "], s_B" << var_suffix << ");\n"; 2660a2a6492SJeremy L Thompson } 2674b3e95d5SJeremy L Thompson break; 2684b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 2698b97b69aSJeremy L Thompson if (is_at_points) { 2708b97b69aSJeremy L Thompson // AtPoints 2718b97b69aSJeremy L Thompson if (!basis_data->d_chebyshev_interp_1d) { 2728b97b69aSJeremy L Thompson CeedSize interp_bytes; 2738b97b69aSJeremy L Thompson CeedScalar *chebyshev_interp_1d; 2748b97b69aSJeremy L Thompson 2758b97b69aSJeremy L Thompson interp_bytes = P_1d * Q_1d * sizeof(CeedScalar); 2768b97b69aSJeremy L Thompson CeedCallBackend(CeedCalloc(P_1d * Q_1d, &chebyshev_interp_1d)); 2778b97b69aSJeremy L Thompson CeedCallBackend(CeedBasisGetChebyshevInterp1D(basis, chebyshev_interp_1d)); 2788b97b69aSJeremy L Thompson CeedCallCuda(CeedBasisReturnCeed(basis), cudaMalloc((void **)&basis_data->d_chebyshev_interp_1d, interp_bytes)); 2798b97b69aSJeremy L Thompson CeedCallCuda(CeedBasisReturnCeed(basis), 2808b97b69aSJeremy L Thompson cudaMemcpy(basis_data->d_chebyshev_interp_1d, chebyshev_interp_1d, interp_bytes, cudaMemcpyHostToDevice)); 2818b97b69aSJeremy L Thompson CeedCallBackend(CeedFree(&chebyshev_interp_1d)); 2828b97b69aSJeremy L Thompson } 2838b97b69aSJeremy L Thompson if (is_input) data->B.inputs[i] = basis_data->d_chebyshev_interp_1d; 2848b97b69aSJeremy L Thompson else data->B.outputs[i] = basis_data->d_chebyshev_interp_1d; 2858b97b69aSJeremy L Thompson } else { 2868b97b69aSJeremy L Thompson // Standard quadrature 2874b3e95d5SJeremy L Thompson if (is_input) data->B.inputs[i] = basis_data->d_interp_1d; 2884b3e95d5SJeremy L Thompson else data->B.outputs[i] = basis_data->d_interp_1d; 2898b97b69aSJeremy L Thompson } 290dc007f05SJeremy L Thompson if (is_tensor) { 2910a2a6492SJeremy L Thompson if (use_previous_field) { 29245a787f7SJeremy L Thompson std::string reuse_var = "s_B" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 2930a2a6492SJeremy L Thompson 2940183ed61SJeremy L Thompson code << tab << "CeedScalar *s_B" << var_suffix << " = " << reuse_var << ";\n"; 2950a2a6492SJeremy L Thompson } else { 2960183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_B" << var_suffix << "[" << P_name << "*" << Q_name << "];\n"; 2970183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << P_name << ", " << Q_name << ">(data, B." << option_name << "[" << i << "], s_B" << var_suffix << ");\n"; 298dc007f05SJeremy L Thompson } 2990a2a6492SJeremy L Thompson } 3008b97b69aSJeremy L Thompson if (is_at_points) break; // No G mat for AtPoints 3014b3e95d5SJeremy L Thompson if (use_3d_slices) { 3024b3e95d5SJeremy L Thompson if (is_input) data->G.inputs[i] = basis_data->d_collo_grad_1d; 3034b3e95d5SJeremy L Thompson else data->G.outputs[i] = basis_data->d_collo_grad_1d; 30445a787f7SJeremy L Thompson if (use_previous_field && field_reuse.eval_mode == CEED_EVAL_GRAD) { 30545a787f7SJeremy L Thompson std::string reuse_var = "s_G" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 3060a2a6492SJeremy L Thompson 3070183ed61SJeremy L Thompson code << tab << "CeedScalar *s_G" << var_suffix << " = " << reuse_var << ";\n"; 3080a2a6492SJeremy L Thompson } else { 3090183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_G" << var_suffix << "[" << Q_name << "*" << Q_name << "];\n"; 3100183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << Q_name << ", " << Q_name << ">(data, G." << option_name << "[" << i << "], s_G" << var_suffix << ");\n"; 3110a2a6492SJeremy L Thompson } 3124b3e95d5SJeremy L Thompson } else { 3134b3e95d5SJeremy L Thompson bool has_collo_grad = basis_data->d_collo_grad_1d; 3144b3e95d5SJeremy L Thompson 3154b3e95d5SJeremy L Thompson if (is_input) data->G.inputs[i] = has_collo_grad ? basis_data->d_collo_grad_1d : basis_data->d_grad_1d; 3164b3e95d5SJeremy L Thompson else data->G.outputs[i] = has_collo_grad ? basis_data->d_collo_grad_1d : basis_data->d_grad_1d; 3174b3e95d5SJeremy L Thompson if (has_collo_grad) { 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 } 3260a2a6492SJeremy L Thompson } else { 32745a787f7SJeremy L Thompson if (use_previous_field && field_reuse.eval_mode == CEED_EVAL_GRAD) { 32845a787f7SJeremy L Thompson std::string reuse_var = "s_G" + ((field_reuse.is_input ? "_in_" : "_out_") + std::to_string(field_reuse.index)); 3290a2a6492SJeremy L Thompson 3300183ed61SJeremy L Thompson code << tab << "CeedScalar *s_G" << var_suffix << " = " << reuse_var << ";\n"; 3314b3e95d5SJeremy L Thompson } else { 3320183ed61SJeremy L Thompson code << tab << "__shared__ CeedScalar s_G" << var_suffix << "[" << P_name << "*" << Q_name << (is_tensor ? "" : "*dim") 333412e5683SJeremy L Thompson << (is_tensor ? "" : var_suffix) << "];\n"; 3340183ed61SJeremy L Thompson code << tab << "LoadMatrix<" << P_name << ", " << Q_name << (is_tensor ? "" : "*dim") << (is_tensor ? "" : var_suffix) << ">(data, G." 335412e5683SJeremy L Thompson << option_name << "[" << i << "], s_G" << var_suffix << ");\n"; 3364b3e95d5SJeremy L Thompson } 3374b3e95d5SJeremy L Thompson } 3380a2a6492SJeremy L Thompson } 3394b3e95d5SJeremy L Thompson break; 3404b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 3414b3e95d5SJeremy L Thompson break; // No action 3424b3e95d5SJeremy L Thompson // LCOV_EXCL_START 3434b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 3444b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 3454b3e95d5SJeremy L Thompson break; // TODO: Not implemented 3464b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 3474b3e95d5SJeremy L Thompson } 3488b97b69aSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 3494b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 3504b3e95d5SJeremy L Thompson } 3514b3e95d5SJeremy L Thompson 3524b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 3534b3e95d5SJeremy L Thompson // Restriction 3544b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 3550183ed61SJeremy L Thompson static int CeedOperatorBuildKernelRestriction_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt i, 3560183ed61SJeremy L Thompson CeedInt field_input_buffer[], CeedOperatorField op_field, CeedQFunctionField qf_field, 3570183ed61SJeremy L Thompson CeedInt max_dim, CeedInt Q_1d, bool is_input, bool is_all_tensor, bool is_at_points, 3580183ed61SJeremy L Thompson bool use_3d_slices) { 3594b3e95d5SJeremy L Thompson std::string var_suffix = (is_input ? "_in_" : "_out_") + std::to_string(i); 360412e5683SJeremy L Thompson std::string P_name = (is_all_tensor ? "P_1d" : "P") + var_suffix; 3614b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 362412e5683SJeremy L Thompson CeedInt elem_size = 0, num_comp = 0; 3634b3e95d5SJeremy L Thompson CeedSize l_size; 364f815fac9SJeremy L Thompson CeedRestrictionType rstr_type = CEED_RESTRICTION_STANDARD; 3654b3e95d5SJeremy L Thompson CeedElemRestriction_Cuda *rstr_data; 3664b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 3674b3e95d5SJeremy L Thompson 3684b3e95d5SJeremy L Thompson // Get field data 3694b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_field, &elem_rstr)); 3704b3e95d5SJeremy L Thompson if (elem_rstr != CEED_ELEMRESTRICTION_NONE) { 371f815fac9SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetType(elem_rstr, &rstr_type)); 3724b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 3734b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 3744b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetData(elem_rstr, &rstr_data)); 3754b3e95d5SJeremy L Thompson } 3764b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_field, &eval_mode)); 3774b3e95d5SJeremy L Thompson 3784b3e95d5SJeremy L Thompson // Restriction 3794b3e95d5SJeremy L Thompson if (is_input) { 3804b3e95d5SJeremy L Thompson // Input 381e93651e5SJeremy L Thompson if (field_input_buffer[i] != i) { 382e93651e5SJeremy L Thompson std::string buffer_name = "r_e_in_" + std::to_string(field_input_buffer[i]); 383e93651e5SJeremy L Thompson 384e93651e5SJeremy L Thompson // Restriction was already done for previous input 3850183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = " << buffer_name << ";\n"; 3868b97b69aSJeremy L Thompson } else if (eval_mode != CEED_EVAL_WEIGHT && !((eval_mode == CEED_EVAL_NONE) && use_3d_slices && is_at_points)) { 3878b97b69aSJeremy L Thompson if (eval_mode == CEED_EVAL_NONE && rstr_type != CEED_RESTRICTION_POINTS) { 388e93651e5SJeremy L Thompson // No basis action, so r_e_in_* in also r_q_in_* and needs to be allocated 3890183ed61SJeremy L Thompson code << tab << "CeedScalar r_e" << var_suffix << "[num_comp" << var_suffix << "*" << P_name << "];\n"; 3908b97b69aSJeremy L Thompson } else if (rstr_type != CEED_RESTRICTION_POINTS) { 391e93651e5SJeremy L Thompson // Otherwise we're using the scratch space 3920183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_scratch;\n"; 393e93651e5SJeremy L Thompson } 394f815fac9SJeremy L Thompson switch (rstr_type) { 395f815fac9SJeremy L Thompson case CEED_RESTRICTION_STANDARD: { 3964b3e95d5SJeremy L Thompson CeedInt comp_stride; 3974b3e95d5SJeremy L Thompson 3984b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 3990183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 4004b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 4010183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 4024b3e95d5SJeremy L Thompson data->indices.inputs[i] = (CeedInt *)rstr_data->d_offsets; 4030183ed61SJeremy L Thompson code << tab << "ReadLVecStandard" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", " 4040183ed61SJeremy L Thompson << P_name << ">(data, l_size" << var_suffix << ", elem, indices.inputs[" << i << "], d" << var_suffix << ", r_e" << var_suffix 4050183ed61SJeremy L Thompson << ");\n"; 406f815fac9SJeremy L Thompson break; 407f815fac9SJeremy L Thompson } 408f815fac9SJeremy L Thompson case CEED_RESTRICTION_STRIDED: { 4094b3e95d5SJeremy L Thompson bool has_backend_strides; 4104b3e95d5SJeremy L Thompson CeedInt num_elem; 4114b3e95d5SJeremy L Thompson 4124b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionHasBackendStrides(elem_rstr, &has_backend_strides)); 4134b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumElements(elem_rstr, &num_elem)); 4144b3e95d5SJeremy L Thompson CeedInt strides[3] = {1, elem_size * num_elem, elem_size}; 4154b3e95d5SJeremy L Thompson 4164b3e95d5SJeremy L Thompson if (!has_backend_strides) { 4174b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetStrides(elem_rstr, strides)); 4184b3e95d5SJeremy L Thompson } 4190183ed61SJeremy L Thompson code << tab << "const CeedInt strides" << var_suffix << "_0 = " << strides[0] << ", strides" << var_suffix << "_1 = " << strides[1] 4200183ed61SJeremy L Thompson << ", strides" << var_suffix << "_2 = " << strides[2] << ";\n"; 4210183ed61SJeremy L Thompson code << tab << "ReadLVecStrided" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", " << P_name << ", strides" 4220183ed61SJeremy L Thompson << var_suffix << "_0, strides" << var_suffix << "_1, strides" << var_suffix << "_2>(data, elem, d" << var_suffix << ", r_e" 4230183ed61SJeremy L Thompson << var_suffix << ");\n"; 424f815fac9SJeremy L Thompson break; 425f815fac9SJeremy L Thompson } 4268b97b69aSJeremy L Thompson case CEED_RESTRICTION_POINTS: { 4278b97b69aSJeremy L Thompson CeedInt comp_stride; 4288b97b69aSJeremy L Thompson 4298b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 4300183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 4318b97b69aSJeremy L Thompson data->indices.inputs[i] = (CeedInt *)rstr_data->d_offsets; 4328b97b69aSJeremy L Thompson break; 4338b97b69aSJeremy L Thompson } 434f815fac9SJeremy L Thompson // LCOV_EXCL_START 435f815fac9SJeremy L Thompson case CEED_RESTRICTION_ORIENTED: 436f815fac9SJeremy L Thompson case CEED_RESTRICTION_CURL_ORIENTED: 437f815fac9SJeremy L Thompson break; // TODO: Not implemented 438f815fac9SJeremy L Thompson // LCOV_EXCL_STOP 4394b3e95d5SJeremy L Thompson } 4404b3e95d5SJeremy L Thompson } 4414b3e95d5SJeremy L Thompson } else { 4424b3e95d5SJeremy L Thompson // Output 443f815fac9SJeremy L Thompson switch (rstr_type) { 444f815fac9SJeremy L Thompson case CEED_RESTRICTION_STANDARD: { 4454b3e95d5SJeremy L Thompson CeedInt comp_stride; 4464b3e95d5SJeremy L Thompson 4474b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 4480183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 4494b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 4500183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 4514b3e95d5SJeremy L Thompson data->indices.outputs[i] = (CeedInt *)rstr_data->d_offsets; 4520183ed61SJeremy L Thompson code << tab << "WriteLVecStandard" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", " 4530183ed61SJeremy L Thompson << P_name << ">(data, l_size" << var_suffix << ", elem, indices.outputs[" << i << "], r_e" << var_suffix << ", d" << var_suffix 4540183ed61SJeremy L Thompson << ");\n"; 455f815fac9SJeremy L Thompson break; 456f815fac9SJeremy L Thompson } 457f815fac9SJeremy L Thompson case CEED_RESTRICTION_STRIDED: { 4584b3e95d5SJeremy L Thompson bool has_backend_strides; 4594b3e95d5SJeremy L Thompson CeedInt num_elem; 4604b3e95d5SJeremy L Thompson 4614b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionHasBackendStrides(elem_rstr, &has_backend_strides)); 4624b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumElements(elem_rstr, &num_elem)); 4634b3e95d5SJeremy L Thompson CeedInt strides[3] = {1, elem_size * num_elem, elem_size}; 4644b3e95d5SJeremy L Thompson 4654b3e95d5SJeremy L Thompson if (!has_backend_strides) { 4664b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetStrides(elem_rstr, strides)); 4674b3e95d5SJeremy L Thompson } 4680183ed61SJeremy L Thompson code << tab << "const CeedInt strides" << var_suffix << "_0 = " << strides[0] << ", strides" << var_suffix << "_1 = " << strides[1] 4690183ed61SJeremy L Thompson << ", strides" << var_suffix << "_2 = " << strides[2] << ";\n"; 4700183ed61SJeremy L Thompson code << tab << "WriteLVecStrided" << (is_all_tensor ? max_dim : 1) << "d<num_comp" << var_suffix << ", " << P_name << ", strides" 4710183ed61SJeremy L Thompson << var_suffix << "_0, strides" << var_suffix << "_1, strides" << var_suffix << "_2>(data, elem, r_e" << var_suffix << ", d" << var_suffix 4720183ed61SJeremy L Thompson << ");\n"; 473f815fac9SJeremy L Thompson break; 474f815fac9SJeremy L Thompson } 4758b97b69aSJeremy L Thompson case CEED_RESTRICTION_POINTS: 4768b97b69aSJeremy L Thompson data->indices.outputs[i] = (CeedInt *)rstr_data->d_offsets; 4778b97b69aSJeremy L Thompson break; 478f815fac9SJeremy L Thompson // LCOV_EXCL_START 479f815fac9SJeremy L Thompson case CEED_RESTRICTION_ORIENTED: 480f815fac9SJeremy L Thompson case CEED_RESTRICTION_CURL_ORIENTED: 481f815fac9SJeremy L Thompson break; // TODO: Not implemented 482f815fac9SJeremy L Thompson // LCOV_EXCL_STOP 4834b3e95d5SJeremy L Thompson } 4844b3e95d5SJeremy L Thompson } 485681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 4864b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 4874b3e95d5SJeremy L Thompson } 4884b3e95d5SJeremy L Thompson 4894b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 4904b3e95d5SJeremy L Thompson // Basis 4914b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 4920183ed61SJeremy L Thompson static int CeedOperatorBuildKernelBasis_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt i, 4930183ed61SJeremy L Thompson CeedOperatorField op_field, CeedQFunctionField qf_field, CeedInt max_dim, CeedInt Q_1d, 4940183ed61SJeremy L Thompson bool is_input, bool is_all_tensor, bool is_at_points, bool use_3d_slices) { 495412e5683SJeremy L Thompson bool is_tensor = true; 496412e5683SJeremy L Thompson CeedBasis basis; 497412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_field, &basis)); 498412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 499412e5683SJeremy L Thompson 5004b3e95d5SJeremy L Thompson std::string var_suffix = (is_input ? "_in_" : "_out_") + std::to_string(i); 501dc007f05SJeremy L Thompson std::string P_name = (is_tensor ? "P_1d" : "P") + var_suffix, Q_name = is_tensor ? "Q_1d" : "Q"; 5024b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 503412e5683SJeremy L Thompson CeedInt dim = max_dim, elem_size = 0, num_comp = 0, P_1d = 0; 5044b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 5054b3e95d5SJeremy L Thompson 5064b3e95d5SJeremy L Thompson // Get field data 5074b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_field, &elem_rstr)); 5084b3e95d5SJeremy L Thompson if (elem_rstr != CEED_ELEMRESTRICTION_NONE) { 5094b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 5104b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 5114b3e95d5SJeremy L Thompson } 512681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 5134b3e95d5SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 514412e5683SJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &dim)); 515dc007f05SJeremy L Thompson if (is_tensor) CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 516dc007f05SJeremy L Thompson else CeedCallBackend(CeedBasisGetNumNodes(basis, &P_1d)); 5174b3e95d5SJeremy L Thompson } 5184b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_field, &eval_mode)); 5194b3e95d5SJeremy L Thompson 5204b3e95d5SJeremy L Thompson // Basis 5210183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 5224b3e95d5SJeremy L Thompson if (is_input) { 5234b3e95d5SJeremy L Thompson switch (eval_mode) { 5244b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 5258b97b69aSJeremy L Thompson if (!use_3d_slices && !is_at_points) { 5260183ed61SJeremy L Thompson code << tab << "CeedScalar *r_q" << var_suffix << " = r_e" << var_suffix << ";\n"; 5274b3e95d5SJeremy L Thompson } 5284b3e95d5SJeremy L Thompson break; 5294b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 5308b97b69aSJeremy L Thompson if (is_at_points) { 531dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "Interp" : "InterpTensor") + std::to_string(dim) + "d"; 532dc007f05SJeremy L Thompson 5330183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (dim >= 3 ? Q_name : "1") << "];\n"; 5340183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_e" << var_suffix 53599421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_c" << var_suffix << ");\n"; 5368b97b69aSJeremy L Thompson } else { 537412e5683SJeremy L Thompson std::string function_name = is_tensor 538412e5683SJeremy L Thompson ? ((dim == 1 ? "Interp" : "InterpTensor") + std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")) 539412e5683SJeremy L Thompson : "InterpNonTensor"; 540c433aabcSJeremy L Thompson std::string op_t_1d_name = (is_all_tensor || !is_tensor) ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 541dc007f05SJeremy L Thompson 5420183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << (is_all_tensor && (dim >= 3) ? Q_name : "1") << "];\n"; 5430183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_e" 544c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", r_q" << var_suffix << ");\n"; 5458b97b69aSJeremy L Thompson } 5464b3e95d5SJeremy L Thompson break; 5474b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 5488b97b69aSJeremy L Thompson if (is_at_points) { 549dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "Interp" : "InterpTensor") + std::to_string(dim) + "d"; 550dc007f05SJeremy L Thompson 5510183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (dim >= 3 ? Q_name : "1") << "];\n"; 5520183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_e" << var_suffix 55399421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_c" << var_suffix << ");\n"; 5548b97b69aSJeremy L Thompson } else if (use_3d_slices) { 555dc007f05SJeremy L Thompson std::string function_name = (dim > 1 ? "InterpTensor" : "Interp") + std::to_string(dim) + "d"; 556dc007f05SJeremy L Thompson 5570183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << Q_name << "];\n"; 5580183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_e" << var_suffix 55999421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_q" << var_suffix << ");\n"; 560dc007f05SJeremy L Thompson } else if (is_tensor) { 561dc007f05SJeremy L Thompson bool is_collocated = dim == 3 && Q_1d >= P_1d; 562412e5683SJeremy L Thompson std::string function_name = (dim == 1 ? "Grad" : (is_collocated ? "GradTensorCollocated" : "GradTensor")) + std::to_string(dim) + "d" + 563412e5683SJeremy L Thompson (is_all_tensor ? "" : "Flattened"); 564c433aabcSJeremy L Thompson std::string op_t_1d_name = is_all_tensor ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 565dc007f05SJeremy L Thompson 5660183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "*" 567259057edSJeremy L Thompson << (is_all_tensor && dim >= 3 ? Q_name : "1") << "];\n"; 5680183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_e" 569c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", s_G" << var_suffix << ", r_q" << var_suffix << ");\n"; 5704b3e95d5SJeremy L Thompson } else { 571dc007f05SJeremy L Thompson std::string function_name = "GradNonTensor"; 572dc007f05SJeremy L Thompson 5730183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 5740183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", dim" << var_suffix << ", " << P_name << ", " << Q_name 575c433aabcSJeremy L Thompson << ", OP_T_1D>(data, r_e" << var_suffix << ", s_G" << var_suffix << ", r_q" << var_suffix << ");\n"; 5764b3e95d5SJeremy L Thompson } 5774b3e95d5SJeremy L Thompson break; 5784b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: { 5798b97b69aSJeremy L Thompson if (is_at_points) { 5800183ed61SJeremy L Thompson code << tab << "// Nothing to do AtPoints\n"; 5818b97b69aSJeremy L Thompson } else { 5824b3e95d5SJeremy L Thompson CeedBasis_Cuda_shared *basis_data; 583412e5683SJeremy L Thompson std::string function_name = is_tensor 584412e5683SJeremy L Thompson ? ((dim == 1 ? "Weight" : "WeightTensor") + std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")) 585412e5683SJeremy L Thompson : "WeightNonTensor"; 5864b3e95d5SJeremy L Thompson 5870183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[" << (is_all_tensor && (dim >= 3) ? Q_name : "1") << "];\n"; 5884b3e95d5SJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &basis_data)); 5894b3e95d5SJeremy L Thompson data->W = basis_data->d_q_weight_1d; 5900183ed61SJeremy L Thompson code << tab << function_name << "<" << P_name << ", " << Q_name << ">(data, W, r_q" << var_suffix << ");\n"; 5918b97b69aSJeremy L Thompson } 5924b3e95d5SJeremy L Thompson break; 5934b3e95d5SJeremy L Thompson } 5944b3e95d5SJeremy L Thompson // LCOV_EXCL_START 5954b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 5964b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 5974b3e95d5SJeremy L Thompson break; // TODO: Not implemented 5984b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 5994b3e95d5SJeremy L Thompson } 6004b3e95d5SJeremy L Thompson } else { 6014b3e95d5SJeremy L Thompson switch (eval_mode) { 6024b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 6030183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_q" << var_suffix << ";\n"; 6044b3e95d5SJeremy L Thompson break; // No action 6054b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 6060183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_scratch;\n"; 6078b97b69aSJeremy L Thompson if (is_at_points) { 608dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::to_string(dim) + "d"; 609dc007f05SJeremy L Thompson 6100183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_c" << var_suffix 61199421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 6128b97b69aSJeremy L Thompson } else { 613dc007f05SJeremy L Thompson std::string function_name = 614412e5683SJeremy L Thompson is_tensor ? ((dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened")) 615412e5683SJeremy L Thompson : "InterpTransposeNonTensor"; 616c433aabcSJeremy L Thompson std::string op_t_1d_name = (is_all_tensor || !is_tensor) ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 617dc007f05SJeremy L Thompson 6180183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_q" 619c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 6208b97b69aSJeremy L Thompson } 6214b3e95d5SJeremy L Thompson break; 6224b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 6230183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_scratch;\n"; 6248b97b69aSJeremy L Thompson if (is_at_points) { 625dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::to_string(dim) + "d"; 626dc007f05SJeremy L Thompson 6270183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_c" << var_suffix 62899421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 6298b97b69aSJeremy L Thompson } else if (use_3d_slices) { 630dc007f05SJeremy L Thompson std::string function_name = (dim == 1 ? "InterpTranspose" : "InterpTransposeTensor") + std::to_string(dim) + "d"; 631dc007f05SJeremy L Thompson 6320183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", OP_T_1D>(data, r_q" << var_suffix 63399421279SJeremy L Thompson << ", s_B" << var_suffix << ", r_e" << var_suffix << ");\n"; 634dc007f05SJeremy L Thompson } else if (is_tensor) { 635dc007f05SJeremy L Thompson bool is_collocated = dim == 3 && Q_1d >= P_1d; 636412e5683SJeremy L Thompson std::string function_name = (dim == 1 ? "GradTranspose" : (is_collocated ? "GradTransposeTensorCollocated" : "GradTransposeTensor")) + 637412e5683SJeremy L Thompson std::to_string(dim) + "d" + (is_all_tensor ? "" : "Flattened"); 638c433aabcSJeremy L Thompson std::string op_t_1d_name = is_all_tensor ? "OP_T_1D" : (P_1d > Q_1d ? P_name : Q_name); 639dc007f05SJeremy L Thompson 6400183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", " << P_name << ", " << Q_name << ", " << op_t_1d_name << ">(data, r_q" 641c433aabcSJeremy L Thompson << var_suffix << ", s_B" << var_suffix << ", s_G" << var_suffix << ", r_e" << var_suffix << ");\n"; 6424b3e95d5SJeremy L Thompson } else { 643dc007f05SJeremy L Thompson std::string function_name = "GradTransposeNonTensor"; 644dc007f05SJeremy L Thompson 6450183ed61SJeremy L Thompson code << tab << function_name << "<num_comp" << var_suffix << ", dim" << var_suffix << ", " << P_name << ", " << Q_name 646c433aabcSJeremy L Thompson << ", OP_T_1D>(data, r_q" << var_suffix << ", s_G" << var_suffix << ", r_e" << var_suffix << ");\n"; 6474b3e95d5SJeremy L Thompson } 6484b3e95d5SJeremy L Thompson break; 6494b3e95d5SJeremy L Thompson // LCOV_EXCL_START 6504b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 6514b3e95d5SJeremy L Thompson break; // Should not occur 6524b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 6534b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 6544b3e95d5SJeremy L Thompson break; // TODO: Not implemented 6554b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 6564b3e95d5SJeremy L Thompson } 6574b3e95d5SJeremy L Thompson } 658681d0ea7SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 6594b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 6604b3e95d5SJeremy L Thompson } 6614b3e95d5SJeremy L Thompson 6624b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 6634b3e95d5SJeremy L Thompson // QFunction 6644b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 6650183ed61SJeremy L Thompson static int CeedOperatorBuildKernelQFunction_Cuda_gen(std::ostringstream &code, CeedOperator_Cuda_gen *data, Tab &tab, CeedInt max_dim, 6660183ed61SJeremy L Thompson CeedInt max_num_points, CeedInt num_input_fields, CeedOperatorField *op_input_fields, 6678b97b69aSJeremy L Thompson CeedQFunctionField *qf_input_fields, CeedInt num_output_fields, 6688b97b69aSJeremy L Thompson CeedOperatorField *op_output_fields, CeedQFunctionField *qf_output_fields, 669412e5683SJeremy L Thompson std::string qfunction_name, CeedInt Q_1d, bool is_all_tensor, bool is_at_points, 670dc007f05SJeremy L Thompson bool use_3d_slices) { 671412e5683SJeremy L Thompson std::string Q_name = is_all_tensor ? "Q_1d" : "Q"; 6724b3e95d5SJeremy L Thompson CeedEvalMode eval_mode = CEED_EVAL_NONE; 6734b3e95d5SJeremy L Thompson CeedElemRestriction elem_rstr; 6744b3e95d5SJeremy L Thompson 6758b97b69aSJeremy L Thompson // Setup output arrays 6760183ed61SJeremy L Thompson code << "\n"; 6770183ed61SJeremy L Thompson code << tab << "// -- Output field setup\n"; 6784b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 67959fa3f92SJeremy L Thompson const char *field_name; 6804b3e95d5SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 6814b3e95d5SJeremy L Thompson 68259fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 6830183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 6844b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 6858b97b69aSJeremy L Thompson switch (eval_mode) { 6868b97b69aSJeremy L Thompson case CEED_EVAL_NONE: 6878b97b69aSJeremy L Thompson if (is_at_points) { 6880183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "];\n"; 6898b97b69aSJeremy L Thompson } else { 6900183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << (is_all_tensor && (max_dim >= 3) ? Q_name : "1") 691412e5683SJeremy L Thompson << "];\n"; 6924b3e95d5SJeremy L Thompson } 6938b97b69aSJeremy L Thompson break; 6948b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 6958b97b69aSJeremy L Thompson if (is_at_points) { 6968b97b69aSJeremy L Thompson // Accumulator for point data 6970183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "];\n"; 6980183ed61SJeremy L Thompson code << tab << "for (CeedInt i = 0; i < num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "; i++) r_c" << var_suffix 699b8245c6cSJeremy L Thompson << "[i] = 0.0;\n"; 7008b97b69aSJeremy L Thompson } else { 7010183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << (is_all_tensor && (max_dim >= 3) ? Q_name : "1") 702412e5683SJeremy L Thompson << "];\n"; 7038b97b69aSJeremy L Thompson } 7048b97b69aSJeremy L Thompson break; 7058b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 7068b97b69aSJeremy L Thompson if (is_at_points) { 7078b97b69aSJeremy L Thompson // Accumulator for point data 7080183ed61SJeremy L Thompson code << tab << "CeedScalar r_c" << var_suffix << "[num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "];\n"; 7090183ed61SJeremy L Thompson code << tab << "for (CeedInt i = 0; i < num_comp" << var_suffix << "*" << (max_dim >= 3 ? Q_name : "1") << "; i++) r_c" << var_suffix 710b8245c6cSJeremy L Thompson << "[i] = 0.0;\n"; 7118b97b69aSJeremy L Thompson } else if (use_3d_slices) { 7124b3e95d5SJeremy L Thompson // Accumulator for gradient slices 7130183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*" << Q_name << "];\n"; 7140183ed61SJeremy L Thompson code << tab << "for (CeedInt i = 0; i < num_comp" << var_suffix << "*" << Q_name << "; i++) r_q" << var_suffix << "[i] = 0.0;\n"; 7154b3e95d5SJeremy L Thompson } else { 7160183ed61SJeremy L Thompson code << tab << "CeedScalar r_q" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "*" 717412e5683SJeremy L Thompson << (is_all_tensor && (max_dim >= 3) ? Q_name : "1") << "];\n"; 7184b3e95d5SJeremy L Thompson } 7198b97b69aSJeremy L Thompson break; 7208b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 7218b97b69aSJeremy L Thompson break; 7228b97b69aSJeremy L Thompson // LCOV_EXCL_START 7238b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 7248b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 7258b97b69aSJeremy L Thompson break; // TODO: Not implemented 7268b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 7274b3e95d5SJeremy L Thompson } 7284b3e95d5SJeremy L Thompson } 7294b3e95d5SJeremy L Thompson 7308b97b69aSJeremy L Thompson if (is_at_points) { 7318b97b69aSJeremy L Thompson // We need to handle batches of points 7320183ed61SJeremy L Thompson code << "\n"; 7330183ed61SJeremy L Thompson code << tab << "// Note: Using batches of points\n"; 7340183ed61SJeremy 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"; 7350183ed61SJeremy L Thompson code << tab << "#pragma unroll\n"; 7360183ed61SJeremy L Thompson code << tab << "for (CeedInt i = threadIdx.x + threadIdx.y*blockDim.x; i < point_loop_bound; i += blockDim.x*blockDim.y) {\n"; 7370183ed61SJeremy L Thompson tab.push(); 7380183ed61SJeremy L Thompson code << tab << "const CeedInt p = i % max_num_points;\n\n"; 7398b97b69aSJeremy L Thompson 7400183ed61SJeremy L Thompson code << tab << "// -- Coordinates\n"; 7410183ed61SJeremy L Thompson code << tab << "CeedScalar r_x[max_dim];\n"; 7420183ed61SJeremy 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"; 7438b97b69aSJeremy L Thompson 7440183ed61SJeremy L Thompson code << tab << "// -- Input fields\n"; 7458b97b69aSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 74659fa3f92SJeremy L Thompson const char *field_name; 7478b97b69aSJeremy L Thompson std::string var_suffix = "_in_" + std::to_string(i); 748f725b54bSJeremy L Thompson std::string P_name = "P_1d" + var_suffix; 7498b97b69aSJeremy L Thompson 75059fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 7510183ed61SJeremy L Thompson code << tab << "// ---- Input field " << i << ": " << field_name << "\n"; 7528b97b69aSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 7538b97b69aSJeremy L Thompson // Basis action 7540183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 7558b97b69aSJeremy L Thompson switch (eval_mode) { 7568b97b69aSJeremy L Thompson case CEED_EVAL_NONE: 7570183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7580183ed61SJeremy L Thompson code << tab << "ReadPoint<num_comp" << var_suffix << ", comp_stride" << var_suffix 7598b97b69aSJeremy L Thompson << ", max_num_points>(data, elem, p, max_num_points, indices.inputs[" << i << "], d" << var_suffix << ", r_s" << var_suffix << ");\n"; 7608b97b69aSJeremy L Thompson break; 7618b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 7620183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7630183ed61SJeremy L Thompson code << tab << "InterpAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 764412e5683SJeremy L Thompson << ">(data, i, r_c" << var_suffix << ", r_x, r_s" << var_suffix << ");\n"; 7658b97b69aSJeremy L Thompson break; 7668b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 7670183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 7680183ed61SJeremy L Thompson code << tab << "GradAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 769412e5683SJeremy L Thompson << ">(data, i, r_c" << var_suffix << ", r_x, r_s" << var_suffix << ");\n"; 7708b97b69aSJeremy L Thompson break; 7718b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 7720183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[1];\n"; 7730183ed61SJeremy L Thompson code << tab << "r_s" << var_suffix << "[0] = 1.0;\n"; 7748b97b69aSJeremy L Thompson break; 7758b97b69aSJeremy L Thompson // LCOV_EXCL_START 7768b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 7778b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 7788b97b69aSJeremy L Thompson break; // TODO: Not implemented 7798b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 7808b97b69aSJeremy L Thompson } 7818b97b69aSJeremy L Thompson } 7820183ed61SJeremy L Thompson code << "\n"; 7830183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 7848b97b69aSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 78559fa3f92SJeremy L Thompson const char *field_name; 7868b97b69aSJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 7878b97b69aSJeremy L Thompson 78859fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 7890183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 7908b97b69aSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 7918b97b69aSJeremy L Thompson // Basis action 7928b97b69aSJeremy L Thompson switch (eval_mode) { 7938b97b69aSJeremy L Thompson case CEED_EVAL_NONE: 7940183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7958b97b69aSJeremy L Thompson break; 7968b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 7970183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 7988b97b69aSJeremy L Thompson break; 7998b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 8000183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 8018b97b69aSJeremy L Thompson break; 8028b97b69aSJeremy L Thompson // LCOV_EXCL_START 8038b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 8048b97b69aSJeremy L Thompson break; // Should not occur 8058b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 8068b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 8078b97b69aSJeremy L Thompson break; // TODO: Not implemented 8088b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 8098b97b69aSJeremy L Thompson } 8108b97b69aSJeremy L Thompson } 8118b97b69aSJeremy L Thompson 8128b97b69aSJeremy L Thompson } else if (use_3d_slices) { 8134b3e95d5SJeremy L Thompson // We treat quadrature points per slice in 3d to save registers 8140183ed61SJeremy L Thompson code << "\n"; 8150183ed61SJeremy L Thompson code << tab << "// Note: Using planes of 3D elements\n"; 8160183ed61SJeremy L Thompson code << tab << "#pragma unroll\n"; 8170183ed61SJeremy L Thompson code << tab << "for (CeedInt q = 0; q < " << Q_name << "; q++) {\n"; 8180183ed61SJeremy L Thompson tab.push(); 8190183ed61SJeremy L Thompson code << tab << "// -- Input fields\n"; 8204b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 82159fa3f92SJeremy L Thompson const char *field_name; 8224b3e95d5SJeremy L Thompson std::string var_suffix = "_in_" + std::to_string(i); 8234b3e95d5SJeremy L Thompson 82459fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 8250183ed61SJeremy L Thompson code << tab << "// ---- Input field " << i << ": " << field_name << "\n"; 8264b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 8274b3e95d5SJeremy L Thompson // Basis action 8280183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 8294b3e95d5SJeremy L Thompson switch (eval_mode) { 8304b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 8314b3e95d5SJeremy L Thompson bool is_strided; 8324b3e95d5SJeremy L Thompson 8330183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 8344b3e95d5SJeremy L Thompson 8354b3e95d5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 8364b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionIsStrided(elem_rstr, &is_strided)); 8374b3e95d5SJeremy L Thompson if (is_strided) { 8384b3e95d5SJeremy L Thompson bool has_backend_strides; 8394b3e95d5SJeremy L Thompson CeedInt num_elem, elem_size; 8404b3e95d5SJeremy L Thompson 8414b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetElementSize(elem_rstr, &elem_size)); 8424b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionHasBackendStrides(elem_rstr, &has_backend_strides)); 8434b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumElements(elem_rstr, &num_elem)); 8444b3e95d5SJeremy L Thompson CeedInt strides[3] = {1, elem_size * num_elem, elem_size}; 8454b3e95d5SJeremy L Thompson 8464b3e95d5SJeremy L Thompson if (!has_backend_strides) { 8474b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetStrides(elem_rstr, strides)); 8484b3e95d5SJeremy L Thompson } 8490183ed61SJeremy L Thompson code << tab << "const CeedInt strides" << var_suffix << "_0 = " << strides[0] << ", strides" << var_suffix << "_1 = " << strides[1] 8500183ed61SJeremy L Thompson << ", strides" << var_suffix << "_2 = " << strides[2] << ";\n"; 8510183ed61SJeremy L Thompson code << tab << "ReadEVecSliceStrided3d<num_comp" << var_suffix << ", " << Q_name << ", strides" << var_suffix << "_0, strides" 8520183ed61SJeremy L Thompson << var_suffix << "_1, strides" << var_suffix << "_2>(data, elem, q, d" << var_suffix << ", r_s" << var_suffix << ");\n"; 8534b3e95d5SJeremy L Thompson } else { 8544b3e95d5SJeremy L Thompson CeedSize l_size = 0; 8554b3e95d5SJeremy L Thompson CeedInt comp_stride; 8564b3e95d5SJeremy L Thompson CeedElemRestriction_Cuda *rstr_data; 8574b3e95d5SJeremy L Thompson 8584b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 8590183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 8604b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 8610183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 8624b3e95d5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetData(elem_rstr, &rstr_data)); 8634b3e95d5SJeremy L Thompson data->indices.inputs[i] = (CeedInt *)rstr_data->d_offsets; 8640183ed61SJeremy L Thompson code << tab << "ReadEVecSliceStandard3d<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", " << Q_name << ">(data, l_size" 8650183ed61SJeremy L Thompson << var_suffix << ", elem, q, indices.inputs[" << i << "], d" << var_suffix << ", r_s" << var_suffix << ");\n"; 8664b3e95d5SJeremy L Thompson } 867681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 8684b3e95d5SJeremy L Thompson break; 8694b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 8700183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 8710183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << "; j++) {\n"; 8720183ed61SJeremy L Thompson tab.push(); 8734b3e95d5SJeremy L Thompson code << "r_s" << var_suffix << "[j] = r_q" << var_suffix << "[q + j*" << Q_name << "];\n"; 8740183ed61SJeremy L Thompson tab.pop(); 8750183ed61SJeremy L Thompson code << tab << "}\n"; 8764b3e95d5SJeremy L Thompson break; 8774b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 8780183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 8790183ed61SJeremy L Thompson code << tab << "GradColloSlice3d<num_comp" << var_suffix << ", " << Q_name << ", OP_T_1D>(data, q, r_q" << var_suffix << ", s_G" 88099421279SJeremy L Thompson << var_suffix << ", r_s" << var_suffix << ");\n"; 8814b3e95d5SJeremy L Thompson break; 8824b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 8830183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[1];\n"; 8840183ed61SJeremy L Thompson code << tab << "r_s" << var_suffix << "[0] = r_q" << var_suffix << "[q];\n"; 8858b97b69aSJeremy L Thompson break; 8864b3e95d5SJeremy L Thompson // LCOV_EXCL_START 8874b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 8884b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 8894b3e95d5SJeremy L Thompson break; // TODO: Not implemented 8904b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 8914b3e95d5SJeremy L Thompson } 8924b3e95d5SJeremy L Thompson } 8930183ed61SJeremy L Thompson code << "\n"; 8940183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 8954b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 89659fa3f92SJeremy L Thompson const char *field_name; 8974b3e95d5SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 8984b3e95d5SJeremy L Thompson 89959fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9000183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 9014b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 9024b3e95d5SJeremy L Thompson // Basis action 9034b3e95d5SJeremy L Thompson switch (eval_mode) { 9044b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 9050183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 9068b97b69aSJeremy L Thompson break; 9074b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 9080183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "];\n"; 9094b3e95d5SJeremy L Thompson break; 9104b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 9110183ed61SJeremy L Thompson code << tab << "CeedScalar r_s" << var_suffix << "[num_comp" << var_suffix << "*dim" << var_suffix << "];\n"; 9124b3e95d5SJeremy L Thompson break; 9134b3e95d5SJeremy L Thompson // LCOV_EXCL_START 9144b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 9154b3e95d5SJeremy L Thompson break; // Should not occur 9164b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 9174b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 9184b3e95d5SJeremy L Thompson break; // TODO: Not implemented 9194b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 9204b3e95d5SJeremy L Thompson } 9214b3e95d5SJeremy L Thompson } 9224b3e95d5SJeremy L Thompson } else { 9230183ed61SJeremy L Thompson code << "\n"; 9240183ed61SJeremy L Thompson code << tab << "// Note: Using full elements\n"; 9250183ed61SJeremy L Thompson code << tab << "{\n"; 9260183ed61SJeremy L Thompson tab.push(); 9270183ed61SJeremy L Thompson code << tab << "// -- Input fields\n"; 9284b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 92959fa3f92SJeremy L Thompson const char *field_name; 93059fa3f92SJeremy L Thompson 93159fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[i], &field_name)); 9320183ed61SJeremy L Thompson code << tab << "// ---- Input field " << i << ": " << field_name << "\n"; 9330183ed61SJeremy L Thompson code << tab << "CeedScalar *r_s_in_" << i << " = r_q_in_" << i << ";\n"; 9344b3e95d5SJeremy L Thompson } 9350183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 9364b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 93759fa3f92SJeremy L Thompson const char *field_name; 93859fa3f92SJeremy L Thompson 93959fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9400183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 9410183ed61SJeremy L Thompson code << tab << "CeedScalar *r_s_out_" << i << " = r_q_out_" << i << ";\n"; 9424b3e95d5SJeremy L Thompson } 9434b3e95d5SJeremy L Thompson } 9444b3e95d5SJeremy L Thompson 9454b3e95d5SJeremy L Thompson // Input and output buffers 9460183ed61SJeremy L Thompson code << "\n"; 9470183ed61SJeremy L Thompson code << tab << "// -- QFunction inputs and outputs\n"; 9480183ed61SJeremy L Thompson code << tab << "// ---- Inputs\n"; 9490183ed61SJeremy L Thompson code << tab << "CeedScalar *inputs[" << CeedIntMax(num_input_fields, 1) << "];\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 << "inputs[" << i << "] = r_s_in_" << i << ";\n"; 9564b3e95d5SJeremy L Thompson } 9570183ed61SJeremy L Thompson code << tab << "// ---- Outputs\n"; 9580183ed61SJeremy L Thompson code << tab << "CeedScalar *outputs[" << CeedIntMax(num_output_fields, 1) << "];\n"; 9594b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 96059fa3f92SJeremy L Thompson const char *field_name; 96159fa3f92SJeremy L Thompson 96259fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9630183ed61SJeremy L Thompson code << tab << "// ------ Output field " << i << ": " << field_name << "\n"; 9640183ed61SJeremy L Thompson code << tab << "outputs[" << i << "] = r_s_out_" << i << ";\n"; 9654b3e95d5SJeremy L Thompson } 9664b3e95d5SJeremy L Thompson 9674b3e95d5SJeremy L Thompson // Apply QFunction 9680183ed61SJeremy L Thompson code << "\n"; 9690183ed61SJeremy L Thompson code << tab << "// -- Apply QFunction\n"; 9700183ed61SJeremy L Thompson code << tab << "" << qfunction_name << "(ctx, "; 971412e5683SJeremy L Thompson if (max_dim != 3 || is_at_points || use_3d_slices || !is_all_tensor) { 9724b3e95d5SJeremy L Thompson code << "1"; 9734b3e95d5SJeremy L Thompson } else { 974dc007f05SJeremy L Thompson code << Q_name; 9754b3e95d5SJeremy L Thompson } 9764b3e95d5SJeremy L Thompson code << ", inputs, outputs);\n"; 9774b3e95d5SJeremy L Thompson 9788b97b69aSJeremy L Thompson if (is_at_points) { 9798b97b69aSJeremy L Thompson // Map back to coefficients 9800183ed61SJeremy L Thompson code << "\n"; 9810183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 9828b97b69aSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 98359fa3f92SJeremy L Thompson const char *field_name; 9848b97b69aSJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 9858b97b69aSJeremy L Thompson std::string P_name = "P_1d" + var_suffix; 9868b97b69aSJeremy L Thompson 98759fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 9880183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 9898b97b69aSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 9908b97b69aSJeremy L Thompson // Basis action 9910183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 9928b97b69aSJeremy L Thompson switch (eval_mode) { 9938b97b69aSJeremy L Thompson case CEED_EVAL_NONE: { 9948b97b69aSJeremy L Thompson CeedInt comp_stride; 9958b97b69aSJeremy L Thompson CeedElemRestriction elem_rstr; 9968b97b69aSJeremy L Thompson 9978b97b69aSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 9988b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 9998b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 10000183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 10010183ed61SJeremy L Thompson code << tab << "WritePoint<num_comp" << var_suffix << ", comp_stride" << var_suffix 10028b97b69aSJeremy L Thompson << ", max_num_points>(data, elem, i, points.num_per_elem[elem], indices.outputs[" << i << "]" 10038b97b69aSJeremy L Thompson << ", r_s" << var_suffix << ", d" << var_suffix << ");\n"; 10048b97b69aSJeremy L Thompson break; 10058b97b69aSJeremy L Thompson } 10068b97b69aSJeremy L Thompson case CEED_EVAL_INTERP: 10070183ed61SJeremy L Thompson code << tab << "if (i >= points.num_per_elem[elem]) {\n"; 10080183ed61SJeremy L Thompson tab.push(); 10090183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << "; j++) r_s" << var_suffix << "[j] = 0.0;\n"; 10100183ed61SJeremy L Thompson tab.pop(); 10110183ed61SJeremy L Thompson code << tab << "}\n"; 10120183ed61SJeremy L Thompson code << tab << "InterpTransposeAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 1013f725b54bSJeremy L Thompson << ">(data, i, r_s" << var_suffix << ", r_x, r_c" << var_suffix << ");\n"; 10148b97b69aSJeremy L Thompson break; 10158b97b69aSJeremy L Thompson case CEED_EVAL_GRAD: 10160183ed61SJeremy L Thompson code << tab << "if (i >= points.num_per_elem[elem]) {\n"; 10170183ed61SJeremy L Thompson tab.push(); 10180183ed61SJeremy 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"; 10190183ed61SJeremy L Thompson tab.pop(); 10200183ed61SJeremy L Thompson code << tab << "}\n"; 10210183ed61SJeremy L Thompson code << tab << "GradTransposeAtPoints" << max_dim << "d<num_comp" << var_suffix << ", max_num_points, " << P_name << ", " << Q_name 1022f725b54bSJeremy L Thompson << ">(data, i, r_s" << var_suffix << ", r_x, r_c" << var_suffix << ");\n"; 10238b97b69aSJeremy L Thompson break; 10248b97b69aSJeremy L Thompson // LCOV_EXCL_START 10258b97b69aSJeremy L Thompson case CEED_EVAL_WEIGHT: 10268b97b69aSJeremy L Thompson break; // Should not occur 10278b97b69aSJeremy L Thompson case CEED_EVAL_DIV: 10288b97b69aSJeremy L Thompson case CEED_EVAL_CURL: 10298b97b69aSJeremy L Thompson break; // TODO: Not implemented 10308b97b69aSJeremy L Thompson // LCOV_EXCL_STOP 10318b97b69aSJeremy L Thompson } 10328b97b69aSJeremy L Thompson } 10338b97b69aSJeremy L Thompson } else if (use_3d_slices) { 10344b3e95d5SJeremy L Thompson // Copy or apply transpose grad, if needed 10350183ed61SJeremy L Thompson code << "\n"; 10360183ed61SJeremy L Thompson code << tab << "// -- Output fields\n"; 10374b3e95d5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 103859fa3f92SJeremy L Thompson const char *field_name; 10394b3e95d5SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 10404b3e95d5SJeremy L Thompson std::string P_name = "P_1d" + var_suffix; 10414b3e95d5SJeremy L Thompson 104259fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 10430183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 10444b3e95d5SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 10454b3e95d5SJeremy L Thompson // Basis action 10460183ed61SJeremy L Thompson code << tab << "// EvalMode: " << CeedEvalModes[eval_mode] << "\n"; 10474b3e95d5SJeremy L Thompson switch (eval_mode) { 10484b3e95d5SJeremy L Thompson case CEED_EVAL_NONE: 10490183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << " ; j++) {\n"; 10500183ed61SJeremy L Thompson tab.push(); 10510183ed61SJeremy L Thompson code << tab << "r_q" << var_suffix << "[q + j*" << Q_name << "] = r_s" << var_suffix << "[j];\n"; 10520183ed61SJeremy L Thompson tab.pop(); 10530183ed61SJeremy L Thompson code << tab << "}\n"; 10548b97b69aSJeremy L Thompson break; 10554b3e95d5SJeremy L Thompson case CEED_EVAL_INTERP: 10560183ed61SJeremy L Thompson code << tab << "for (CeedInt j = 0; j < num_comp" << var_suffix << " ; j++) {\n"; 10570183ed61SJeremy L Thompson tab.push(); 10580183ed61SJeremy L Thompson code << tab << "r_q" << var_suffix << "[q + j*" << Q_name << "] = r_s" << var_suffix << "[j];\n"; 10590183ed61SJeremy L Thompson tab.pop(); 10600183ed61SJeremy L Thompson code << tab << "}\n"; 10614b3e95d5SJeremy L Thompson break; 10624b3e95d5SJeremy L Thompson case CEED_EVAL_GRAD: 10630183ed61SJeremy L Thompson code << tab << "GradColloSliceTranspose3d<num_comp" << var_suffix << ", " << Q_name << ", OP_T_1D>(data, q, r_s" << var_suffix << ", s_G" 1064f815fac9SJeremy L Thompson << var_suffix << ", r_q" << var_suffix << ");\n"; 10654b3e95d5SJeremy L Thompson break; 10664b3e95d5SJeremy L Thompson // LCOV_EXCL_START 10674b3e95d5SJeremy L Thompson case CEED_EVAL_WEIGHT: 10684b3e95d5SJeremy L Thompson break; // Should not occur 10694b3e95d5SJeremy L Thompson case CEED_EVAL_DIV: 10704b3e95d5SJeremy L Thompson case CEED_EVAL_CURL: 10714b3e95d5SJeremy L Thompson break; // TODO: Not implemented 10724b3e95d5SJeremy L Thompson // LCOV_EXCL_STOP 10734b3e95d5SJeremy L Thompson } 10744b3e95d5SJeremy L Thompson } 10754b3e95d5SJeremy L Thompson } 10760183ed61SJeremy L Thompson tab.pop(); 10770183ed61SJeremy L Thompson code << tab << "}\n"; 10784b3e95d5SJeremy L Thompson return CEED_ERROR_SUCCESS; 10794b3e95d5SJeremy L Thompson } 10804b3e95d5SJeremy L Thompson 10814b3e95d5SJeremy L Thompson //------------------------------------------------------------------------------ 1082b2165e7aSSebastian Grimberg // Build single operator kernel 1083ab213215SJeremy L Thompson //------------------------------------------------------------------------------ 1084ddae5012SJeremy L Thompson extern "C" int CeedOperatorBuildKernel_Cuda_gen(CeedOperator op, bool *is_good_build) { 1085412e5683SJeremy L Thompson bool is_all_tensor = true, is_all_nontensor = true, is_at_points = false, use_3d_slices = false; 1086241a4b83SYohann Ceed ceed; 1087efa41df3SJeremy 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; 1088ca735530SJeremy L Thompson CeedQFunctionField *qf_input_fields, *qf_output_fields; 1089ca735530SJeremy L Thompson CeedQFunction_Cuda_gen *qf_data; 1090ca735530SJeremy L Thompson CeedQFunction qf; 1091ca735530SJeremy L Thompson CeedOperatorField *op_input_fields, *op_output_fields; 1092ca735530SJeremy L Thompson CeedOperator_Cuda_gen *data; 10934b3e95d5SJeremy L Thompson std::ostringstream code; 10940183ed61SJeremy L Thompson Tab tab; 10954b3e95d5SJeremy L Thompson 1096ddae5012SJeremy L Thompson CeedCallBackend(CeedOperatorGetData(op, &data)); 10974b3e95d5SJeremy L Thompson { 10984b3e95d5SJeremy L Thompson bool is_setup_done; 1099ca735530SJeremy L Thompson 1100ca735530SJeremy L Thompson CeedCallBackend(CeedOperatorIsSetupDone(op, &is_setup_done)); 1101ddae5012SJeremy L Thompson if (is_setup_done) { 1102ddae5012SJeremy L Thompson *is_good_build = !data->use_fallback; 1103ddae5012SJeremy L Thompson return CEED_ERROR_SUCCESS; 1104ddae5012SJeremy L Thompson } 1105ddae5012SJeremy L Thompson } 1106ddae5012SJeremy L Thompson 1107ddae5012SJeremy L Thompson // Check field compatibility 11088d12f40eSJeremy L Thompson CeedCallBackend(CeedOperatorGetFields(op, &num_input_fields, &op_input_fields, &num_output_fields, &op_output_fields)); 1109ddae5012SJeremy L Thompson { 1110412e5683SJeremy L Thompson bool has_shared_bases = true; 1111ddae5012SJeremy L Thompson 1112ddae5012SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1113ddae5012SJeremy L Thompson CeedBasis basis; 1114ddae5012SJeremy L Thompson 1115ddae5012SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 1116ddae5012SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 1117ddae5012SJeremy L Thompson bool is_tensor = true; 1118ddae5012SJeremy L Thompson const char *resource; 1119ddae5012SJeremy L Thompson char *resource_root; 1120ddae5012SJeremy L Thompson Ceed basis_ceed; 1121ddae5012SJeremy L Thompson 1122ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 1123c9192acaSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 112445a787f7SJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 1125ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 1126ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 1127ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 1128c9192acaSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 1129ddae5012SJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 1130ddae5012SJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 1131ddae5012SJeremy L Thompson } 1132ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 11334b3e95d5SJeremy L Thompson } 1134ca735530SJeremy L Thompson 1135ddae5012SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 1136ddae5012SJeremy L Thompson CeedBasis basis; 1137ddae5012SJeremy L Thompson 1138ddae5012SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 1139ddae5012SJeremy L Thompson if (basis != CEED_BASIS_NONE) { 1140ddae5012SJeremy L Thompson bool is_tensor = true; 1141ddae5012SJeremy L Thompson const char *resource; 1142ddae5012SJeremy L Thompson char *resource_root; 1143ddae5012SJeremy L Thompson Ceed basis_ceed; 1144ddae5012SJeremy L Thompson 1145ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 1146c9192acaSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 1147c9192acaSJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 1148ddae5012SJeremy L Thompson 1149ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 1150ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 1151ddae5012SJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 1152c9192acaSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 1153ddae5012SJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 1154ddae5012SJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 1155ddae5012SJeremy L Thompson } 1156ddae5012SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 1157ddae5012SJeremy L Thompson } 1158ddae5012SJeremy L Thompson // -- Fallback to ref if not all bases are shared 1159412e5683SJeremy L Thompson if (!has_shared_bases) { 1160ddae5012SJeremy L Thompson *is_good_build = false; 1161ddae5012SJeremy L Thompson return CEED_ERROR_SUCCESS; 1162ddae5012SJeremy L Thompson } 1163ddae5012SJeremy L Thompson } 1164ca735530SJeremy L Thompson CeedCallBackend(CeedOperatorGetCeed(op, &ceed)); 1165ca735530SJeremy L Thompson CeedCallBackend(CeedOperatorGetQFunction(op, &qf)); 1166ca735530SJeremy L Thompson CeedCallBackend(CeedQFunctionGetData(qf, &qf_data)); 1167ca735530SJeremy L Thompson CeedCallBackend(CeedQFunctionGetFields(qf, NULL, &qf_input_fields, NULL, &qf_output_fields)); 1168241a4b83SYohann 11694b3e95d5SJeremy L Thompson // Get operator data 11708b97b69aSJeremy L Thompson CeedCallBackend(CeedOperatorIsAtPoints(op, &is_at_points)); 1171412e5683SJeremy L Thompson { 1172efa41df3SJeremy L Thompson CeedInt max_P = 0, max_P_1d = 0; 1173412e5683SJeremy L Thompson 1174412e5683SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelData_Cuda_gen(ceed, num_input_fields, op_input_fields, qf_input_fields, num_output_fields, 1175412e5683SJeremy L Thompson op_output_fields, qf_output_fields, &max_P, &max_P_1d, &Q, &Q_1d, &max_dim, &is_all_tensor, 1176412e5683SJeremy L Thompson &use_3d_slices)); 1177412e5683SJeremy L Thompson data->max_P_1d = is_all_tensor ? max_P_1d : max_P; 1178412e5683SJeremy L Thompson } 1179412e5683SJeremy L Thompson if (max_dim == 0) max_dim = 1; 1180412e5683SJeremy L Thompson data->dim = max_dim; 11818b97b69aSJeremy L Thompson if (is_at_points) { 11828b97b69aSJeremy L Thompson CeedElemRestriction_Cuda *rstr_data; 11838b97b69aSJeremy L Thompson CeedElemRestriction rstr_points = NULL; 11844b3e95d5SJeremy L Thompson 11858b97b69aSJeremy L Thompson CeedCallBackend(CeedOperatorAtPointsGetPoints(op, &rstr_points, NULL)); 11868b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetMaxPointsInElement(rstr_points, &max_num_points)); 11878b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(rstr_points, &coords_comp_stride)); 11888b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetData(rstr_points, &rstr_data)); 11898b97b69aSJeremy L Thompson data->points.indices = (CeedInt *)rstr_data->d_offsets; 11908b97b69aSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_points)); 11918b97b69aSJeremy L Thompson } 11928b97b69aSJeremy L Thompson if (is_at_points) use_3d_slices = false; 11938b97b69aSJeremy L Thompson if (Q_1d == 0) { 11948b97b69aSJeremy L Thompson if (is_at_points) Q_1d = max_num_points; 11958b97b69aSJeremy L Thompson else CeedCallBackend(CeedOperatorGetNumQuadraturePoints(op, &Q_1d)); 11964b3e95d5SJeremy L Thompson } 1197c433aabcSJeremy L Thompson if (Q == 0) Q = Q_1d; 1198c433aabcSJeremy L Thompson data->Q = Q; 11994b3e95d5SJeremy L Thompson data->Q_1d = Q_1d; 12004b3e95d5SJeremy L Thompson 12010b454692Sjeremylt // Check for restriction only identity operator 12024b3e95d5SJeremy L Thompson { 12034b3e95d5SJeremy L Thompson bool is_identity_qf; 12044b3e95d5SJeremy L Thompson 12052b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionIsIdentity(qf, &is_identity_qf)); 12060b454692Sjeremylt if (is_identity_qf) { 12079e201c85SYohann CeedEvalMode eval_mode_in, eval_mode_out; 1208ca735530SJeremy L Thompson 12092b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[0], &eval_mode_in)); 12102b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[0], &eval_mode_out)); 12116574a04fSJeremy L Thompson CeedCheck(eval_mode_in != CEED_EVAL_NONE || eval_mode_out != CEED_EVAL_NONE, ceed, CEED_ERROR_BACKEND, 12126574a04fSJeremy L Thompson "Backend does not implement restriction only identity operators"); 12130b454692Sjeremylt } 12144b3e95d5SJeremy L Thompson } 12150b454692Sjeremylt 1216f1a13f77SYohann Dudouit // Add atomicAdd function for old NVidia architectures 12174b3e95d5SJeremy L Thompson { 12184b3e95d5SJeremy L Thompson Ceed_Cuda *ceed_data; 12194b3e95d5SJeremy L Thompson struct cudaDeviceProp prop; 12204b3e95d5SJeremy L Thompson 12212b730f8bSJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_data)); 12222b730f8bSJeremy L Thompson CeedCallBackend(cudaGetDeviceProperties(&prop, ceed_data->device_id)); 122380a9ef05SNatalie Beams if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { 12240183ed61SJeremy L Thompson code << tab << "// AtomicAdd fallback source\n"; 12250183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-atomic-add-fallback.h>\n\n"; 1226f1a13f77SYohann Dudouit } 12274b3e95d5SJeremy L Thompson } 1228f1a13f77SYohann Dudouit 12299e201c85SYohann // Load basis source files 1230412e5683SJeremy L Thompson if (!is_all_nontensor) { 12310183ed61SJeremy L Thompson code << tab << "// Tensor basis source\n"; 12320183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-templates.h>\n\n"; 1233412e5683SJeremy L Thompson } 1234412e5683SJeremy L Thompson if (!is_all_tensor) { 12350183ed61SJeremy L Thompson code << tab << "// Non-tensor basis source\n"; 12360183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-nontensor-templates.h>\n\n"; 1237dc007f05SJeremy L Thompson } 1238c8e372f0SJeremy L Thompson if (!is_all_tensor && !is_all_nontensor) { 1239c8e372f0SJeremy L Thompson code << "// Tensor basis source\n"; 1240c8e372f0SJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-flattened-templates.h>\n\n"; 1241c8e372f0SJeremy L Thompson } 1242dc007f05SJeremy L Thompson if (is_at_points) { 12438b97b69aSJeremy L Thompson code << "// AtPoints basis source\n"; 12448b97b69aSJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-at-points-templates.h>\n\n"; 1245dc007f05SJeremy L Thompson } 12469c25dd66SJeremy L Thompson code << "// CodeGen operator source\n"; 12479c25dd66SJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-gen-templates.h>\n\n"; 1248241a4b83SYohann 12494b3e95d5SJeremy L Thompson // Get QFunction name 12504b3e95d5SJeremy L Thompson std::string qfunction_name(qf_data->qfunction_name); 12514b3e95d5SJeremy L Thompson std::string operator_name; 12524b3e95d5SJeremy L Thompson 125309095acaSJeremy L Thompson operator_name = "CeedKernelCudaGenOperator_" + qfunction_name; 12544d537eeaSYohann 12559e201c85SYohann // Define CEED_Q_VLA 12560183ed61SJeremy L Thompson code << "\n" << tab << "#undef CEED_Q_VLA\n"; 1257412e5683SJeremy L Thompson if (max_dim != 3 || is_at_points || use_3d_slices || !is_all_tensor) { 12580183ed61SJeremy L Thompson code << tab << "#define CEED_Q_VLA 1\n\n"; 12599e201c85SYohann } else { 12600183ed61SJeremy L Thompson code << tab << "#define CEED_Q_VLA " << Q_1d << "\n\n"; 12619e201c85SYohann } 12629e201c85SYohann 12634b3e95d5SJeremy L Thompson // Add user QFunction source 12644b3e95d5SJeremy L Thompson { 12659c25dd66SJeremy L Thompson const char *source_path; 12664b3e95d5SJeremy L Thompson 12679c25dd66SJeremy L Thompson CeedCallBackend(CeedQFunctionGetSourcePath(qf, &source_path)); 12689c25dd66SJeremy L Thompson CeedCheck(source_path, ceed, CEED_ERROR_UNSUPPORTED, "/gpu/cuda/gen backend requires QFunction source code file"); 12699c25dd66SJeremy L Thompson 12700183ed61SJeremy L Thompson code << tab << "// User QFunction source\n"; 12710183ed61SJeremy L Thompson code << tab << "#include \"" << source_path << "\"\n\n"; 12724b3e95d5SJeremy L Thompson } 1273241a4b83SYohann 1274241a4b83SYohann // Setup 12750183ed61SJeremy L Thompson code << "\n" << tab << "// -----------------------------------------------------------------------------\n"; 12760183ed61SJeremy L Thompson code << tab << "// Operator Kernel\n"; 12770183ed61SJeremy L Thompson code << tab << "// \n"; 12780183ed61SJeremy L Thompson code << tab << "// d_[in,out]_i: CeedVector device array\n"; 12790183ed61SJeremy L Thompson code << tab << "// r_[in,out]_e_i: Element vector register\n"; 12800183ed61SJeremy L Thompson code << tab << "// r_[in,out]_q_i: Quadrature space vector register\n"; 12810183ed61SJeremy L Thompson code << tab << "// r_[in,out]_c_i: AtPoints Chebyshev coefficients register\n"; 12820183ed61SJeremy L Thompson code << tab << "// r_[in,out]_s_i: Quadrature space slice vector register\n"; 12830183ed61SJeremy L Thompson code << tab << "// \n"; 12840183ed61SJeremy L Thompson code << tab << "// s_B_[in,out]_i: Interpolation matrix, shared memory\n"; 12850183ed61SJeremy L Thompson code << tab << "// s_G_[in,out]_i: Gradient matrix, shared memory\n"; 12860183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n"; 12870183ed61SJeremy L Thompson code << tab << "extern \"C\" __global__ void " << operator_name 12888b97b69aSJeremy L Thompson << "(CeedInt num_elem, void* ctx, FieldsInt_Cuda indices, Fields_Cuda fields, Fields_Cuda B, Fields_Cuda G, CeedScalar *W, Points_Cuda " 12898b97b69aSJeremy L Thompson "points) {\n"; 12900183ed61SJeremy L Thompson tab.push(); 12914b3e95d5SJeremy L Thompson 12924b3e95d5SJeremy L Thompson // Scratch buffers 12939e201c85SYohann for (CeedInt i = 0; i < num_input_fields; i++) { 12944b3e95d5SJeremy L Thompson CeedEvalMode eval_mode; 12954b3e95d5SJeremy L Thompson 12962b730f8bSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 12979e201c85SYohann if (eval_mode != CEED_EVAL_WEIGHT) { // Skip CEED_EVAL_WEIGHT 12980183ed61SJeremy L Thompson code << tab << "const CeedScalar *__restrict__ d_in_" << i << " = fields.inputs[" << i << "];\n"; 1299241a4b83SYohann } 1300241a4b83SYohann } 13019e201c85SYohann for (CeedInt i = 0; i < num_output_fields; i++) { 13020183ed61SJeremy L Thompson code << tab << "CeedScalar *__restrict__ d_out_" << i << " = fields.outputs[" << i << "];\n"; 1303241a4b83SYohann } 13041da99368SJeremy L Thompson 13050183ed61SJeremy L Thompson code << tab << "const CeedInt max_dim = " << max_dim << ";\n"; 1306412e5683SJeremy L Thompson if (!is_all_tensor) { 13070183ed61SJeremy L Thompson code << tab << "const CeedInt Q = " << Q << ";\n"; 1308412e5683SJeremy L Thompson } 1309412e5683SJeremy L Thompson if (!is_all_nontensor) { 13100183ed61SJeremy L Thompson code << tab << "const CeedInt Q_1d = " << Q_1d << ";\n"; 1311412e5683SJeremy L Thompson } 13128b97b69aSJeremy L Thompson if (is_at_points) { 13130183ed61SJeremy L Thompson code << tab << "const CeedInt max_num_points = " << max_num_points << ";\n"; 13140183ed61SJeremy L Thompson code << tab << "const CeedInt coords_comp_stride = " << coords_comp_stride << ";\n"; 13158b97b69aSJeremy L Thompson } 13161da99368SJeremy L Thompson 13174b3e95d5SJeremy L Thompson // Shared data 13180183ed61SJeremy L Thompson code << tab << "extern __shared__ CeedScalar slice[];\n"; 13190183ed61SJeremy L Thompson code << tab << "SharedData_Cuda data;\n"; 13200183ed61SJeremy L Thompson code << tab << "data.t_id_x = threadIdx.x;\n"; 13210183ed61SJeremy L Thompson code << tab << "data.t_id_y = threadIdx.y;\n"; 13220183ed61SJeremy L Thompson code << tab << "data.t_id_z = threadIdx.z;\n"; 13230183ed61SJeremy L Thompson code << tab << "data.t_id = threadIdx.x + threadIdx.y*blockDim.x + threadIdx.z*blockDim.y*blockDim.x;\n"; 13240183ed61SJeremy L Thompson code << tab << "data.slice = slice + data.t_id_z*OP_T_1D" << ((!is_all_tensor || max_dim == 1) ? "" : "*OP_T_1D") << ";\n"; 1325920dcdc4Sjeremylt 13260a2a6492SJeremy L Thompson // -- Determine input mat reuse 132745a787f7SJeremy L Thompson FieldReuse_Cuda input_matrix_reuse[CEED_FIELD_MAX]; 13280a2a6492SJeremy L Thompson 13290a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 133045a787f7SJeremy L Thompson input_matrix_reuse[i].index = -1; 13310a2a6492SJeremy L Thompson } 13320a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1333412e5683SJeremy L Thompson bool is_tensor = true; 13340a2a6492SJeremy L Thompson CeedEvalMode eval_mode_i; 13350a2a6492SJeremy L Thompson CeedBasis basis_i; 13360a2a6492SJeremy L Thompson 13370a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode_i)); 13380a2a6492SJeremy L Thompson if (eval_mode_i == CEED_EVAL_WEIGHT) continue; 13390a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis_i)); 1340412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 134145a787f7SJeremy L Thompson for (CeedInt j = 0; (input_matrix_reuse[i].index == -1) && (j < i); j++) { 13420a2a6492SJeremy L Thompson CeedEvalMode eval_mode_j; 13430a2a6492SJeremy L Thompson CeedBasis basis_j; 13440a2a6492SJeremy L Thompson 13450a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 13460a2a6492SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 13470a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 13480a2a6492SJeremy L Thompson if (basis_i == basis_j) { 13490a2a6492SJeremy L Thompson if (is_tensor) { 135045a787f7SJeremy L Thompson input_matrix_reuse[i].index = j; 135145a787f7SJeremy L Thompson input_matrix_reuse[i].is_input = true; 135245a787f7SJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 13530a2a6492SJeremy L Thompson } else { 13540a2a6492SJeremy L Thompson // For non-tensor can only re-use with the same eval mode 13550a2a6492SJeremy L Thompson if (eval_mode_i == eval_mode_j) { 135645a787f7SJeremy L Thompson input_matrix_reuse[i].index = j; 135745a787f7SJeremy L Thompson input_matrix_reuse[i].is_input = true; 135845a787f7SJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 13590a2a6492SJeremy L Thompson } 13600a2a6492SJeremy L Thompson } 13610a2a6492SJeremy L Thompson } 13620a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 13630a2a6492SJeremy L Thompson } 13640a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 13650a2a6492SJeremy L Thompson } 13660a2a6492SJeremy L Thompson 13670a2a6492SJeremy L Thompson // -- Determine output mat reuse 136845a787f7SJeremy L Thompson FieldReuse_Cuda output_matrix_reuse[CEED_FIELD_MAX]; 13690a2a6492SJeremy L Thompson 13700a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 137145a787f7SJeremy L Thompson output_matrix_reuse[i].index = -1; 13720a2a6492SJeremy L Thompson } 13730a2a6492SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 1374412e5683SJeremy L Thompson bool is_tensor = true; 13750a2a6492SJeremy L Thompson CeedEvalMode eval_mode_i; 13760a2a6492SJeremy L Thompson CeedBasis basis_i; 13770a2a6492SJeremy L Thompson 13780a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode_i)); 13790a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis_i)); 1380412e5683SJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 138145a787f7SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < num_input_fields); j++) { 13820a2a6492SJeremy L Thompson CeedEvalMode eval_mode_j; 13830a2a6492SJeremy L Thompson CeedBasis basis_j; 13840a2a6492SJeremy L Thompson 13850a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 13860a2a6492SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 13870a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 13880a2a6492SJeremy L Thompson if (basis_i == basis_j) { 13890a2a6492SJeremy L Thompson if (is_tensor) { 139045a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 139145a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = true; 139245a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 13930a2a6492SJeremy L Thompson } else { 13940a2a6492SJeremy L Thompson // For non-tensor can only re-use with the same eval mode 13950a2a6492SJeremy L Thompson if (eval_mode_i == eval_mode_j) { 139645a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 139745a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = true; 139845a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 13990a2a6492SJeremy L Thompson } 14000a2a6492SJeremy L Thompson } 14010a2a6492SJeremy L Thompson } 14020a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 14030a2a6492SJeremy L Thompson } 140445a787f7SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < i); j++) { 14050a2a6492SJeremy L Thompson CeedEvalMode eval_mode_j; 14060a2a6492SJeremy L Thompson CeedBasis basis_j; 14070a2a6492SJeremy L Thompson 14080a2a6492SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[j], &eval_mode_j)); 14090a2a6492SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 14100a2a6492SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[j], &basis_j)); 14110a2a6492SJeremy L Thompson if (basis_i == basis_j) { 14120a2a6492SJeremy L Thompson if (is_tensor) { 141345a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 141445a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = false; 141545a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 14160a2a6492SJeremy L Thompson } else { 14170a2a6492SJeremy L Thompson // For non-tensor can only re-use with the same eval mode 14180a2a6492SJeremy L Thompson if (eval_mode_i == eval_mode_j) { 141945a787f7SJeremy L Thompson output_matrix_reuse[i].index = j; 142045a787f7SJeremy L Thompson output_matrix_reuse[i].is_input = false; 142145a787f7SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 14220a2a6492SJeremy L Thompson } 14230a2a6492SJeremy L Thompson } 14240a2a6492SJeremy L Thompson } 14250a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 14260a2a6492SJeremy L Thompson } 14270a2a6492SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 14280a2a6492SJeremy L Thompson } 14290a2a6492SJeremy L Thompson 1430ac421f39SYohann // Initialize constants, and matrices B and G 14310183ed61SJeremy L Thompson code << "\n" << tab << "// Input field constants and basis data\n"; 14329e201c85SYohann for (CeedInt i = 0; i < num_input_fields; i++) { 14330183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_input_fields[i], qf_input_fields[i], input_matrix_reuse[i], 14340183ed61SJeremy L Thompson max_dim, Q, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 1435920dcdc4Sjeremylt } 14360183ed61SJeremy L Thompson code << "\n" << tab << "// Output field constants and basis data\n"; 14379e201c85SYohann for (CeedInt i = 0; i < num_output_fields; i++) { 14380183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], output_matrix_reuse[i], 14398014c5e7SJeremy L Thompson max_dim, Q, Q_1d, false, is_all_tensor, is_at_points, use_3d_slices)); 14404b3e95d5SJeremy L Thompson } 1441920dcdc4Sjeremylt 14424b3e95d5SJeremy L Thompson // Loop over all elements 14430183ed61SJeremy L Thompson code << "\n" << tab << "// Element loop\n"; 14440183ed61SJeremy L Thompson code << tab << "__syncthreads();\n"; 14450183ed61SJeremy L Thompson code << tab << "for (CeedInt elem = blockIdx.x*blockDim.z + threadIdx.z; elem < num_elem; elem += gridDim.x*blockDim.z) {\n"; 14460183ed61SJeremy L Thompson tab.push(); 14474b3e95d5SJeremy L Thompson 1448e93651e5SJeremy L Thompson // -- Compute minimum buffer space needed 14498b97b69aSJeremy L Thompson CeedInt max_rstr_buffer_size = 1; 1450e93651e5SJeremy L Thompson 14519e201c85SYohann for (CeedInt i = 0; i < num_input_fields; i++) { 14526de40545SJeremy L Thompson CeedEvalMode eval_mode; 14536de40545SJeremy L Thompson 14546de40545SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 14556de40545SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE && eval_mode != CEED_EVAL_WEIGHT) { 1456a61b1c91SJeremy L Thompson CeedInt num_comp; 1457e93651e5SJeremy L Thompson CeedElemRestriction elem_rstr; 1458e93651e5SJeremy L Thompson 1459e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 1460e93651e5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 1461a61b1c91SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 1462681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 1463e93651e5SJeremy L Thompson } 14646de40545SJeremy L Thompson } 1465e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 14666de40545SJeremy L Thompson CeedEvalMode eval_mode; 14676de40545SJeremy L Thompson 14686de40545SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 14696de40545SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE) { 1470a61b1c91SJeremy L Thompson CeedInt num_comp; 1471e93651e5SJeremy L Thompson CeedElemRestriction elem_rstr; 1472e93651e5SJeremy L Thompson 1473e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 1474e93651e5SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 1475a61b1c91SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 1476681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 1477e93651e5SJeremy L Thompson } 14786de40545SJeremy L Thompson } 14790183ed61SJeremy L Thompson code << tab << "// Scratch restriction buffer space\n"; 14800183ed61SJeremy L Thompson code << tab << "CeedScalar r_e_scratch[" << max_rstr_buffer_size << "];\n"; 1481e93651e5SJeremy L Thompson 1482e93651e5SJeremy L Thompson // -- Determine best input field processing order 1483e93651e5SJeremy L Thompson CeedInt field_rstr_in_buffer[CEED_FIELD_MAX], input_field_order[CEED_FIELD_MAX]; 1484e93651e5SJeremy L Thompson 1485e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1486e93651e5SJeremy L Thompson field_rstr_in_buffer[i] = -1; 1487e93651e5SJeremy L Thompson input_field_order[i] = -1; 1488e93651e5SJeremy L Thompson } 1489e93651e5SJeremy L Thompson { 1490e93651e5SJeremy L Thompson bool is_ordered[CEED_FIELD_MAX]; 1491e93651e5SJeremy L Thompson CeedInt curr_index = 0; 1492e93651e5SJeremy L Thompson 1493e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) is_ordered[i] = false; 1494e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 1495e93651e5SJeremy L Thompson CeedVector vec_i; 1496e93651e5SJeremy L Thompson CeedElemRestriction rstr_i; 1497e93651e5SJeremy L Thompson 1498e93651e5SJeremy L Thompson if (is_ordered[i]) continue; 1499e93651e5SJeremy L Thompson field_rstr_in_buffer[i] = i; 1500e93651e5SJeremy L Thompson is_ordered[i] = true; 1501e93651e5SJeremy L Thompson input_field_order[curr_index] = i; 1502e93651e5SJeremy L Thompson curr_index++; 1503034f99fdSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[i], &vec_i)); 1504e93651e5SJeremy L Thompson if (vec_i == CEED_VECTOR_NONE) continue; // CEED_EVAL_WEIGHT 1505e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &rstr_i)); 1506e93651e5SJeremy L Thompson for (CeedInt j = i + 1; j < num_input_fields; j++) { 1507e93651e5SJeremy L Thompson CeedVector vec_j; 1508e93651e5SJeremy L Thompson CeedElemRestriction rstr_j; 1509e93651e5SJeremy L Thompson 1510e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[j], &vec_j)); 1511e93651e5SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[j], &rstr_j)); 1512e93651e5SJeremy L Thompson if (rstr_i == rstr_j && vec_i == vec_j) { 1513e93651e5SJeremy L Thompson field_rstr_in_buffer[j] = i; 1514e93651e5SJeremy L Thompson is_ordered[j] = true; 1515e93651e5SJeremy L Thompson input_field_order[curr_index] = j; 1516e93651e5SJeremy L Thompson curr_index++; 1517e93651e5SJeremy L Thompson } 1518681d0ea7SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_j)); 1519681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_j)); 1520e93651e5SJeremy L Thompson } 1521681d0ea7SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_i)); 1522681d0ea7SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_i)); 1523e93651e5SJeremy L Thompson } 1524e93651e5SJeremy L Thompson } 1525e93651e5SJeremy L Thompson 1526e93651e5SJeremy L Thompson // -- Input restriction and basis 15270183ed61SJeremy L Thompson code << "\n" << tab << "// -- Input field restrictions and basis actions\n"; 1528e93651e5SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 152959fa3f92SJeremy L Thompson const char *field_name; 153059fa3f92SJeremy L Thompson const CeedInt f = input_field_order[i]; 1531e93651e5SJeremy L Thompson 153259fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 15330183ed61SJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 1534920dcdc4Sjeremylt 15354b3e95d5SJeremy L Thompson // ---- Restriction 15360183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, f, field_rstr_in_buffer, op_input_fields[f], qf_input_fields[f], 15370183ed61SJeremy L Thompson max_dim, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 15389a2291e3SJeremy L Thompson 15394b3e95d5SJeremy L Thompson // ---- Basis action 15400183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 15410183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 1542920dcdc4Sjeremylt } 1543920dcdc4Sjeremylt 15444b3e95d5SJeremy L Thompson // -- Q function 15450183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelQFunction_Cuda_gen(code, data, tab, max_dim, max_num_points, num_input_fields, op_input_fields, 15460183ed61SJeremy L Thompson qf_input_fields, num_output_fields, op_output_fields, qf_output_fields, qfunction_name, 15470183ed61SJeremy L Thompson Q_1d, is_all_tensor, is_at_points, use_3d_slices)); 1548ca735530SJeremy L Thompson 15494b3e95d5SJeremy L Thompson // -- Output basis and restriction 15500183ed61SJeremy L Thompson code << "\n" << tab << "// -- Output field basis action and restrictions\n"; 15519e201c85SYohann for (CeedInt i = 0; i < num_output_fields; i++) { 155259fa3f92SJeremy L Thompson const char *field_name; 155359fa3f92SJeremy L Thompson 155459fa3f92SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 15550183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 1556ca735530SJeremy L Thompson 15574b3e95d5SJeremy L Thompson // ---- Basis action 15580183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], max_dim, Q_1d, false, 1559412e5683SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 15609a2291e3SJeremy L Thompson 15614b3e95d5SJeremy L Thompson // ---- Restriction 15620183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, i, NULL, op_output_fields[i], qf_output_fields[i], max_dim, Q_1d, 15630183ed61SJeremy L Thompson false, is_all_tensor, is_at_points, use_3d_slices)); 1564ac421f39SYohann } 1565241a4b83SYohann 15664b3e95d5SJeremy L Thompson // Close loop and function 15670183ed61SJeremy L Thompson tab.pop(); 15680183ed61SJeremy L Thompson code << tab << "}\n"; 15690183ed61SJeremy L Thompson tab.pop(); 15700183ed61SJeremy L Thompson code << tab << "}\n"; 15710183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n\n"; 1572241a4b83SYohann 15733a2968d6SJeremy L Thompson // Compile 1574ddae5012SJeremy L Thompson { 1575ddae5012SJeremy L Thompson bool is_compile_good = false; 1576412e5683SJeremy L Thompson const CeedInt T_1d = CeedIntMax(is_all_tensor ? Q_1d : Q, data->max_P_1d); 1577ddae5012SJeremy L Thompson 1578a61b1c91SJeremy L Thompson data->thread_1d = T_1d; 1579412e5683SJeremy L Thompson CeedCallBackend(CeedTryCompile_Cuda(ceed, code.str().c_str(), &is_compile_good, &data->module, 1, "OP_T_1D", T_1d)); 1580ddae5012SJeremy L Thompson if (is_compile_good) { 1581ddae5012SJeremy L Thompson *is_good_build = true; 1582eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Cuda(ceed, data->module, operator_name.c_str(), &data->op)); 1583ddae5012SJeremy L Thompson } else { 1584ddae5012SJeremy L Thompson *is_good_build = false; 1585ddae5012SJeremy L Thompson data->use_fallback = true; 1586ddae5012SJeremy L Thompson } 1587ddae5012SJeremy L Thompson } 15882b730f8bSJeremy L Thompson CeedCallBackend(CeedOperatorSetSetupDone(op)); 15899bc66399SJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 1590c11e12f4SJeremy L Thompson CeedCallBackend(CeedQFunctionDestroy(&qf)); 1591e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 1592241a4b83SYohann } 15932a86cc9dSSebastian Grimberg 1594ab213215SJeremy L Thompson //------------------------------------------------------------------------------ 15950183ed61SJeremy L Thompson // Build AtPoints assembly operator kernel 15960183ed61SJeremy L Thompson //------------------------------------------------------------------------------ 15970183ed61SJeremy L Thompson static int CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen(CeedOperator op, bool is_full, bool *is_good_build) { 15980183ed61SJeremy L Thompson bool is_all_tensor = true, is_at_points = false, use_3d_slices = false; 15990183ed61SJeremy L Thompson Ceed ceed; 16000183ed61SJeremy L Thompson CeedInt Q, Q_1d, num_input_fields, num_output_fields, max_dim = 1, max_num_points = 0, coords_comp_stride = 0; 16010183ed61SJeremy L Thompson CeedQFunctionField *qf_input_fields, *qf_output_fields; 16020183ed61SJeremy L Thompson CeedQFunction_Cuda_gen *qf_data; 16030183ed61SJeremy L Thompson CeedQFunction qf; 16040183ed61SJeremy L Thompson CeedOperatorField *op_input_fields, *op_output_fields; 16050183ed61SJeremy L Thompson CeedOperator_Cuda_gen *data; 16060183ed61SJeremy L Thompson std::ostringstream code; 16070183ed61SJeremy L Thompson Tab tab; 16080183ed61SJeremy L Thompson 16090183ed61SJeremy L Thompson // Check compatibility 16100183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetCeed(op, &ceed)); 16110183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorIsAtPoints(op, &is_at_points)); 16120183ed61SJeremy L Thompson CeedCheck(is_at_points, ceed, CEED_ERROR_BACKEND, "Only AtPoints operator assembly supported"); 16130183ed61SJeremy L Thompson 16140183ed61SJeremy L Thompson // Retrieve operator data 16150183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetData(op, &data)); 16160183ed61SJeremy L Thompson Q = data->Q; 16170183ed61SJeremy L Thompson Q_1d = data->Q_1d; 16180183ed61SJeremy L Thompson max_dim = data->dim; 16190183ed61SJeremy L Thompson { 16200183ed61SJeremy L Thompson CeedElemRestriction rstr_points = NULL; 16210183ed61SJeremy L Thompson 16220183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorAtPointsGetPoints(op, &rstr_points, NULL)); 16230183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetMaxPointsInElement(rstr_points, &max_num_points)); 16240183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(rstr_points, &coords_comp_stride)); 16250183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_points)); 16260183ed61SJeremy L Thompson } 16270183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetQFunction(op, &qf)); 16280183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionGetData(qf, &qf_data)); 16290183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionGetFields(qf, NULL, &qf_input_fields, NULL, &qf_output_fields)); 16300183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorGetFields(op, &num_input_fields, &op_input_fields, &num_output_fields, &op_output_fields)); 16310183ed61SJeremy L Thompson 16320183ed61SJeremy L Thompson // Add atomicAdd function for old NVidia architectures 16330183ed61SJeremy L Thompson { 16340183ed61SJeremy L Thompson Ceed_Cuda *ceed_data; 16350183ed61SJeremy L Thompson struct cudaDeviceProp prop; 16360183ed61SJeremy L Thompson 16370183ed61SJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_data)); 16380183ed61SJeremy L Thompson CeedCallBackend(cudaGetDeviceProperties(&prop, ceed_data->device_id)); 16390183ed61SJeremy L Thompson if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { 16400183ed61SJeremy L Thompson code << tab << "// AtomicAdd fallback source\n"; 16410183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-atomic-add-fallback.h>\n\n"; 16420183ed61SJeremy L Thompson } 16430183ed61SJeremy L Thompson } 16440183ed61SJeremy L Thompson 16450183ed61SJeremy L Thompson // Load basis source files 16460183ed61SJeremy L Thompson code << tab << "// Tensor basis source\n"; 16470183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-templates.h>\n\n"; 16480183ed61SJeremy L Thompson code << tab << "// AtPoints basis source\n"; 16490183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-at-points-templates.h>\n\n"; 16500183ed61SJeremy L Thompson code << tab << "// CodeGen operator source\n"; 16510183ed61SJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-gen-templates.h>\n\n"; 16520183ed61SJeremy L Thompson 16530183ed61SJeremy L Thompson // Get QFunction name 16540183ed61SJeremy L Thompson std::string qfunction_name(qf_data->qfunction_name); 16550183ed61SJeremy L Thompson std::string operator_name; 16560183ed61SJeremy L Thompson 16570183ed61SJeremy L Thompson if (is_full) { 16580183ed61SJeremy L Thompson operator_name = "CeedKernelCudaGenOperatorFullAssembly_" + qfunction_name; 16590183ed61SJeremy L Thompson } else { 16600183ed61SJeremy L Thompson operator_name = "CeedKernelCudaGenOperatorDiagonalAssembly_" + qfunction_name; 16610183ed61SJeremy L Thompson } 16620183ed61SJeremy L Thompson 16630183ed61SJeremy L Thompson // Define CEED_Q_VLA 16640183ed61SJeremy L Thompson code << "\n" << tab << "#undef CEED_Q_VLA\n"; 16650183ed61SJeremy L Thompson code << tab << "#define CEED_Q_VLA 1\n\n"; 16660183ed61SJeremy L Thompson 16670183ed61SJeremy L Thompson // Add user QFunction source 16680183ed61SJeremy L Thompson { 16690183ed61SJeremy L Thompson const char *source_path; 16700183ed61SJeremy L Thompson 16710183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionGetSourcePath(qf, &source_path)); 16720183ed61SJeremy L Thompson CeedCheck(source_path, ceed, CEED_ERROR_UNSUPPORTED, "/gpu/cuda/gen backend requires QFunction source code file"); 16730183ed61SJeremy L Thompson 16740183ed61SJeremy L Thompson code << tab << "// User QFunction source\n"; 16750183ed61SJeremy L Thompson code << tab << "#include \"" << source_path << "\"\n\n"; 16760183ed61SJeremy L Thompson } 16770183ed61SJeremy L Thompson 16780183ed61SJeremy L Thompson // Setup 16790183ed61SJeremy L Thompson code << "\n" << tab << "// -----------------------------------------------------------------------------\n"; 16800183ed61SJeremy L Thompson code << tab << "// Operator Assembly Kernel\n"; 16810183ed61SJeremy L Thompson code << tab << "// \n"; 16820183ed61SJeremy L Thompson code << tab << "// d_[in,out]_i: CeedVector device array\n"; 16830183ed61SJeremy L Thompson code << tab << "// r_[in,out]_e_i: Element vector register\n"; 16840183ed61SJeremy L Thompson code << tab << "// r_[in,out]_q_i: Quadrature space vector register\n"; 16850183ed61SJeremy L Thompson code << tab << "// r_[in,out]_c_i: AtPoints Chebyshev coefficients register\n"; 16860183ed61SJeremy L Thompson code << tab << "// r_[in,out]_s_i: Quadrature space slice vector register\n"; 16870183ed61SJeremy L Thompson code << tab << "// \n"; 16880183ed61SJeremy L Thompson code << tab << "// s_B_[in,out]_i: Interpolation matrix, shared memory\n"; 16890183ed61SJeremy L Thompson code << tab << "// s_G_[in,out]_i: Gradient matrix, shared memory\n"; 16900183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n"; 16910183ed61SJeremy L Thompson code << tab << "extern \"C\" __global__ void " << operator_name 16920183ed61SJeremy L Thompson << "(CeedInt num_elem, void* ctx, FieldsInt_Cuda indices, Fields_Cuda fields, Fields_Cuda B, Fields_Cuda G, CeedScalar *W, Points_Cuda " 16930183ed61SJeremy L Thompson "points, CeedScalar *__restrict__ values_array) {\n"; 16940183ed61SJeremy L Thompson tab.push(); 16950183ed61SJeremy L Thompson 16960183ed61SJeremy L Thompson // Scratch buffers 16970183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 16980183ed61SJeremy L Thompson CeedEvalMode eval_mode; 16990183ed61SJeremy L Thompson 17000183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 17010183ed61SJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) { // Skip CEED_EVAL_WEIGHT 17020183ed61SJeremy L Thompson code << tab << "const CeedScalar *__restrict__ d_in_" << i << " = fields.inputs[" << i << "];\n"; 17030183ed61SJeremy L Thompson } 17040183ed61SJeremy L Thompson } 17050183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 17060183ed61SJeremy L Thompson code << tab << "CeedScalar *__restrict__ d_out_" << i << " = fields.outputs[" << i << "];\n"; 17070183ed61SJeremy L Thompson } 17080183ed61SJeremy L Thompson 17090183ed61SJeremy L Thompson code << tab << "const CeedInt max_dim = " << max_dim << ";\n"; 17100183ed61SJeremy L Thompson code << tab << "const CeedInt Q_1d = " << Q_1d << ";\n"; 17110183ed61SJeremy L Thompson code << tab << "const CeedInt max_num_points = " << max_num_points << ";\n"; 17120183ed61SJeremy L Thompson code << tab << "const CeedInt coords_comp_stride = " << coords_comp_stride << ";\n"; 17130183ed61SJeremy L Thompson 17140183ed61SJeremy L Thompson // Shared data 17150183ed61SJeremy L Thompson code << tab << "extern __shared__ CeedScalar slice[];\n"; 17160183ed61SJeremy L Thompson code << tab << "SharedData_Cuda data;\n"; 17170183ed61SJeremy L Thompson code << tab << "data.t_id_x = threadIdx.x;\n"; 17180183ed61SJeremy L Thompson code << tab << "data.t_id_y = threadIdx.y;\n"; 17190183ed61SJeremy L Thompson code << tab << "data.t_id_z = threadIdx.z;\n"; 17200183ed61SJeremy L Thompson code << tab << "data.t_id = threadIdx.x + threadIdx.y*blockDim.x + threadIdx.z*blockDim.y*blockDim.x;\n"; 17210183ed61SJeremy L Thompson code << tab << "data.slice = slice + data.t_id_z*OP_T_1D" << ((!is_all_tensor || max_dim == 1) ? "" : "*OP_T_1D") << ";\n"; 17220183ed61SJeremy L Thompson 17230183ed61SJeremy L Thompson // -- Determine input mat reuse 17240183ed61SJeremy L Thompson FieldReuse_Cuda input_matrix_reuse[CEED_FIELD_MAX]; 17250183ed61SJeremy L Thompson 17260183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 17270183ed61SJeremy L Thompson input_matrix_reuse[i].index = -1; 17280183ed61SJeremy L Thompson } 17290183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 17300183ed61SJeremy L Thompson CeedEvalMode eval_mode_i; 17310183ed61SJeremy L Thompson CeedBasis basis_i; 17320183ed61SJeremy L Thompson 17330183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode_i)); 17340183ed61SJeremy L Thompson if (eval_mode_i == CEED_EVAL_WEIGHT) continue; 17350183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis_i)); 17360183ed61SJeremy L Thompson for (CeedInt j = 0; (input_matrix_reuse[i].index == -1) && (j < i); j++) { 17370183ed61SJeremy L Thompson CeedEvalMode eval_mode_j; 17380183ed61SJeremy L Thompson CeedBasis basis_j; 17390183ed61SJeremy L Thompson 17400183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 17410183ed61SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 17420183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 17430183ed61SJeremy L Thompson if (basis_i == basis_j) { 17440183ed61SJeremy L Thompson input_matrix_reuse[i].index = j; 17450183ed61SJeremy L Thompson input_matrix_reuse[i].is_input = true; 17460183ed61SJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 17470183ed61SJeremy L Thompson } 17480183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 17490183ed61SJeremy L Thompson } 17500183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 17510183ed61SJeremy L Thompson } 17520183ed61SJeremy L Thompson 17530183ed61SJeremy L Thompson // -- Determine output mat reuse 17540183ed61SJeremy L Thompson FieldReuse_Cuda output_matrix_reuse[CEED_FIELD_MAX]; 17550183ed61SJeremy L Thompson 17560183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 17570183ed61SJeremy L Thompson output_matrix_reuse[i].index = -1; 17580183ed61SJeremy L Thompson } 17590183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 17600183ed61SJeremy L Thompson CeedEvalMode eval_mode_i; 17610183ed61SJeremy L Thompson CeedBasis basis_i; 17620183ed61SJeremy L Thompson 17630183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode_i)); 17640183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis_i)); 17650183ed61SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < num_input_fields); j++) { 17660183ed61SJeremy L Thompson CeedEvalMode eval_mode_j; 17670183ed61SJeremy L Thompson CeedBasis basis_j; 17680183ed61SJeremy L Thompson 17690183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 17700183ed61SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 17710183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 17720183ed61SJeremy L Thompson if (basis_i == basis_j) { 17730183ed61SJeremy L Thompson output_matrix_reuse[i].index = j; 17740183ed61SJeremy L Thompson output_matrix_reuse[i].is_input = true; 17750183ed61SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 17760183ed61SJeremy L Thompson } 17770183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 17780183ed61SJeremy L Thompson } 17790183ed61SJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < i); j++) { 17800183ed61SJeremy L Thompson CeedEvalMode eval_mode_j; 17810183ed61SJeremy L Thompson CeedBasis basis_j; 17820183ed61SJeremy L Thompson 17830183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[j], &eval_mode_j)); 17840183ed61SJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 17850183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[j], &basis_j)); 17860183ed61SJeremy L Thompson if (basis_i == basis_j) { 17870183ed61SJeremy L Thompson output_matrix_reuse[i].index = j; 17880183ed61SJeremy L Thompson output_matrix_reuse[i].is_input = false; 17890183ed61SJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 17900183ed61SJeremy L Thompson } 17910183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 17920183ed61SJeremy L Thompson } 17930183ed61SJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 17940183ed61SJeremy L Thompson } 17950183ed61SJeremy L Thompson 17960183ed61SJeremy L Thompson // Initialize constants, and matrices B and G 17970183ed61SJeremy L Thompson code << "\n" << tab << "// Input field constants and basis data\n"; 17980183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 17990183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_input_fields[i], qf_input_fields[i], input_matrix_reuse[i], 18000183ed61SJeremy L Thompson max_dim, Q, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 18010183ed61SJeremy L Thompson } 18020183ed61SJeremy L Thompson code << "\n" << tab << "// Output field constants and basis data\n"; 18030183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 18040183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], output_matrix_reuse[i], 18050183ed61SJeremy L Thompson max_dim, Q, Q_1d, false, is_all_tensor, is_at_points, use_3d_slices)); 18060183ed61SJeremy L Thompson } 18070183ed61SJeremy L Thompson 18080183ed61SJeremy L Thompson // Loop over all elements 18090183ed61SJeremy L Thompson code << "\n" << tab << "// Element loop\n"; 18100183ed61SJeremy L Thompson code << tab << "__syncthreads();\n"; 18110183ed61SJeremy L Thompson code << tab << "for (CeedInt elem = blockIdx.x*blockDim.z + threadIdx.z; elem < num_elem; elem += gridDim.x*blockDim.z) {\n"; 18120183ed61SJeremy L Thompson tab.push(); 18130183ed61SJeremy L Thompson 18140183ed61SJeremy L Thompson // -- Compute minimum buffer space needed 18150183ed61SJeremy L Thompson CeedInt max_rstr_buffer_size = 1; 18160183ed61SJeremy L Thompson 18170183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18180183ed61SJeremy L Thompson CeedEvalMode eval_mode; 18190183ed61SJeremy L Thompson 18200183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 18210183ed61SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE && eval_mode != CEED_EVAL_WEIGHT) { 18220183ed61SJeremy L Thompson CeedInt num_comp; 18230183ed61SJeremy L Thompson CeedElemRestriction elem_rstr; 18240183ed61SJeremy L Thompson 18250183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 18260183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 18270183ed61SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 18280183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 18290183ed61SJeremy L Thompson } 18300183ed61SJeremy L Thompson } 18310183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 18320183ed61SJeremy L Thompson CeedEvalMode eval_mode; 18330183ed61SJeremy L Thompson 18340183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 18350183ed61SJeremy L Thompson if (eval_mode != CEED_EVAL_NONE) { 18360183ed61SJeremy L Thompson CeedInt num_comp; 18370183ed61SJeremy L Thompson CeedElemRestriction elem_rstr; 18380183ed61SJeremy L Thompson 18390183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 18400183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 18410183ed61SJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 18420183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 18430183ed61SJeremy L Thompson } 18440183ed61SJeremy L Thompson } 18450183ed61SJeremy L Thompson code << tab << "// Scratch restriction buffer space\n"; 18460183ed61SJeremy L Thompson code << tab << "CeedScalar r_e_scratch[" << max_rstr_buffer_size << "];\n"; 18470183ed61SJeremy L Thompson 18480183ed61SJeremy L Thompson // -- Determine best input field processing order 18490183ed61SJeremy L Thompson CeedInt field_rstr_in_buffer[CEED_FIELD_MAX], input_field_order[CEED_FIELD_MAX]; 18500183ed61SJeremy L Thompson 18510183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18520183ed61SJeremy L Thompson field_rstr_in_buffer[i] = -1; 18530183ed61SJeremy L Thompson input_field_order[i] = -1; 18540183ed61SJeremy L Thompson } 18550183ed61SJeremy L Thompson { 18560183ed61SJeremy L Thompson bool is_ordered[CEED_FIELD_MAX]; 18570183ed61SJeremy L Thompson CeedInt curr_index = 0; 18580183ed61SJeremy L Thompson 18590183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) is_ordered[i] = false; 18600183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18610183ed61SJeremy L Thompson CeedVector vec_i; 18620183ed61SJeremy L Thompson CeedElemRestriction rstr_i; 18630183ed61SJeremy L Thompson 18640183ed61SJeremy L Thompson if (is_ordered[i]) continue; 18650183ed61SJeremy L Thompson field_rstr_in_buffer[i] = i; 18660183ed61SJeremy L Thompson is_ordered[i] = true; 18670183ed61SJeremy L Thompson input_field_order[curr_index] = i; 18680183ed61SJeremy L Thompson curr_index++; 18690183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[i], &vec_i)); 18700183ed61SJeremy L Thompson if (vec_i == CEED_VECTOR_NONE) continue; // CEED_EVAL_WEIGHT 18710183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &rstr_i)); 18720183ed61SJeremy L Thompson for (CeedInt j = i + 1; j < num_input_fields; j++) { 18730183ed61SJeremy L Thompson CeedVector vec_j; 18740183ed61SJeremy L Thompson CeedElemRestriction rstr_j; 18750183ed61SJeremy L Thompson 18760183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[j], &vec_j)); 18770183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[j], &rstr_j)); 18780183ed61SJeremy L Thompson if (rstr_i == rstr_j && vec_i == vec_j) { 18790183ed61SJeremy L Thompson field_rstr_in_buffer[j] = i; 18800183ed61SJeremy L Thompson is_ordered[j] = true; 18810183ed61SJeremy L Thompson input_field_order[curr_index] = j; 18820183ed61SJeremy L Thompson curr_index++; 18830183ed61SJeremy L Thompson } 18840183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_j)); 18850183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_j)); 18860183ed61SJeremy L Thompson } 18870183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_i)); 18880183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_i)); 18890183ed61SJeremy L Thompson } 18900183ed61SJeremy L Thompson } 18910183ed61SJeremy L Thompson 18920183ed61SJeremy L Thompson // -- Input restriction and basis 18930183ed61SJeremy L Thompson code << "\n" << tab << "// -- Input field restrictions and basis actions\n"; 18940183ed61SJeremy L Thompson CeedInt active_field_index = -1; 18950183ed61SJeremy L Thompson 18960183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 18970183ed61SJeremy L Thompson bool is_active = false; 18980183ed61SJeremy L Thompson const char *field_name; 18990183ed61SJeremy L Thompson const CeedInt f = input_field_order[i]; 19000183ed61SJeremy L Thompson 19010183ed61SJeremy L Thompson { 19020183ed61SJeremy L Thompson CeedVector vec; 19030183ed61SJeremy L Thompson 19040183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[f], &vec)); 19050183ed61SJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 19060183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 19070183ed61SJeremy L Thompson } 19080183ed61SJeremy L Thompson 19090183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 19100183ed61SJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 19110183ed61SJeremy L Thompson 19120183ed61SJeremy L Thompson if (is_active) { 19130183ed61SJeremy L Thompson std::string var_suffix = "_in_" + std::to_string(f); 19140183ed61SJeremy L Thompson 19150183ed61SJeremy L Thompson code << tab << "// Active field - no restriction or basis action here\n"; 19160183ed61SJeremy L Thompson if (active_field_index == -1) { 19170183ed61SJeremy L Thompson active_field_index = f; 19180183ed61SJeremy L Thompson code << tab << "CeedScalar r_e" << var_suffix << "[num_comp" << var_suffix << "*" << (max_dim >= 3 ? "P_1d" + var_suffix : "1") 19190183ed61SJeremy L Thompson << "] = {0.0};\n"; 19200183ed61SJeremy L Thompson } else { 19210183ed61SJeremy L Thompson code << tab << "CeedScalar *r_e" << var_suffix << " = r_e_in_" << active_field_index << ";\n"; 19220183ed61SJeremy L Thompson } 19230183ed61SJeremy L Thompson } else { 19240183ed61SJeremy L Thompson // ---- Restriction 19250183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, f, field_rstr_in_buffer, op_input_fields[f], qf_input_fields[f], 19260183ed61SJeremy L Thompson max_dim, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 19270183ed61SJeremy L Thompson 19280183ed61SJeremy L Thompson // ---- Basis action 19290183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 19300183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 19310183ed61SJeremy L Thompson } 19320183ed61SJeremy L Thompson } 19330183ed61SJeremy L Thompson 19340183ed61SJeremy L Thompson // -- Loop over active field 19350183ed61SJeremy L Thompson std::string active_var_suffix = "_in_" + std::to_string(active_field_index); 19360183ed61SJeremy L Thompson 19370183ed61SJeremy L Thompson code << "\n" << tab << "// Loop over nodes in active field\n"; 19380183ed61SJeremy L Thompson code << tab << "for (CeedInt n = 0; n < num_comp" << active_var_suffix << "*P_1d" << active_var_suffix 19390183ed61SJeremy L Thompson << (max_dim > 1 ? "*P_1d" + active_var_suffix : "") << (max_dim > 2 ? "*P_1d" + active_var_suffix : "") << "; n++) {\n"; 19400183ed61SJeremy L Thompson tab.push(); 19410183ed61SJeremy L Thompson 19420183ed61SJeremy L Thompson // -- Set current active node and component to 1 19430183ed61SJeremy L Thompson code << tab << "// Set current active node and component to 1.0\n"; 19440183ed61SJeremy 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" 19450183ed61SJeremy L Thompson << active_var_suffix << ");\n\n"; 19460183ed61SJeremy L Thompson 19470183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 19480183ed61SJeremy L Thompson bool is_active = false; 19490183ed61SJeremy L Thompson const char *field_name; 19500183ed61SJeremy L Thompson const CeedInt f = input_field_order[i]; 19510183ed61SJeremy L Thompson 19520183ed61SJeremy L Thompson { 19530183ed61SJeremy L Thompson CeedVector vec; 19540183ed61SJeremy L Thompson 19550183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[f], &vec)); 19560183ed61SJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 19570183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 19580183ed61SJeremy L Thompson } 19590183ed61SJeremy L Thompson if (!is_active) continue; 19600183ed61SJeremy L Thompson 19610183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 19620183ed61SJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 19630183ed61SJeremy L Thompson 19640183ed61SJeremy L Thompson // ---- Basis action 19650183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 19660183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 19670183ed61SJeremy L Thompson } 19680183ed61SJeremy L Thompson 19690183ed61SJeremy L Thompson // -- Q function 19700183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelQFunction_Cuda_gen(code, data, tab, max_dim, max_num_points, num_input_fields, op_input_fields, 19710183ed61SJeremy L Thompson qf_input_fields, num_output_fields, op_output_fields, qf_output_fields, qfunction_name, 19720183ed61SJeremy L Thompson Q_1d, is_all_tensor, is_at_points, use_3d_slices)); 19730183ed61SJeremy L Thompson 19740183ed61SJeremy L Thompson // -- Output basis and restriction 19750183ed61SJeremy L Thompson code << "\n" << tab << "// -- Output field basis action and restrictions\n"; 19760183ed61SJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 19770183ed61SJeremy L Thompson bool is_active = false; 19780183ed61SJeremy L Thompson const char *field_name; 19790183ed61SJeremy L Thompson 19800183ed61SJeremy L Thompson { 19810183ed61SJeremy L Thompson CeedVector vec; 19820183ed61SJeremy L Thompson 19830183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_output_fields[i], &vec)); 19840183ed61SJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 19850183ed61SJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 19860183ed61SJeremy L Thompson } 19870183ed61SJeremy L Thompson if (!is_active) continue; 19880183ed61SJeremy L Thompson 19890183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 19900183ed61SJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 19910183ed61SJeremy L Thompson 19920183ed61SJeremy L Thompson // ---- Basis action 19930183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], max_dim, Q_1d, false, 19940183ed61SJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 19950183ed61SJeremy L Thompson 19960183ed61SJeremy L Thompson // ---- Restriction 19970183ed61SJeremy L Thompson if (is_full) { 1998915834c9SZach Atkins std::string var_suffix = "_out_" + std::to_string(i); 1999915834c9SZach Atkins CeedInt comp_stride; 2000915834c9SZach Atkins CeedSize l_size; 2001915834c9SZach Atkins CeedElemRestriction elem_rstr; 2002915834c9SZach Atkins 2003915834c9SZach Atkins CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 2004915834c9SZach Atkins CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 2005915834c9SZach Atkins code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 2006915834c9SZach Atkins CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 2007915834c9SZach Atkins code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 2008915834c9SZach Atkins code << tab << "WriteLVecStandard" << max_dim << "d_Assembly<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", P_1d" + var_suffix 2009915834c9SZach Atkins << ">(data, l_size" << var_suffix << ", elem, n, r_e" << var_suffix << ", values_array);\n"; 2010915834c9SZach Atkins CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 20110183ed61SJeremy L Thompson } else { 20120183ed61SJeremy L Thompson std::string var_suffix = "_out_" + std::to_string(i); 20130183ed61SJeremy L Thompson CeedInt comp_stride; 20140183ed61SJeremy L Thompson CeedSize l_size; 20150183ed61SJeremy L Thompson CeedElemRestriction elem_rstr; 20160183ed61SJeremy L Thompson 20170183ed61SJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 20180183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetLVectorSize(elem_rstr, &l_size)); 20190183ed61SJeremy L Thompson code << tab << "const CeedInt l_size" << var_suffix << " = " << l_size << ";\n"; 20200183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetCompStride(elem_rstr, &comp_stride)); 20210183ed61SJeremy L Thompson code << tab << "const CeedInt comp_stride" << var_suffix << " = " << comp_stride << ";\n"; 20220183ed61SJeremy L Thompson code << tab << "WriteLVecStandard" << max_dim << "d_Single<num_comp" << var_suffix << ", comp_stride" << var_suffix << ", P_1d" + var_suffix 20230183ed61SJeremy L Thompson << ">(data, l_size" << var_suffix << ", elem, n, indices.outputs[" << i << "], r_e" << var_suffix << ", values_array);\n"; 20240183ed61SJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 20250183ed61SJeremy L Thompson } 20260183ed61SJeremy L Thompson } 20270183ed61SJeremy L Thompson 20280183ed61SJeremy L Thompson // -- Reset current active node and component 20290183ed61SJeremy L Thompson code << "\n" << tab << "// Reset current active node and component to 0.0\n"; 20300183ed61SJeremy 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" 20310183ed61SJeremy L Thompson << active_var_suffix << ");\n"; 20320183ed61SJeremy L Thompson 20330183ed61SJeremy L Thompson // -- End of loop over active field 20340183ed61SJeremy L Thompson tab.pop(); 20350183ed61SJeremy L Thompson code << tab << "}\n"; 20360183ed61SJeremy L Thompson 20370183ed61SJeremy L Thompson // Close loop and function 20380183ed61SJeremy L Thompson tab.pop(); 20390183ed61SJeremy L Thompson code << tab << "}\n"; 20400183ed61SJeremy L Thompson tab.pop(); 20410183ed61SJeremy L Thompson code << tab << "}\n"; 20420183ed61SJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n\n"; 20430183ed61SJeremy L Thompson 20440183ed61SJeremy L Thompson // Compile 20450183ed61SJeremy L Thompson { 20460183ed61SJeremy L Thompson bool is_compile_good = false; 20470183ed61SJeremy L Thompson const CeedInt T_1d = CeedIntMax(is_all_tensor ? Q_1d : Q, data->max_P_1d); 20480183ed61SJeremy L Thompson 20490183ed61SJeremy L Thompson data->thread_1d = T_1d; 20500183ed61SJeremy L Thompson CeedCallBackend(CeedTryCompile_Cuda(ceed, code.str().c_str(), &is_compile_good, 20510183ed61SJeremy L Thompson is_full ? &data->module_assemble_full : &data->module_assemble_diagonal, 1, "OP_T_1D", T_1d)); 20520183ed61SJeremy L Thompson if (is_compile_good) { 20530183ed61SJeremy L Thompson *is_good_build = true; 20540183ed61SJeremy L Thompson CeedCallBackend(CeedGetKernel_Cuda(ceed, is_full ? data->module_assemble_full : data->module_assemble_diagonal, operator_name.c_str(), 20550183ed61SJeremy L Thompson is_full ? &data->assemble_full : &data->assemble_diagonal)); 20560183ed61SJeremy L Thompson } else { 20570183ed61SJeremy L Thompson *is_good_build = false; 20580183ed61SJeremy L Thompson data->use_assembly_fallback = true; 20590183ed61SJeremy L Thompson } 20600183ed61SJeremy L Thompson } 20610183ed61SJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 20620183ed61SJeremy L Thompson CeedCallBackend(CeedQFunctionDestroy(&qf)); 20630183ed61SJeremy L Thompson return CEED_ERROR_SUCCESS; 20640183ed61SJeremy L Thompson } 20650183ed61SJeremy L Thompson 20660183ed61SJeremy L Thompson extern "C" int CeedOperatorBuildKernelDiagonalAssemblyAtPoints_Cuda_gen(CeedOperator op, bool *is_good_build) { 20670183ed61SJeremy L Thompson return CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen(op, false, is_good_build); 20680183ed61SJeremy L Thompson } 20690183ed61SJeremy L Thompson 2070915834c9SZach Atkins extern "C" int CeedOperatorBuildKernelFullAssemblyAtPoints_Cuda_gen(CeedOperator op, bool *is_good_build) { 2071915834c9SZach Atkins return CeedOperatorBuildKernelAssemblyAtPoints_Cuda_gen(op, true, is_good_build); 2072915834c9SZach Atkins } 2073915834c9SZach Atkins 20740183ed61SJeremy L Thompson //------------------------------------------------------------------------------ 2075*0816752eSJeremy L Thompson // Build QFunction assembly operator kernel 2076*0816752eSJeremy L Thompson //------------------------------------------------------------------------------ 2077*0816752eSJeremy L Thompson extern "C" int CeedOperatorBuildKernelLinearAssembleQFunction_Cuda_gen(CeedOperator op, bool *is_good_build) { 2078*0816752eSJeremy L Thompson bool is_all_tensor = true, is_all_nontensor = true, is_at_points = false, use_3d_slices = false; 2079*0816752eSJeremy L Thompson Ceed ceed; 2080*0816752eSJeremy L Thompson CeedInt Q, Q_1d, num_input_fields, num_output_fields, max_dim = 1, max_num_points = 0; 2081*0816752eSJeremy L Thompson CeedQFunctionField *qf_input_fields, *qf_output_fields; 2082*0816752eSJeremy L Thompson CeedQFunction_Cuda_gen *qf_data; 2083*0816752eSJeremy L Thompson CeedQFunction qf; 2084*0816752eSJeremy L Thompson CeedOperatorField *op_input_fields, *op_output_fields; 2085*0816752eSJeremy L Thompson CeedOperator_Cuda_gen *data; 2086*0816752eSJeremy L Thompson std::ostringstream code; 2087*0816752eSJeremy L Thompson Tab tab; 2088*0816752eSJeremy L Thompson 2089*0816752eSJeremy L Thompson // Check compatibility 2090*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetCeed(op, &ceed)); 2091*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorIsAtPoints(op, &is_at_points)); 2092*0816752eSJeremy L Thompson CeedCheck(!is_at_points, ceed, CEED_ERROR_BACKEND, "AtPoints QFunction assembly is not supported"); 2093*0816752eSJeremy L Thompson 2094*0816752eSJeremy L Thompson // Check field compatibility 2095*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetFields(op, &num_input_fields, &op_input_fields, &num_output_fields, &op_output_fields)); 2096*0816752eSJeremy L Thompson { 2097*0816752eSJeremy L Thompson bool has_shared_bases = true; 2098*0816752eSJeremy L Thompson 2099*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2100*0816752eSJeremy L Thompson CeedBasis basis; 2101*0816752eSJeremy L Thompson 2102*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis)); 2103*0816752eSJeremy L Thompson if (basis != CEED_BASIS_NONE) { 2104*0816752eSJeremy L Thompson bool is_tensor = true; 2105*0816752eSJeremy L Thompson const char *resource; 2106*0816752eSJeremy L Thompson char *resource_root; 2107*0816752eSJeremy L Thompson Ceed basis_ceed; 2108*0816752eSJeremy L Thompson 2109*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 2110*0816752eSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 2111*0816752eSJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 2112*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 2113*0816752eSJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 2114*0816752eSJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 2115*0816752eSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 2116*0816752eSJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 2117*0816752eSJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 2118*0816752eSJeremy L Thompson } 2119*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 2120*0816752eSJeremy L Thompson } 2121*0816752eSJeremy L Thompson 2122*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2123*0816752eSJeremy L Thompson CeedBasis basis; 2124*0816752eSJeremy L Thompson 2125*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis)); 2126*0816752eSJeremy L Thompson if (basis != CEED_BASIS_NONE) { 2127*0816752eSJeremy L Thompson bool is_tensor = true; 2128*0816752eSJeremy L Thompson const char *resource; 2129*0816752eSJeremy L Thompson char *resource_root; 2130*0816752eSJeremy L Thompson Ceed basis_ceed; 2131*0816752eSJeremy L Thompson 2132*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis, &is_tensor)); 2133*0816752eSJeremy L Thompson is_all_tensor = is_all_tensor && is_tensor; 2134*0816752eSJeremy L Thompson is_all_nontensor = is_all_nontensor && !is_tensor; 2135*0816752eSJeremy L Thompson 2136*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &basis_ceed)); 2137*0816752eSJeremy L Thompson CeedCallBackend(CeedGetResource(basis_ceed, &resource)); 2138*0816752eSJeremy L Thompson CeedCallBackend(CeedGetResourceRoot(basis_ceed, resource, ":", &resource_root)); 2139*0816752eSJeremy L Thompson has_shared_bases = has_shared_bases && !strcmp(resource_root, "/gpu/cuda/shared"); 2140*0816752eSJeremy L Thompson CeedCallBackend(CeedFree(&resource_root)); 2141*0816752eSJeremy L Thompson CeedCallBackend(CeedDestroy(&basis_ceed)); 2142*0816752eSJeremy L Thompson } 2143*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis)); 2144*0816752eSJeremy L Thompson } 2145*0816752eSJeremy L Thompson } 2146*0816752eSJeremy L Thompson 2147*0816752eSJeremy L Thompson // Retrieve operator data 2148*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetData(op, &data)); 2149*0816752eSJeremy L Thompson Q = data->Q; 2150*0816752eSJeremy L Thompson Q_1d = data->Q_1d; 2151*0816752eSJeremy L Thompson max_dim = data->dim; 2152*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorGetQFunction(op, &qf)); 2153*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionGetData(qf, &qf_data)); 2154*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionGetFields(qf, NULL, &qf_input_fields, NULL, &qf_output_fields)); 2155*0816752eSJeremy L Thompson 2156*0816752eSJeremy L Thompson // Add atomicAdd function for old NVidia architectures 2157*0816752eSJeremy L Thompson { 2158*0816752eSJeremy L Thompson Ceed_Cuda *ceed_data; 2159*0816752eSJeremy L Thompson struct cudaDeviceProp prop; 2160*0816752eSJeremy L Thompson 2161*0816752eSJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_data)); 2162*0816752eSJeremy L Thompson CeedCallBackend(cudaGetDeviceProperties(&prop, ceed_data->device_id)); 2163*0816752eSJeremy L Thompson if ((prop.major < 6) && (CEED_SCALAR_TYPE != CEED_SCALAR_FP32)) { 2164*0816752eSJeremy L Thompson code << tab << "// AtomicAdd fallback source\n"; 2165*0816752eSJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-atomic-add-fallback.h>\n\n"; 2166*0816752eSJeremy L Thompson } 2167*0816752eSJeremy L Thompson } 2168*0816752eSJeremy L Thompson 2169*0816752eSJeremy L Thompson // Load basis source files 2170*0816752eSJeremy L Thompson if (!is_all_nontensor) { 2171*0816752eSJeremy L Thompson code << tab << "// Tensor basis source\n"; 2172*0816752eSJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-templates.h>\n\n"; 2173*0816752eSJeremy L Thompson } 2174*0816752eSJeremy L Thompson if (!is_all_tensor) { 2175*0816752eSJeremy L Thompson code << tab << "// Non-tensor basis source\n"; 2176*0816752eSJeremy L Thompson code << tab << "#include <ceed/jit-source/cuda/cuda-shared-basis-nontensor-templates.h>\n\n"; 2177*0816752eSJeremy L Thompson } 2178*0816752eSJeremy L Thompson if (!is_all_tensor && !is_all_nontensor) { 2179*0816752eSJeremy L Thompson code << "// Tensor basis source\n"; 2180*0816752eSJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-shared-basis-tensor-flattened-templates.h>\n\n"; 2181*0816752eSJeremy L Thompson } 2182*0816752eSJeremy L Thompson code << "// CodeGen operator source\n"; 2183*0816752eSJeremy L Thompson code << "#include <ceed/jit-source/cuda/cuda-gen-templates.h>\n\n"; 2184*0816752eSJeremy L Thompson 2185*0816752eSJeremy L Thompson // Get QFunction name 2186*0816752eSJeremy L Thompson std::string qfunction_name(qf_data->qfunction_name); 2187*0816752eSJeremy L Thompson std::string operator_name; 2188*0816752eSJeremy L Thompson 2189*0816752eSJeremy L Thompson operator_name = "CeedKernelCudaGenQFunctionAssembly_" + qfunction_name; 2190*0816752eSJeremy L Thompson 2191*0816752eSJeremy L Thompson // Define CEED_Q_VLA 2192*0816752eSJeremy L Thompson code << "\n" << tab << "#undef CEED_Q_VLA\n"; 2193*0816752eSJeremy L Thompson if (max_dim != 3 || is_at_points || use_3d_slices || !is_all_tensor) { 2194*0816752eSJeremy L Thompson code << tab << "#define CEED_Q_VLA 1\n\n"; 2195*0816752eSJeremy L Thompson } else { 2196*0816752eSJeremy L Thompson code << tab << "#define CEED_Q_VLA " << Q_1d << "\n\n"; 2197*0816752eSJeremy L Thompson } 2198*0816752eSJeremy L Thompson 2199*0816752eSJeremy L Thompson // Add user QFunction source 2200*0816752eSJeremy L Thompson { 2201*0816752eSJeremy L Thompson const char *source_path; 2202*0816752eSJeremy L Thompson 2203*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionGetSourcePath(qf, &source_path)); 2204*0816752eSJeremy L Thompson CeedCheck(source_path, ceed, CEED_ERROR_UNSUPPORTED, "/gpu/cuda/gen backend requires QFunction source code file"); 2205*0816752eSJeremy L Thompson 2206*0816752eSJeremy L Thompson code << tab << "// User QFunction source\n"; 2207*0816752eSJeremy L Thompson code << tab << "#include \"" << source_path << "\"\n\n"; 2208*0816752eSJeremy L Thompson } 2209*0816752eSJeremy L Thompson 2210*0816752eSJeremy L Thompson // Setup 2211*0816752eSJeremy L Thompson code << "\n" << tab << "// -----------------------------------------------------------------------------\n"; 2212*0816752eSJeremy L Thompson code << tab << "// Operator Assembly Kernel\n"; 2213*0816752eSJeremy L Thompson code << tab << "// \n"; 2214*0816752eSJeremy L Thompson code << tab << "// d_[in,out]_i: CeedVector device array\n"; 2215*0816752eSJeremy L Thompson code << tab << "// r_[in,out]_e_i: Element vector register\n"; 2216*0816752eSJeremy L Thompson code << tab << "// r_[in,out]_q_i: Quadrature space vector register\n"; 2217*0816752eSJeremy L Thompson code << tab << "// r_[in,out]_c_i: AtPoints Chebyshev coefficients register\n"; 2218*0816752eSJeremy L Thompson code << tab << "// r_[in,out]_s_i: Quadrature space slice vector register\n"; 2219*0816752eSJeremy L Thompson code << tab << "// \n"; 2220*0816752eSJeremy L Thompson code << tab << "// s_B_[in,out]_i: Interpolation matrix, shared memory\n"; 2221*0816752eSJeremy L Thompson code << tab << "// s_G_[in,out]_i: Gradient matrix, shared memory\n"; 2222*0816752eSJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n"; 2223*0816752eSJeremy L Thompson code << tab << "extern \"C\" __global__ void " << operator_name 2224*0816752eSJeremy L Thompson << "(CeedInt num_elem, void* ctx, FieldsInt_Cuda indices, Fields_Cuda fields, Fields_Cuda B, Fields_Cuda G, CeedScalar *W, Points_Cuda " 2225*0816752eSJeremy L Thompson "points, CeedScalar *__restrict__ values_array) {\n"; 2226*0816752eSJeremy L Thompson tab.push(); 2227*0816752eSJeremy L Thompson 2228*0816752eSJeremy L Thompson // Scratch buffers 2229*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2230*0816752eSJeremy L Thompson CeedEvalMode eval_mode; 2231*0816752eSJeremy L Thompson 2232*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 2233*0816752eSJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) { // Skip CEED_EVAL_WEIGHT 2234*0816752eSJeremy L Thompson code << tab << "const CeedScalar *__restrict__ d_in_" << i << " = fields.inputs[" << i << "];\n"; 2235*0816752eSJeremy L Thompson } 2236*0816752eSJeremy L Thompson } 2237*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2238*0816752eSJeremy L Thompson code << tab << "CeedScalar *__restrict__ d_out_" << i << " = fields.outputs[" << i << "];\n"; 2239*0816752eSJeremy L Thompson } 2240*0816752eSJeremy L Thompson 2241*0816752eSJeremy L Thompson code << tab << "const CeedInt max_dim = " << max_dim << ";\n"; 2242*0816752eSJeremy L Thompson if (!is_all_tensor) { 2243*0816752eSJeremy L Thompson code << tab << "const CeedInt Q = " << Q << ";\n"; 2244*0816752eSJeremy L Thompson } 2245*0816752eSJeremy L Thompson if (!is_all_nontensor) { 2246*0816752eSJeremy L Thompson code << tab << "const CeedInt Q_1d = " << Q_1d << ";\n"; 2247*0816752eSJeremy L Thompson } 2248*0816752eSJeremy L Thompson 2249*0816752eSJeremy L Thompson // Shared data 2250*0816752eSJeremy L Thompson code << tab << "extern __shared__ CeedScalar slice[];\n"; 2251*0816752eSJeremy L Thompson code << tab << "SharedData_Cuda data;\n"; 2252*0816752eSJeremy L Thompson code << tab << "data.t_id_x = threadIdx.x;\n"; 2253*0816752eSJeremy L Thompson code << tab << "data.t_id_y = threadIdx.y;\n"; 2254*0816752eSJeremy L Thompson code << tab << "data.t_id_z = threadIdx.z;\n"; 2255*0816752eSJeremy L Thompson code << tab << "data.t_id = threadIdx.x + threadIdx.y*blockDim.x + threadIdx.z*blockDim.y*blockDim.x;\n"; 2256*0816752eSJeremy L Thompson code << tab << "data.slice = slice + data.t_id_z*OP_T_1D" << ((!is_all_tensor || max_dim == 1) ? "" : "*OP_T_1D") << ";\n"; 2257*0816752eSJeremy L Thompson 2258*0816752eSJeremy L Thompson // -- Determine input mat reuse 2259*0816752eSJeremy L Thompson FieldReuse_Cuda input_matrix_reuse[CEED_FIELD_MAX]; 2260*0816752eSJeremy L Thompson 2261*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2262*0816752eSJeremy L Thompson input_matrix_reuse[i].index = -1; 2263*0816752eSJeremy L Thompson } 2264*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2265*0816752eSJeremy L Thompson bool is_tensor = true; 2266*0816752eSJeremy L Thompson CeedEvalMode eval_mode_i; 2267*0816752eSJeremy L Thompson CeedBasis basis_i; 2268*0816752eSJeremy L Thompson 2269*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode_i)); 2270*0816752eSJeremy L Thompson if (eval_mode_i == CEED_EVAL_WEIGHT) continue; 2271*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[i], &basis_i)); 2272*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 2273*0816752eSJeremy L Thompson for (CeedInt j = 0; (input_matrix_reuse[i].index == -1) && (j < i); j++) { 2274*0816752eSJeremy L Thompson CeedEvalMode eval_mode_j; 2275*0816752eSJeremy L Thompson CeedBasis basis_j; 2276*0816752eSJeremy L Thompson 2277*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 2278*0816752eSJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 2279*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 2280*0816752eSJeremy L Thompson if (basis_i == basis_j) { 2281*0816752eSJeremy L Thompson if (is_tensor) { 2282*0816752eSJeremy L Thompson input_matrix_reuse[i].index = j; 2283*0816752eSJeremy L Thompson input_matrix_reuse[i].is_input = true; 2284*0816752eSJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 2285*0816752eSJeremy L Thompson } else { 2286*0816752eSJeremy L Thompson // For non-tensor can only re-use with the same eval mode 2287*0816752eSJeremy L Thompson if (eval_mode_i == eval_mode_j) { 2288*0816752eSJeremy L Thompson input_matrix_reuse[i].index = j; 2289*0816752eSJeremy L Thompson input_matrix_reuse[i].is_input = true; 2290*0816752eSJeremy L Thompson input_matrix_reuse[i].eval_mode = eval_mode_j; 2291*0816752eSJeremy L Thompson } 2292*0816752eSJeremy L Thompson } 2293*0816752eSJeremy L Thompson } 2294*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 2295*0816752eSJeremy L Thompson } 2296*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 2297*0816752eSJeremy L Thompson } 2298*0816752eSJeremy L Thompson 2299*0816752eSJeremy L Thompson // -- Determine output mat reuse 2300*0816752eSJeremy L Thompson FieldReuse_Cuda output_matrix_reuse[CEED_FIELD_MAX]; 2301*0816752eSJeremy L Thompson 2302*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2303*0816752eSJeremy L Thompson output_matrix_reuse[i].index = -1; 2304*0816752eSJeremy L Thompson } 2305*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2306*0816752eSJeremy L Thompson bool is_tensor = true; 2307*0816752eSJeremy L Thompson CeedEvalMode eval_mode_i; 2308*0816752eSJeremy L Thompson CeedBasis basis_i; 2309*0816752eSJeremy L Thompson 2310*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode_i)); 2311*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[i], &basis_i)); 2312*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisIsTensor(basis_i, &is_tensor)); 2313*0816752eSJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < num_input_fields); j++) { 2314*0816752eSJeremy L Thompson CeedEvalMode eval_mode_j; 2315*0816752eSJeremy L Thompson CeedBasis basis_j; 2316*0816752eSJeremy L Thompson 2317*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[j], &eval_mode_j)); 2318*0816752eSJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 2319*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_input_fields[j], &basis_j)); 2320*0816752eSJeremy L Thompson if (basis_i == basis_j) { 2321*0816752eSJeremy L Thompson if (is_tensor) { 2322*0816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 2323*0816752eSJeremy L Thompson output_matrix_reuse[i].is_input = true; 2324*0816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 2325*0816752eSJeremy L Thompson } else { 2326*0816752eSJeremy L Thompson // For non-tensor can only re-use with the same eval mode 2327*0816752eSJeremy L Thompson if (eval_mode_i == eval_mode_j) { 2328*0816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 2329*0816752eSJeremy L Thompson output_matrix_reuse[i].is_input = true; 2330*0816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 2331*0816752eSJeremy L Thompson } 2332*0816752eSJeremy L Thompson } 2333*0816752eSJeremy L Thompson } 2334*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 2335*0816752eSJeremy L Thompson } 2336*0816752eSJeremy L Thompson for (CeedInt j = 0; (output_matrix_reuse[i].index == -1) && (j < i); j++) { 2337*0816752eSJeremy L Thompson CeedEvalMode eval_mode_j; 2338*0816752eSJeremy L Thompson CeedBasis basis_j; 2339*0816752eSJeremy L Thompson 2340*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[j], &eval_mode_j)); 2341*0816752eSJeremy L Thompson if (eval_mode_j == CEED_EVAL_WEIGHT) continue; 2342*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetBasis(op_output_fields[j], &basis_j)); 2343*0816752eSJeremy L Thompson if (basis_i == basis_j) { 2344*0816752eSJeremy L Thompson if (is_tensor) { 2345*0816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 2346*0816752eSJeremy L Thompson output_matrix_reuse[i].is_input = false; 2347*0816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 2348*0816752eSJeremy L Thompson } else { 2349*0816752eSJeremy L Thompson // For non-tensor can only re-use with the same eval mode 2350*0816752eSJeremy L Thompson if (eval_mode_i == eval_mode_j) { 2351*0816752eSJeremy L Thompson output_matrix_reuse[i].index = j; 2352*0816752eSJeremy L Thompson output_matrix_reuse[i].is_input = false; 2353*0816752eSJeremy L Thompson output_matrix_reuse[i].eval_mode = eval_mode_j; 2354*0816752eSJeremy L Thompson } 2355*0816752eSJeremy L Thompson } 2356*0816752eSJeremy L Thompson } 2357*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_j)); 2358*0816752eSJeremy L Thompson } 2359*0816752eSJeremy L Thompson CeedCallBackend(CeedBasisDestroy(&basis_i)); 2360*0816752eSJeremy L Thompson } 2361*0816752eSJeremy L Thompson 2362*0816752eSJeremy L Thompson // Initialize constants, and matrices B and G 2363*0816752eSJeremy L Thompson code << "\n" << tab << "// Input field constants and basis data\n"; 2364*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2365*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_input_fields[i], qf_input_fields[i], input_matrix_reuse[i], 2366*0816752eSJeremy L Thompson max_dim, Q, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 2367*0816752eSJeremy L Thompson } 2368*0816752eSJeremy L Thompson code << "\n" << tab << "// Output field constants and basis data\n"; 2369*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2370*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelFieldData_Cuda_gen(code, data, tab, i, op_output_fields[i], qf_output_fields[i], output_matrix_reuse[i], 2371*0816752eSJeremy L Thompson max_dim, Q, Q_1d, false, is_all_tensor, is_at_points, use_3d_slices)); 2372*0816752eSJeremy L Thompson } 2373*0816752eSJeremy L Thompson 2374*0816752eSJeremy L Thompson // Loop over all elements 2375*0816752eSJeremy L Thompson code << "\n" << tab << "// Element loop\n"; 2376*0816752eSJeremy L Thompson code << tab << "__syncthreads();\n"; 2377*0816752eSJeremy L Thompson code << tab << "for (CeedInt elem = blockIdx.x*blockDim.z + threadIdx.z; elem < num_elem; elem += gridDim.x*blockDim.z) {\n"; 2378*0816752eSJeremy L Thompson tab.push(); 2379*0816752eSJeremy L Thompson 2380*0816752eSJeremy L Thompson // -- Compute minimum buffer space needed 2381*0816752eSJeremy L Thompson CeedInt max_rstr_buffer_size = 1; 2382*0816752eSJeremy L Thompson 2383*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2384*0816752eSJeremy L Thompson CeedEvalMode eval_mode; 2385*0816752eSJeremy L Thompson 2386*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[i], &eval_mode)); 2387*0816752eSJeremy L Thompson if (eval_mode != CEED_EVAL_NONE && eval_mode != CEED_EVAL_WEIGHT) { 2388*0816752eSJeremy L Thompson CeedInt num_comp; 2389*0816752eSJeremy L Thompson CeedElemRestriction elem_rstr; 2390*0816752eSJeremy L Thompson 2391*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &elem_rstr)); 2392*0816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 2393*0816752eSJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 2394*0816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 2395*0816752eSJeremy L Thompson } 2396*0816752eSJeremy L Thompson } 2397*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2398*0816752eSJeremy L Thompson CeedEvalMode eval_mode; 2399*0816752eSJeremy L Thompson 2400*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_output_fields[i], &eval_mode)); 2401*0816752eSJeremy L Thompson if (eval_mode != CEED_EVAL_NONE) { 2402*0816752eSJeremy L Thompson CeedInt num_comp; 2403*0816752eSJeremy L Thompson CeedElemRestriction elem_rstr; 2404*0816752eSJeremy L Thompson 2405*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_output_fields[i], &elem_rstr)); 2406*0816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionGetNumComponents(elem_rstr, &num_comp)); 2407*0816752eSJeremy L Thompson max_rstr_buffer_size = CeedIntMax(max_rstr_buffer_size, num_comp * (is_all_tensor && (max_dim >= 3) ? Q_1d : 1)); 2408*0816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&elem_rstr)); 2409*0816752eSJeremy L Thompson } 2410*0816752eSJeremy L Thompson } 2411*0816752eSJeremy L Thompson code << tab << "// Scratch restriction buffer space\n"; 2412*0816752eSJeremy L Thompson code << tab << "CeedScalar r_e_scratch[" << max_rstr_buffer_size << "];\n"; 2413*0816752eSJeremy L Thompson 2414*0816752eSJeremy L Thompson // -- Determine best input field processing order 2415*0816752eSJeremy L Thompson CeedInt field_rstr_in_buffer[CEED_FIELD_MAX], input_field_order[CEED_FIELD_MAX]; 2416*0816752eSJeremy L Thompson 2417*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2418*0816752eSJeremy L Thompson field_rstr_in_buffer[i] = -1; 2419*0816752eSJeremy L Thompson input_field_order[i] = -1; 2420*0816752eSJeremy L Thompson } 2421*0816752eSJeremy L Thompson { 2422*0816752eSJeremy L Thompson bool is_ordered[CEED_FIELD_MAX]; 2423*0816752eSJeremy L Thompson CeedInt curr_index = 0; 2424*0816752eSJeremy L Thompson 2425*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) is_ordered[i] = false; 2426*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2427*0816752eSJeremy L Thompson CeedVector vec_i; 2428*0816752eSJeremy L Thompson CeedElemRestriction rstr_i; 2429*0816752eSJeremy L Thompson 2430*0816752eSJeremy L Thompson if (is_ordered[i]) continue; 2431*0816752eSJeremy L Thompson field_rstr_in_buffer[i] = i; 2432*0816752eSJeremy L Thompson is_ordered[i] = true; 2433*0816752eSJeremy L Thompson input_field_order[curr_index] = i; 2434*0816752eSJeremy L Thompson curr_index++; 2435*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[i], &vec_i)); 2436*0816752eSJeremy L Thompson if (vec_i == CEED_VECTOR_NONE) continue; // CEED_EVAL_WEIGHT 2437*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[i], &rstr_i)); 2438*0816752eSJeremy L Thompson for (CeedInt j = i + 1; j < num_input_fields; j++) { 2439*0816752eSJeremy L Thompson CeedVector vec_j; 2440*0816752eSJeremy L Thompson CeedElemRestriction rstr_j; 2441*0816752eSJeremy L Thompson 2442*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[j], &vec_j)); 2443*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetElemRestriction(op_input_fields[j], &rstr_j)); 2444*0816752eSJeremy L Thompson if (rstr_i == rstr_j && vec_i == vec_j) { 2445*0816752eSJeremy L Thompson field_rstr_in_buffer[j] = i; 2446*0816752eSJeremy L Thompson is_ordered[j] = true; 2447*0816752eSJeremy L Thompson input_field_order[curr_index] = j; 2448*0816752eSJeremy L Thompson curr_index++; 2449*0816752eSJeremy L Thompson } 2450*0816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_j)); 2451*0816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_j)); 2452*0816752eSJeremy L Thompson } 2453*0816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec_i)); 2454*0816752eSJeremy L Thompson CeedCallBackend(CeedElemRestrictionDestroy(&rstr_i)); 2455*0816752eSJeremy L Thompson } 2456*0816752eSJeremy L Thompson } 2457*0816752eSJeremy L Thompson 2458*0816752eSJeremy L Thompson // -- Input restriction and basis 2459*0816752eSJeremy L Thompson code << "\n" << tab << "// -- Input field restrictions and basis actions\n"; 2460*0816752eSJeremy L Thompson CeedInt num_active_in = 0, num_active_out = 0, qf_assembly_size_out = 0; 2461*0816752eSJeremy L Thompson CeedInt active_fields_in[CEED_FIELD_MAX], active_fields_out[CEED_FIELD_MAX]; 2462*0816752eSJeremy L Thompson 2463*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_input_fields; i++) { 2464*0816752eSJeremy L Thompson bool is_active = false; 2465*0816752eSJeremy L Thompson const char *field_name; 2466*0816752eSJeremy L Thompson const CeedInt f = input_field_order[i]; 2467*0816752eSJeremy L Thompson 2468*0816752eSJeremy L Thompson { 2469*0816752eSJeremy L Thompson CeedVector vec; 2470*0816752eSJeremy L Thompson 2471*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_input_fields[f], &vec)); 2472*0816752eSJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 2473*0816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 2474*0816752eSJeremy L Thompson } 2475*0816752eSJeremy L Thompson 2476*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_input_fields[f], &field_name)); 2477*0816752eSJeremy L Thompson code << tab << "// ---- Input field " << f << ": " << field_name << "\n"; 2478*0816752eSJeremy L Thompson 2479*0816752eSJeremy L Thompson if (is_active) { 2480*0816752eSJeremy L Thompson CeedEvalMode eval_mode; 2481*0816752eSJeremy L Thompson CeedInt field_size; 2482*0816752eSJeremy L Thompson 2483*0816752eSJeremy L Thompson active_fields_in[num_active_in] = f; 2484*0816752eSJeremy L Thompson num_active_in++; 2485*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetSize(qf_input_fields[f], &field_size)); 2486*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetEvalMode(qf_input_fields[f], &eval_mode)); 2487*0816752eSJeremy L Thompson if (eval_mode == CEED_EVAL_GRAD) { 2488*0816752eSJeremy L Thompson code << tab << "CeedScalar r_q_in_" << f << "[num_comp_in_" << f << "*" << "dim_in_" << f << "*" 2489*0816752eSJeremy L Thompson << (is_all_tensor && (max_dim >= 3) ? "Q_1d" : "1") << "] = {0.};\n"; 2490*0816752eSJeremy L Thompson } else { 2491*0816752eSJeremy L Thompson code << tab << "CeedScalar r_q_in_" << f << "[num_comp_in_" << f << "*" << (is_all_tensor && (max_dim >= 3) ? "Q_1d" : "1") << "] = {0.};\n"; 2492*0816752eSJeremy L Thompson } 2493*0816752eSJeremy L Thompson code << tab << "const CeedInt field_size_in_" << f << " = " << field_size << ";\n"; 2494*0816752eSJeremy L Thompson } else { 2495*0816752eSJeremy L Thompson // ---- Restriction 2496*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelRestriction_Cuda_gen(code, data, tab, f, field_rstr_in_buffer, op_input_fields[f], qf_input_fields[f], 2497*0816752eSJeremy L Thompson max_dim, Q_1d, true, is_all_tensor, is_at_points, use_3d_slices)); 2498*0816752eSJeremy L Thompson 2499*0816752eSJeremy L Thompson // ---- Basis action 2500*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelBasis_Cuda_gen(code, data, tab, f, op_input_fields[f], qf_input_fields[f], max_dim, Q_1d, true, 2501*0816752eSJeremy L Thompson is_all_tensor, is_at_points, use_3d_slices)); 2502*0816752eSJeremy L Thompson } 2503*0816752eSJeremy L Thompson } 2504*0816752eSJeremy L Thompson code << tab << "const CeedInt field_sizes_in[" << num_active_in << "] = {"; 2505*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_active_in; i++) { 2506*0816752eSJeremy L Thompson code << "field_size_in_" << active_fields_in[i] << (i < num_active_in - 1 ? ", " : ""); 2507*0816752eSJeremy L Thompson } 2508*0816752eSJeremy L Thompson code << "};\n"; 2509*0816752eSJeremy L Thompson code << tab << "CeedScalar * r_q_in[" << num_active_in << "] = {"; 2510*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_active_in; i++) { 2511*0816752eSJeremy L Thompson code << "r_q_in_" << active_fields_in[i] << (i < num_active_in - 1 ? ", " : ""); 2512*0816752eSJeremy L Thompson } 2513*0816752eSJeremy L Thompson code << "};\n"; 2514*0816752eSJeremy L Thompson 2515*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2516*0816752eSJeremy L Thompson bool is_active = false; 2517*0816752eSJeremy L Thompson 2518*0816752eSJeremy L Thompson { 2519*0816752eSJeremy L Thompson CeedVector vec; 2520*0816752eSJeremy L Thompson 2521*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_output_fields[i], &vec)); 2522*0816752eSJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 2523*0816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 2524*0816752eSJeremy L Thompson } 2525*0816752eSJeremy L Thompson if (is_active) { 2526*0816752eSJeremy L Thompson const char *field_name; 2527*0816752eSJeremy L Thompson CeedInt field_size; 2528*0816752eSJeremy L Thompson 2529*0816752eSJeremy L Thompson active_fields_out[num_active_out] = i; 2530*0816752eSJeremy L Thompson num_active_out++; 2531*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetSize(qf_output_fields[i], &field_size)); 2532*0816752eSJeremy L Thompson qf_assembly_size_out += field_size; 2533*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 2534*0816752eSJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 2535*0816752eSJeremy L Thompson code << tab << "const CeedInt field_size_out_" << i << " = " << field_size << ";\n"; 2536*0816752eSJeremy L Thompson } 2537*0816752eSJeremy L Thompson } 2538*0816752eSJeremy L Thompson code << tab << "const CeedInt field_sizes_out[" << num_active_out << "] = {"; 2539*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_active_out; i++) { 2540*0816752eSJeremy L Thompson code << "field_size_out_" << active_fields_out[i] << (i < num_active_out - 1 ? ", " : ""); 2541*0816752eSJeremy L Thompson } 2542*0816752eSJeremy L Thompson code << "};\n"; 2543*0816752eSJeremy L Thompson code << tab << "const CeedInt total_size_out = " << qf_assembly_size_out << ";\n"; 2544*0816752eSJeremy L Thompson 2545*0816752eSJeremy L Thompson // -- Loop over active field 2546*0816752eSJeremy L Thompson code << "\n" << tab << "CeedInt input_offset = 0;\n"; 2547*0816752eSJeremy L Thompson code << tab << "// Loop over active QFunction input fields\n"; 2548*0816752eSJeremy L Thompson code << tab << "const CeedInt num_active_in = " << num_active_in << ";\n"; 2549*0816752eSJeremy L Thompson code << tab << "for (CeedInt a = 0; a < num_active_in; a++) {\n"; 2550*0816752eSJeremy L Thompson tab.push(); 2551*0816752eSJeremy L Thompson 2552*0816752eSJeremy L Thompson // -- Loop over size of active field 2553*0816752eSJeremy L Thompson code << "\n" << tab << "// Loop over current active input field size\n"; 2554*0816752eSJeremy L Thompson code << tab << "const CeedInt field_size_in = field_sizes_in[a];\n"; 2555*0816752eSJeremy L Thompson code << tab << "for (CeedInt s = 0; s < field_size_in; s++) {\n"; 2556*0816752eSJeremy L Thompson tab.push(); 2557*0816752eSJeremy L Thompson 2558*0816752eSJeremy L Thompson // -- Set current active point and component to 1 2559*0816752eSJeremy L Thompson code << tab << "// Set current active point and component to 1.0\n"; 2560*0816752eSJeremy L Thompson if (is_all_tensor && (max_dim >= 3)) { 2561*0816752eSJeremy L Thompson code << tab << "for (CeedInt i = 0; i < Q_1d; i++) r_q_in[a][i + s * Q_1d] = 1.0;\n"; 2562*0816752eSJeremy L Thompson } else { 2563*0816752eSJeremy L Thompson code << tab << "r_q_in[a][s] = 1.0;\n"; 2564*0816752eSJeremy L Thompson } 2565*0816752eSJeremy L Thompson 2566*0816752eSJeremy L Thompson // -- Q function 2567*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorBuildKernelQFunction_Cuda_gen(code, data, tab, max_dim, max_num_points, num_input_fields, op_input_fields, 2568*0816752eSJeremy L Thompson qf_input_fields, num_output_fields, op_output_fields, qf_output_fields, qfunction_name, 2569*0816752eSJeremy L Thompson Q_1d, is_all_tensor, is_at_points, use_3d_slices)); 2570*0816752eSJeremy L Thompson 2571*0816752eSJeremy L Thompson // -- Output basis and restriction 2572*0816752eSJeremy L Thompson code << "\n" << tab << "// -- Output field basis action and restrictions\n"; 2573*0816752eSJeremy L Thompson CeedScalar offset = 0; 2574*0816752eSJeremy L Thompson 2575*0816752eSJeremy L Thompson for (CeedInt i = 0; i < num_output_fields; i++) { 2576*0816752eSJeremy L Thompson bool is_active = false; 2577*0816752eSJeremy L Thompson const char *field_name; 2578*0816752eSJeremy L Thompson 2579*0816752eSJeremy L Thompson { 2580*0816752eSJeremy L Thompson CeedVector vec; 2581*0816752eSJeremy L Thompson 2582*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetVector(op_output_fields[i], &vec)); 2583*0816752eSJeremy L Thompson is_active = vec == CEED_VECTOR_ACTIVE; 2584*0816752eSJeremy L Thompson CeedCallBackend(CeedVectorDestroy(&vec)); 2585*0816752eSJeremy L Thompson } 2586*0816752eSJeremy L Thompson if (!is_active) continue; 2587*0816752eSJeremy L Thompson 2588*0816752eSJeremy L Thompson CeedCallBackend(CeedOperatorFieldGetName(op_output_fields[i], &field_name)); 2589*0816752eSJeremy L Thompson code << tab << "// ---- Output field " << i << ": " << field_name << "\n"; 2590*0816752eSJeremy L Thompson 2591*0816752eSJeremy L Thompson // ---- Restriction 2592*0816752eSJeremy L Thompson CeedInt field_size; 2593*0816752eSJeremy L Thompson 2594*0816752eSJeremy L Thompson code << tab << "WriteLVecStandard" << (is_all_tensor ? max_dim : 1) << "d_QFAssembly<total_size_out, field_size_out_" << i << ", " 2595*0816752eSJeremy L Thompson << (is_all_tensor ? "Q_1d" : "Q") << ">(data, num_elem, elem, input_offset + s, " << offset << ", r_q_out_" << i << ", values_array);\n"; 2596*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionFieldGetSize(qf_output_fields[i], &field_size)); 2597*0816752eSJeremy L Thompson offset += field_size; 2598*0816752eSJeremy L Thompson } 2599*0816752eSJeremy L Thompson 2600*0816752eSJeremy L Thompson // -- Reset current active node and component 2601*0816752eSJeremy L Thompson code << "\n" << tab << "// Reset current active node and component to 0.0\n"; 2602*0816752eSJeremy L Thompson if (is_all_tensor && (max_dim >= 3)) { 2603*0816752eSJeremy L Thompson code << tab << "for (CeedInt i = 0; i < Q_1d; i++) r_q_in[a][i + s * Q_1d] = 0.0;\n"; 2604*0816752eSJeremy L Thompson } else { 2605*0816752eSJeremy L Thompson code << tab << "r_q_in[a][s] = 0.0;\n"; 2606*0816752eSJeremy L Thompson } 2607*0816752eSJeremy L Thompson 2608*0816752eSJeremy L Thompson // -- End of loop over size of active field 2609*0816752eSJeremy L Thompson tab.pop(); 2610*0816752eSJeremy L Thompson code << tab << "}\n"; 2611*0816752eSJeremy L Thompson code << tab << "input_offset += field_size_in;\n"; 2612*0816752eSJeremy L Thompson 2613*0816752eSJeremy L Thompson // -- End of loop over active field 2614*0816752eSJeremy L Thompson tab.pop(); 2615*0816752eSJeremy L Thompson code << tab << "}\n"; 2616*0816752eSJeremy L Thompson 2617*0816752eSJeremy L Thompson // Close loop and function 2618*0816752eSJeremy L Thompson tab.pop(); 2619*0816752eSJeremy L Thompson code << tab << "}\n"; 2620*0816752eSJeremy L Thompson tab.pop(); 2621*0816752eSJeremy L Thompson code << tab << "}\n"; 2622*0816752eSJeremy L Thompson code << tab << "// -----------------------------------------------------------------------------\n\n"; 2623*0816752eSJeremy L Thompson 2624*0816752eSJeremy L Thompson // Compile 2625*0816752eSJeremy L Thompson { 2626*0816752eSJeremy L Thompson bool is_compile_good = false; 2627*0816752eSJeremy L Thompson const CeedInt T_1d = CeedIntMax(is_all_tensor ? Q_1d : Q, data->max_P_1d); 2628*0816752eSJeremy L Thompson 2629*0816752eSJeremy L Thompson data->thread_1d = T_1d; 2630*0816752eSJeremy L Thompson CeedCallBackend(CeedTryCompile_Cuda(ceed, code.str().c_str(), &is_compile_good, &data->module_assemble_qfunction, 1, "OP_T_1D", T_1d)); 2631*0816752eSJeremy L Thompson if (is_compile_good) { 2632*0816752eSJeremy L Thompson *is_good_build = true; 2633*0816752eSJeremy L Thompson CeedCallBackend(CeedGetKernel_Cuda(ceed, data->module_assemble_qfunction, operator_name.c_str(), &data->assemble_qfunction)); 2634*0816752eSJeremy L Thompson } else { 2635*0816752eSJeremy L Thompson *is_good_build = false; 2636*0816752eSJeremy L Thompson data->use_assembly_fallback = true; 2637*0816752eSJeremy L Thompson } 2638*0816752eSJeremy L Thompson } 2639*0816752eSJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 2640*0816752eSJeremy L Thompson CeedCallBackend(CeedQFunctionDestroy(&qf)); 2641*0816752eSJeremy L Thompson return CEED_ERROR_SUCCESS; 2642*0816752eSJeremy L Thompson } 2643*0816752eSJeremy L Thompson 2644*0816752eSJeremy L Thompson //------------------------------------------------------------------------------ 2645