15aed82e4SJeremy L Thompson // Copyright (c) 2017-2024, 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. 37d8d0e25Snbeams // 43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause 57d8d0e25Snbeams // 63d8e8822SJeremy L Thompson // This file is part of CEED: http://github.com/ceed 77d8d0e25Snbeams 849aac155SJeremy L Thompson #include <ceed.h> 9ec3da8bcSJed Brown #include <ceed/backend.h> 10437930d1SJeremy L Thompson #include <ceed/jit-tools.h> 1149aac155SJeremy L Thompson #include <stdbool.h> 123d576824SJeremy L Thompson #include <stddef.h> 13111870feSJeremy L Thompson #include <string.h> 14c85e8640SSebastian Grimberg #include <hip/hip_runtime.h> 152b730f8bSJeremy L Thompson 167fcac036SJeremy L Thompson #include "../hip/ceed-hip-common.h" 177d8d0e25Snbeams #include "../hip/ceed-hip-compile.h" 182b730f8bSJeremy L Thompson #include "ceed-hip-shared.h" 197d8d0e25Snbeams 207d8d0e25Snbeams //------------------------------------------------------------------------------ 219e31c45bSnbeams // Compute a block size based on required minimum threads 229e31c45bSnbeams //------------------------------------------------------------------------------ 239e31c45bSnbeams static CeedInt ComputeBlockSizeFromRequirement(const CeedInt required) { 249e31c45bSnbeams CeedInt maxSize = 1024; // Max total threads per block 259e31c45bSnbeams CeedInt currentSize = 64; // Start with one group 269e31c45bSnbeams 279e31c45bSnbeams while (currentSize < maxSize) { 282b730f8bSJeremy L Thompson if (currentSize > required) break; 292b730f8bSJeremy L Thompson else currentSize = currentSize * 2; 309e31c45bSnbeams } 319e31c45bSnbeams return currentSize; 329e31c45bSnbeams } 339e31c45bSnbeams 349e31c45bSnbeams //------------------------------------------------------------------------------ 359e31c45bSnbeams // Compute required thread block sizes for basis kernels given P, Q, dim, and 369e201c85SYohann // num_comp (num_comp not currently used, but may be again in other basis 379e201c85SYohann // parallelization options) 389e31c45bSnbeams //------------------------------------------------------------------------------ 392b730f8bSJeremy L Thompson static int ComputeBasisThreadBlockSizes(const CeedInt dim, const CeedInt P_1d, const CeedInt Q_1d, const CeedInt num_comp, CeedInt *block_sizes) { 409e31c45bSnbeams // Note that this will use the same block sizes for all dimensions when compiling, 419e31c45bSnbeams // but as each basis object is defined for a particular dimension, we will never 429e31c45bSnbeams // call any kernels except the ones for the dimension for which we have computed the 439e31c45bSnbeams // block sizes. 44437930d1SJeremy L Thompson const CeedInt thread_1d = CeedIntMax(P_1d, Q_1d); 45b7453713SJeremy L Thompson 469e31c45bSnbeams switch (dim) { 479e31c45bSnbeams case 1: { 489e31c45bSnbeams // Interp kernels: 49437930d1SJeremy L Thompson block_sizes[0] = 256; 509e31c45bSnbeams 519e31c45bSnbeams // Grad kernels: 52437930d1SJeremy L Thompson block_sizes[1] = 256; 539e31c45bSnbeams 549e31c45bSnbeams // Weight kernels: 55437930d1SJeremy L Thompson block_sizes[2] = 256; 569e31c45bSnbeams } break; 579e31c45bSnbeams case 2: { 589e31c45bSnbeams // Interp kernels: 599e201c85SYohann CeedInt required = thread_1d * thread_1d; 60b7453713SJeremy L Thompson 619e201c85SYohann block_sizes[0] = CeedIntMax(256, ComputeBlockSizeFromRequirement(required)); 629e31c45bSnbeams 639e31c45bSnbeams // Grad kernels: currently use same required minimum threads 649e201c85SYohann block_sizes[1] = CeedIntMax(256, ComputeBlockSizeFromRequirement(required)); 659e31c45bSnbeams 669e31c45bSnbeams // Weight kernels: 67437930d1SJeremy L Thompson required = CeedIntMax(64, Q_1d * Q_1d); 689e201c85SYohann block_sizes[2] = CeedIntMax(256, ComputeBlockSizeFromRequirement(required)); 699e31c45bSnbeams 709e31c45bSnbeams } break; 719e31c45bSnbeams case 3: { 729e31c45bSnbeams // Interp kernels: 739e201c85SYohann CeedInt required = thread_1d * thread_1d; 74b7453713SJeremy L Thompson 759e201c85SYohann block_sizes[0] = CeedIntMax(256, ComputeBlockSizeFromRequirement(required)); 769e31c45bSnbeams 779e31c45bSnbeams // Grad kernels: currently use same required minimum threads 789e201c85SYohann block_sizes[1] = CeedIntMax(256, ComputeBlockSizeFromRequirement(required)); 799e31c45bSnbeams 809e31c45bSnbeams // Weight kernels: 81437930d1SJeremy L Thompson required = Q_1d * Q_1d * Q_1d; 829e201c85SYohann block_sizes[2] = CeedIntMax(256, ComputeBlockSizeFromRequirement(required)); 839e31c45bSnbeams } 849e31c45bSnbeams } 85e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 869e31c45bSnbeams } 879e31c45bSnbeams 889e31c45bSnbeams //------------------------------------------------------------------------------ 897d8d0e25Snbeams // Apply basis 907d8d0e25Snbeams //------------------------------------------------------------------------------ 91db2becc9SJeremy L Thompson static int CeedBasisApplyTensorCore_Hip_shared(CeedBasis basis, bool apply_add, const CeedInt num_elem, CeedTransposeMode t_mode, 92db2becc9SJeremy L Thompson CeedEvalMode eval_mode, CeedVector u, CeedVector v) { 937d8d0e25Snbeams Ceed ceed; 946dbfb411Snbeams Ceed_Hip *ceed_Hip; 95437930d1SJeremy L Thompson CeedInt dim, num_comp; 96b7453713SJeremy L Thompson const CeedScalar *d_u; 97b7453713SJeremy L Thompson CeedScalar *d_v; 98b7453713SJeremy L Thompson CeedBasis_Hip_shared *data; 99b7453713SJeremy L Thompson 100b7453713SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &ceed)); 101b7453713SJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_Hip)); 102b7453713SJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &data)); 1032b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &dim)); 1042b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumComponents(basis, &num_comp)); 1057d8d0e25Snbeams 1069ea2cfd9SJeremy L Thompson // Get read/write access to u, v 1076574a04fSJeremy L Thompson if (u != CEED_VECTOR_NONE) CeedCallBackend(CeedVectorGetArrayRead(u, CEED_MEM_DEVICE, &d_u)); 1086574a04fSJeremy L Thompson else CeedCheck(eval_mode == CEED_EVAL_WEIGHT, ceed, CEED_ERROR_BACKEND, "An input vector is required for this CeedEvalMode"); 109db2becc9SJeremy L Thompson if (apply_add) CeedCallBackend(CeedVectorGetArray(v, CEED_MEM_DEVICE, &d_v)); 110db2becc9SJeremy L Thompson else CeedCallBackend(CeedVectorGetArrayWrite(v, CEED_MEM_DEVICE, &d_v)); 1117d8d0e25Snbeams 1127d8d0e25Snbeams // Apply basis operation 113437930d1SJeremy L Thompson switch (eval_mode) { 1147d8d0e25Snbeams case CEED_EVAL_INTERP: { 115437930d1SJeremy L Thompson CeedInt P_1d, Q_1d; 116437930d1SJeremy L Thompson CeedInt block_size = data->block_sizes[0]; 117b7453713SJeremy L Thompson 1184cbc44e0SJeremy L Thompson CeedCheck(data->d_interp_1d, ceed, CEED_ERROR_BACKEND, "%s not supported; interp_1d not set", CeedEvalModes[eval_mode]); 1192b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 1202b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 121437930d1SJeremy L Thompson CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); 1222b730f8bSJeremy L Thompson void *interp_args[] = {(void *)&num_elem, &data->d_interp_1d, &d_u, &d_v}; 123b7453713SJeremy L Thompson 1247d8d0e25Snbeams if (dim == 1) { 125437930d1SJeremy L Thompson CeedInt elems_per_block = 64 * thread_1d > 256 ? 256 / thread_1d : 64; 126437930d1SJeremy L Thompson elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 127a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 128437930d1SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * sizeof(CeedScalar); 129b2165e7aSSebastian Grimberg 1309e201c85SYohann if (t_mode == CEED_TRANSPOSE) { 131db2becc9SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->InterpTransposeAdd : data->InterpTranspose, grid, thread_1d, 1, 132db2becc9SJeremy L Thompson elems_per_block, shared_mem, interp_args)); 1339e201c85SYohann } else { 134eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Interp, grid, thread_1d, 1, elems_per_block, shared_mem, interp_args)); 1359e201c85SYohann } 1367d8d0e25Snbeams } else if (dim == 2) { 1379e31c45bSnbeams // Check if required threads is small enough to do multiple elems 1382b730f8bSJeremy L Thompson const CeedInt elems_per_block = CeedIntMax(block_size / (thread_1d * thread_1d), 1); 139a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 1402b730f8bSJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 141b2165e7aSSebastian Grimberg 1429e201c85SYohann if (t_mode == CEED_TRANSPOSE) { 143db2becc9SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->InterpTransposeAdd : data->InterpTranspose, grid, thread_1d, thread_1d, 144db2becc9SJeremy L Thompson elems_per_block, shared_mem, interp_args)); 1459e201c85SYohann } else { 146eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Interp, grid, thread_1d, thread_1d, elems_per_block, shared_mem, interp_args)); 1479e201c85SYohann } 1487d8d0e25Snbeams } else if (dim == 3) { 1492b730f8bSJeremy L Thompson const CeedInt elems_per_block = CeedIntMax(block_size / (thread_1d * thread_1d), 1); 150a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 1512b730f8bSJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 152b2165e7aSSebastian Grimberg 1539e201c85SYohann if (t_mode == CEED_TRANSPOSE) { 154db2becc9SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->InterpTransposeAdd : data->InterpTranspose, grid, thread_1d, thread_1d, 155db2becc9SJeremy L Thompson elems_per_block, shared_mem, interp_args)); 1569e201c85SYohann } else { 157eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Interp, grid, thread_1d, thread_1d, elems_per_block, shared_mem, interp_args)); 1589e201c85SYohann } 1597d8d0e25Snbeams } 1607d8d0e25Snbeams } break; 1617d8d0e25Snbeams case CEED_EVAL_GRAD: { 162437930d1SJeremy L Thompson CeedInt P_1d, Q_1d; 163437930d1SJeremy L Thompson CeedInt block_size = data->block_sizes[1]; 164b7453713SJeremy L Thompson 1654cbc44e0SJeremy L Thompson CeedCheck(data->d_grad_1d, ceed, CEED_ERROR_BACKEND, "%s not supported; grad_1d not set", CeedEvalModes[eval_mode]); 1662b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 1672b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 168437930d1SJeremy L Thompson CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); 1699e201c85SYohann CeedScalar *d_grad_1d = data->d_grad_1d; 170b7453713SJeremy L Thompson 1719e201c85SYohann if (data->d_collo_grad_1d) { 1729e201c85SYohann d_grad_1d = data->d_collo_grad_1d; 1739e201c85SYohann } 1742b730f8bSJeremy L Thompson void *grad_args[] = {(void *)&num_elem, &data->d_interp_1d, &d_grad_1d, &d_u, &d_v}; 175aa4002adSJeremy L Thompson 1767d8d0e25Snbeams if (dim == 1) { 177437930d1SJeremy L Thompson CeedInt elems_per_block = 64 * thread_1d > 256 ? 256 / thread_1d : 64; 178437930d1SJeremy L Thompson elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 179a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 180437930d1SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * sizeof(CeedScalar); 181b2165e7aSSebastian Grimberg 1829e201c85SYohann if (t_mode == CEED_TRANSPOSE) { 183db2becc9SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->GradTransposeAdd : data->GradTranspose, grid, thread_1d, 1, 184db2becc9SJeremy L Thompson elems_per_block, shared_mem, grad_args)); 1859e201c85SYohann } else { 186eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Grad, grid, thread_1d, 1, elems_per_block, shared_mem, grad_args)); 1879e201c85SYohann } 1887d8d0e25Snbeams } else if (dim == 2) { 1899e31c45bSnbeams // Check if required threads is small enough to do multiple elems 1902b730f8bSJeremy L Thompson const CeedInt elems_per_block = CeedIntMax(block_size / (thread_1d * thread_1d), 1); 191a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 1922b730f8bSJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 193b2165e7aSSebastian Grimberg 1949e201c85SYohann if (t_mode == CEED_TRANSPOSE) { 195db2becc9SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->GradTransposeAdd : data->GradTranspose, grid, thread_1d, thread_1d, 196db2becc9SJeremy L Thompson elems_per_block, shared_mem, grad_args)); 1979e201c85SYohann } else { 198eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Grad, grid, thread_1d, thread_1d, elems_per_block, shared_mem, grad_args)); 1999e201c85SYohann } 2007d8d0e25Snbeams } else if (dim == 3) { 2012b730f8bSJeremy L Thompson const CeedInt elems_per_block = CeedIntMax(block_size / (thread_1d * thread_1d), 1); 202a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 2032b730f8bSJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 204b2165e7aSSebastian Grimberg 2059e201c85SYohann if (t_mode == CEED_TRANSPOSE) { 206db2becc9SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->GradTransposeAdd : data->GradTranspose, grid, thread_1d, thread_1d, 207db2becc9SJeremy L Thompson elems_per_block, shared_mem, grad_args)); 2089e201c85SYohann } else { 209eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Grad, grid, thread_1d, thread_1d, elems_per_block, shared_mem, grad_args)); 2109e201c85SYohann } 2117d8d0e25Snbeams } 2127d8d0e25Snbeams } break; 2137d8d0e25Snbeams case CEED_EVAL_WEIGHT: { 214437930d1SJeremy L Thompson CeedInt Q_1d; 215437930d1SJeremy L Thompson CeedInt block_size = data->block_sizes[2]; 216b7453713SJeremy L Thompson 217097cc795SJames Wright CeedCheck(data->d_q_weight_1d, ceed, CEED_ERROR_BACKEND, "%s not supported; q_weights_1d not set", CeedEvalModes[eval_mode]); 2182b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 219437930d1SJeremy L Thompson void *weight_args[] = {(void *)&num_elem, (void *)&data->d_q_weight_1d, &d_v}; 220b7453713SJeremy L Thompson 2217d8d0e25Snbeams if (dim == 1) { 222437930d1SJeremy L Thompson const CeedInt opt_elems = block_size / Q_1d; 223437930d1SJeremy L Thompson const CeedInt elems_per_block = opt_elems > 0 ? opt_elems : 1; 224a8d440fbSJeremy L Thompson const CeedInt grid_size = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 225b2165e7aSSebastian Grimberg 226eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDim_Hip(ceed, data->Weight, grid_size, Q_1d, elems_per_block, 1, weight_args)); 2277d8d0e25Snbeams } else if (dim == 2) { 228437930d1SJeremy L Thompson const CeedInt opt_elems = block_size / (Q_1d * Q_1d); 229437930d1SJeremy L Thompson const CeedInt elems_per_block = opt_elems > 0 ? opt_elems : 1; 230a8d440fbSJeremy L Thompson const CeedInt grid_size = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 231b2165e7aSSebastian Grimberg 232eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDim_Hip(ceed, data->Weight, grid_size, Q_1d, Q_1d, elems_per_block, weight_args)); 2337d8d0e25Snbeams } else if (dim == 3) { 2349e201c85SYohann const CeedInt opt_elems = block_size / (Q_1d * Q_1d); 2359e201c85SYohann const CeedInt elems_per_block = opt_elems > 0 ? opt_elems : 1; 236a8d440fbSJeremy L Thompson const CeedInt grid_size = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 237b2165e7aSSebastian Grimberg 238eb7e6cafSJeremy L Thompson CeedCallBackend(CeedRunKernelDim_Hip(ceed, data->Weight, grid_size, Q_1d, Q_1d, elems_per_block, weight_args)); 2397d8d0e25Snbeams } 2407d8d0e25Snbeams } break; 2419ea2cfd9SJeremy L Thompson case CEED_EVAL_NONE: /* handled separately below */ 2429ea2cfd9SJeremy L Thompson break; 2437d8d0e25Snbeams // LCOV_EXCL_START 2447d8d0e25Snbeams case CEED_EVAL_DIV: 2457d8d0e25Snbeams case CEED_EVAL_CURL: 246bcbe1c99SJeremy L Thompson return CeedError(ceed, CEED_ERROR_BACKEND, "%s not supported", CeedEvalModes[eval_mode]); 2477d8d0e25Snbeams // LCOV_EXCL_STOP 2487d8d0e25Snbeams } 2497d8d0e25Snbeams 2509ea2cfd9SJeremy L Thompson // Restore vectors, cover CEED_EVAL_NONE 2512b730f8bSJeremy L Thompson CeedCallBackend(CeedVectorRestoreArray(v, &d_v)); 2529ea2cfd9SJeremy L Thompson if (eval_mode == CEED_EVAL_NONE) CeedCallBackend(CeedVectorSetArray(v, CEED_MEM_DEVICE, CEED_COPY_VALUES, (CeedScalar *)d_u)); 2539ea2cfd9SJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) CeedCallBackend(CeedVectorRestoreArrayRead(u, &d_u)); 2549bc66399SJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 255e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 2567d8d0e25Snbeams } 2577d8d0e25Snbeams 258db2becc9SJeremy L Thompson int CeedBasisApplyTensor_Hip_shared(CeedBasis basis, const CeedInt num_elem, CeedTransposeMode t_mode, CeedEvalMode eval_mode, CeedVector u, 259db2becc9SJeremy L Thompson CeedVector v) { 260db2becc9SJeremy L Thompson CeedCallBackend(CeedBasisApplyTensorCore_Hip_shared(basis, false, num_elem, t_mode, eval_mode, u, v)); 261db2becc9SJeremy L Thompson return CEED_ERROR_SUCCESS; 262db2becc9SJeremy L Thompson } 263db2becc9SJeremy L Thompson 264db2becc9SJeremy L Thompson int CeedBasisApplyAddTensor_Hip_shared(CeedBasis basis, const CeedInt num_elem, CeedTransposeMode t_mode, CeedEvalMode eval_mode, CeedVector u, 265db2becc9SJeremy L Thompson CeedVector v) { 266db2becc9SJeremy L Thompson CeedCallBackend(CeedBasisApplyTensorCore_Hip_shared(basis, true, num_elem, t_mode, eval_mode, u, v)); 267db2becc9SJeremy L Thompson return CEED_ERROR_SUCCESS; 268db2becc9SJeremy L Thompson } 269db2becc9SJeremy L Thompson 2707d8d0e25Snbeams //------------------------------------------------------------------------------ 2711dda9c1aSJeremy L Thompson // Basis apply - tensor AtPoints 2721dda9c1aSJeremy L Thompson //------------------------------------------------------------------------------ 273db2becc9SJeremy L Thompson static int CeedBasisApplyAtPointsCore_Hip_shared(CeedBasis basis, bool apply_add, const CeedInt num_elem, const CeedInt *num_points, 274db2becc9SJeremy L Thompson CeedTransposeMode t_mode, CeedEvalMode eval_mode, CeedVector x_ref, CeedVector u, CeedVector v) { 2751dda9c1aSJeremy L Thompson Ceed ceed; 2761dda9c1aSJeremy L Thompson CeedInt Q_1d, dim, max_num_points = num_points[0]; 2771dda9c1aSJeremy L Thompson const CeedInt is_transpose = t_mode == CEED_TRANSPOSE; 2781dda9c1aSJeremy L Thompson const CeedScalar *d_x, *d_u; 2791dda9c1aSJeremy L Thompson CeedScalar *d_v; 2801dda9c1aSJeremy L Thompson CeedBasis_Hip_shared *data; 2811dda9c1aSJeremy L Thompson 2821dda9c1aSJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &data)); 2831dda9c1aSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 2841dda9c1aSJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &dim)); 2851dda9c1aSJeremy L Thompson 2861dda9c1aSJeremy L Thompson // Weight handled separately 2871dda9c1aSJeremy L Thompson if (eval_mode == CEED_EVAL_WEIGHT) { 2885a5594ffSJeremy L Thompson CeedCallBackend(CeedVectorSetValue(v, 1.0)); 2891dda9c1aSJeremy L Thompson return CEED_ERROR_SUCCESS; 2901dda9c1aSJeremy L Thompson } 2911dda9c1aSJeremy L Thompson 2929bc66399SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &ceed)); 2939bc66399SJeremy L Thompson 294111870feSJeremy L Thompson // Check padded to uniform number of points per elem 295111870feSJeremy L Thompson for (CeedInt i = 1; i < num_elem; i++) max_num_points = CeedIntMax(max_num_points, num_points[i]); 296111870feSJeremy L Thompson { 297111870feSJeremy L Thompson CeedInt num_comp, q_comp; 298111870feSJeremy L Thompson CeedSize len, len_required; 299111870feSJeremy L Thompson 300111870feSJeremy L Thompson CeedCallBackend(CeedBasisGetNumComponents(basis, &num_comp)); 301111870feSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadratureComponents(basis, eval_mode, &q_comp)); 302111870feSJeremy L Thompson CeedCallBackend(CeedVectorGetLength(is_transpose ? u : v, &len)); 303111870feSJeremy L Thompson len_required = (CeedSize)num_comp * (CeedSize)q_comp * (CeedSize)num_elem * (CeedSize)max_num_points; 304111870feSJeremy L Thompson CeedCheck(len >= len_required, ceed, CEED_ERROR_BACKEND, 305111870feSJeremy L Thompson "Vector at points must be padded to the same number of points in each element for BasisApplyAtPoints on GPU backends." 306111870feSJeremy L Thompson " Found %" CeedSize_FMT ", Required %" CeedSize_FMT, 307111870feSJeremy L Thompson len, len_required); 308111870feSJeremy L Thompson } 309111870feSJeremy L Thompson 310111870feSJeremy L Thompson // Move num_points array to device 311111870feSJeremy L Thompson if (is_transpose) { 312111870feSJeremy L Thompson const CeedInt num_bytes = num_elem * sizeof(CeedInt); 313111870feSJeremy L Thompson 314111870feSJeremy L Thompson if (num_elem != data->num_elem_at_points) { 315111870feSJeremy L Thompson data->num_elem_at_points = num_elem; 316111870feSJeremy L Thompson 317111870feSJeremy L Thompson if (data->d_points_per_elem) CeedCallHip(ceed, hipFree(data->d_points_per_elem)); 318111870feSJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_points_per_elem, num_bytes)); 319111870feSJeremy L Thompson CeedCallBackend(CeedFree(&data->h_points_per_elem)); 320111870feSJeremy L Thompson CeedCallBackend(CeedCalloc(num_elem, &data->h_points_per_elem)); 321111870feSJeremy L Thompson } 3229e511c80SJeremy L Thompson if (memcmp(data->h_points_per_elem, num_points, num_bytes)) { 323111870feSJeremy L Thompson memcpy(data->h_points_per_elem, num_points, num_bytes); 324111870feSJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_points_per_elem, num_points, num_bytes, hipMemcpyHostToDevice)); 325111870feSJeremy L Thompson } 326111870feSJeremy L Thompson } 327111870feSJeremy L Thompson 3281dda9c1aSJeremy L Thompson // Build kernels if needed 3291dda9c1aSJeremy L Thompson if (data->num_points != max_num_points) { 3301dda9c1aSJeremy L Thompson CeedInt P_1d; 3311dda9c1aSJeremy L Thompson 3321dda9c1aSJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 3331dda9c1aSJeremy L Thompson data->num_points = max_num_points; 3341dda9c1aSJeremy L Thompson 3351dda9c1aSJeremy L Thompson // -- Create interp matrix to Chebyshev coefficients 3361dda9c1aSJeremy L Thompson if (!data->d_chebyshev_interp_1d) { 3371dda9c1aSJeremy L Thompson CeedSize interp_bytes; 3381dda9c1aSJeremy L Thompson CeedScalar *chebyshev_interp_1d; 3391dda9c1aSJeremy L Thompson 3401dda9c1aSJeremy L Thompson interp_bytes = P_1d * Q_1d * sizeof(CeedScalar); 3411dda9c1aSJeremy L Thompson CeedCallBackend(CeedCalloc(P_1d * Q_1d, &chebyshev_interp_1d)); 3425a5594ffSJeremy L Thompson CeedCallBackend(CeedBasisGetChebyshevInterp1D(basis, chebyshev_interp_1d)); 3431dda9c1aSJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_chebyshev_interp_1d, interp_bytes)); 3441dda9c1aSJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_chebyshev_interp_1d, chebyshev_interp_1d, interp_bytes, hipMemcpyHostToDevice)); 3451dda9c1aSJeremy L Thompson CeedCallBackend(CeedFree(&chebyshev_interp_1d)); 3461dda9c1aSJeremy L Thompson } 3471dda9c1aSJeremy L Thompson 3481dda9c1aSJeremy L Thompson // -- Compile kernels 3499e1d4b82SJeremy L Thompson const char basis_kernel_source[] = "// AtPoints basis source\n#include <ceed/jit-source/hip/hip-shared-basis-tensor-at-points.h>\n"; 3501dda9c1aSJeremy L Thompson CeedInt num_comp; 3511dda9c1aSJeremy L Thompson 3521dda9c1aSJeremy L Thompson if (data->moduleAtPoints) CeedCallHip(ceed, hipModuleUnload(data->moduleAtPoints)); 3531dda9c1aSJeremy L Thompson CeedCallBackend(CeedBasisGetNumComponents(basis, &num_comp)); 3549e1d4b82SJeremy L Thompson CeedCallBackend(CeedCompile_Hip(ceed, basis_kernel_source, &data->moduleAtPoints, 9, "BASIS_Q_1D", Q_1d, "BASIS_P_1D", P_1d, "T_1D", 3559e1d4b82SJeremy L Thompson CeedIntMax(Q_1d, P_1d), "BASIS_DIM", dim, "BASIS_NUM_COMP", num_comp, "BASIS_NUM_NODES", CeedIntPow(P_1d, dim), 3569e1d4b82SJeremy L Thompson "BASIS_NUM_QPTS", CeedIntPow(Q_1d, dim), "BASIS_NUM_PTS", max_num_points, "BASIS_INTERP_BLOCK_SIZE", 3579e1d4b82SJeremy L Thompson data->block_sizes[0])); 3581dda9c1aSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "InterpAtPoints", &data->InterpAtPoints)); 35981ae6159SJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "InterpTransposeAtPoints", &data->InterpTransposeAtPoints)); 3601dda9c1aSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "GradAtPoints", &data->GradAtPoints)); 36181ae6159SJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->moduleAtPoints, "GradTransposeAtPoints", &data->GradTransposeAtPoints)); 3621dda9c1aSJeremy L Thompson } 3631dda9c1aSJeremy L Thompson 3641dda9c1aSJeremy L Thompson // Get read/write access to u, v 3651dda9c1aSJeremy L Thompson CeedCallBackend(CeedVectorGetArrayRead(x_ref, CEED_MEM_DEVICE, &d_x)); 3661dda9c1aSJeremy L Thompson if (u != CEED_VECTOR_NONE) CeedCallBackend(CeedVectorGetArrayRead(u, CEED_MEM_DEVICE, &d_u)); 3671dda9c1aSJeremy L Thompson else CeedCheck(eval_mode == CEED_EVAL_WEIGHT, ceed, CEED_ERROR_BACKEND, "An input vector is required for this CeedEvalMode"); 368*11ac676fSZach Atkins if (apply_add) { 369*11ac676fSZach Atkins CeedCallBackend(CeedVectorGetArray(v, CEED_MEM_DEVICE, &d_v)); 370*11ac676fSZach Atkins } else { 3711dda9c1aSJeremy L Thompson // Clear v for transpose operation 372*11ac676fSZach Atkins if (is_transpose) CeedCallBackend(CeedVectorSetValue(v, 0.0)); 373*11ac676fSZach Atkins CeedCallBackend(CeedVectorGetArrayWrite(v, CEED_MEM_DEVICE, &d_v)); 3741dda9c1aSJeremy L Thompson } 3751dda9c1aSJeremy L Thompson 3761dda9c1aSJeremy L Thompson // Basis action 3771dda9c1aSJeremy L Thompson switch (eval_mode) { 3781dda9c1aSJeremy L Thompson case CEED_EVAL_INTERP: { 3799e1d4b82SJeremy L Thompson CeedInt P_1d, Q_1d; 3809e1d4b82SJeremy L Thompson CeedInt block_size = data->block_sizes[0]; 3811dda9c1aSJeremy L Thompson 3829e1d4b82SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 3839e1d4b82SJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 3849e1d4b82SJeremy L Thompson CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); 3859e1d4b82SJeremy L Thompson void *interp_args[] = {(void *)&num_elem, &data->d_chebyshev_interp_1d, &data->d_points_per_elem, &d_x, &d_u, &d_v}; 3869e1d4b82SJeremy L Thompson 3879e1d4b82SJeremy L Thompson if (dim == 1) { 3889e1d4b82SJeremy L Thompson CeedInt elems_per_block = 64 * thread_1d > 256 ? 256 / thread_1d : 64; 3899e1d4b82SJeremy L Thompson elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 390a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 3919e1d4b82SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * sizeof(CeedScalar); 3929e1d4b82SJeremy L Thompson 3939e1d4b82SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, is_transpose ? data->InterpTransposeAtPoints : data->InterpAtPoints, grid, thread_1d, 1, 3949e1d4b82SJeremy L Thompson elems_per_block, shared_mem, interp_args)); 3959e1d4b82SJeremy L Thompson } else if (dim == 2) { 3969e1d4b82SJeremy L Thompson // Check if required threads is small enough to do multiple elems 3979e1d4b82SJeremy L Thompson const CeedInt elems_per_block = CeedIntMax(block_size / (thread_1d * thread_1d), 1); 398a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 3999e1d4b82SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 4009e1d4b82SJeremy L Thompson 4019e1d4b82SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, is_transpose ? data->InterpTransposeAtPoints : data->InterpAtPoints, grid, thread_1d, 4029e1d4b82SJeremy L Thompson thread_1d, elems_per_block, shared_mem, interp_args)); 4039e1d4b82SJeremy L Thompson } else if (dim == 3) { 404b4280a96SJeremy L Thompson const CeedInt elems_per_block = 1; 405a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 4069e1d4b82SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 4079e1d4b82SJeremy L Thompson 4089e1d4b82SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, is_transpose ? data->InterpTransposeAtPoints : data->InterpAtPoints, grid, thread_1d, 4099e1d4b82SJeremy L Thompson thread_1d, elems_per_block, shared_mem, interp_args)); 4109e1d4b82SJeremy L Thompson } 4111dda9c1aSJeremy L Thompson } break; 4121dda9c1aSJeremy L Thompson case CEED_EVAL_GRAD: { 4139e1d4b82SJeremy L Thompson CeedInt P_1d, Q_1d; 4149e1d4b82SJeremy L Thompson CeedInt block_size = data->block_sizes[0]; 4151dda9c1aSJeremy L Thompson 4169e1d4b82SJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes1D(basis, &P_1d)); 4179e1d4b82SJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints1D(basis, &Q_1d)); 4189e1d4b82SJeremy L Thompson CeedInt thread_1d = CeedIntMax(Q_1d, P_1d); 4199e1d4b82SJeremy L Thompson void *grad_args[] = {(void *)&num_elem, &data->d_chebyshev_interp_1d, &data->d_points_per_elem, &d_x, &d_u, &d_v}; 4209e1d4b82SJeremy L Thompson 4219e1d4b82SJeremy L Thompson if (dim == 1) { 4229e1d4b82SJeremy L Thompson CeedInt elems_per_block = 64 * thread_1d > 256 ? 256 / thread_1d : 64; 4239e1d4b82SJeremy L Thompson elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 424a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 4259e1d4b82SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * sizeof(CeedScalar); 4269e1d4b82SJeremy L Thompson 4279e1d4b82SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, is_transpose ? data->GradTransposeAtPoints : data->GradAtPoints, grid, thread_1d, 1, 4289e1d4b82SJeremy L Thompson elems_per_block, shared_mem, grad_args)); 4299e1d4b82SJeremy L Thompson } else if (dim == 2) { 4309e1d4b82SJeremy L Thompson // Check if required threads is small enough to do multiple elems 4319e1d4b82SJeremy L Thompson const CeedInt elems_per_block = CeedIntMax(block_size / (thread_1d * thread_1d), 1); 432a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 4339e1d4b82SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 4349e1d4b82SJeremy L Thompson 4359e1d4b82SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, is_transpose ? data->GradTransposeAtPoints : data->GradAtPoints, grid, thread_1d, thread_1d, 4369e1d4b82SJeremy L Thompson elems_per_block, shared_mem, grad_args)); 4379e1d4b82SJeremy L Thompson } else if (dim == 3) { 438b4280a96SJeremy L Thompson const CeedInt elems_per_block = 1; 439a8d440fbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 4409e1d4b82SJeremy L Thompson CeedInt shared_mem = elems_per_block * thread_1d * thread_1d * sizeof(CeedScalar); 4419e1d4b82SJeremy L Thompson 4429e1d4b82SJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, is_transpose ? data->GradTransposeAtPoints : data->GradAtPoints, grid, thread_1d, thread_1d, 4439e1d4b82SJeremy L Thompson elems_per_block, shared_mem, grad_args)); 4449e1d4b82SJeremy L Thompson } 4451dda9c1aSJeremy L Thompson } break; 4461dda9c1aSJeremy L Thompson case CEED_EVAL_WEIGHT: 4471dda9c1aSJeremy L Thompson case CEED_EVAL_NONE: /* handled separately below */ 4481dda9c1aSJeremy L Thompson break; 4491dda9c1aSJeremy L Thompson // LCOV_EXCL_START 4501dda9c1aSJeremy L Thompson case CEED_EVAL_DIV: 4511dda9c1aSJeremy L Thompson case CEED_EVAL_CURL: 4521dda9c1aSJeremy L Thompson return CeedError(ceed, CEED_ERROR_BACKEND, "%s not supported", CeedEvalModes[eval_mode]); 4531dda9c1aSJeremy L Thompson // LCOV_EXCL_STOP 4541dda9c1aSJeremy L Thompson } 4551dda9c1aSJeremy L Thompson 4561dda9c1aSJeremy L Thompson // Restore vectors, cover CEED_EVAL_NONE 4571dda9c1aSJeremy L Thompson CeedCallBackend(CeedVectorRestoreArrayRead(x_ref, &d_x)); 4581dda9c1aSJeremy L Thompson CeedCallBackend(CeedVectorRestoreArray(v, &d_v)); 4591dda9c1aSJeremy L Thompson if (eval_mode == CEED_EVAL_NONE) CeedCallBackend(CeedVectorSetArray(v, CEED_MEM_DEVICE, CEED_COPY_VALUES, (CeedScalar *)d_u)); 4601dda9c1aSJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) CeedCallBackend(CeedVectorRestoreArrayRead(u, &d_u)); 4611dda9c1aSJeremy L Thompson return CEED_ERROR_SUCCESS; 4621dda9c1aSJeremy L Thompson } 4631dda9c1aSJeremy L Thompson 464db2becc9SJeremy L Thompson static int CeedBasisApplyAtPoints_Hip_shared(CeedBasis basis, const CeedInt num_elem, const CeedInt *num_points, CeedTransposeMode t_mode, 465db2becc9SJeremy L Thompson CeedEvalMode eval_mode, CeedVector x_ref, CeedVector u, CeedVector v) { 466db2becc9SJeremy L Thompson CeedCallBackend(CeedBasisApplyAtPointsCore_Hip_shared(basis, false, num_elem, num_points, t_mode, eval_mode, x_ref, u, v)); 467db2becc9SJeremy L Thompson return CEED_ERROR_SUCCESS; 468db2becc9SJeremy L Thompson } 469db2becc9SJeremy L Thompson 470db2becc9SJeremy L Thompson static int CeedBasisApplyAddAtPoints_Hip_shared(CeedBasis basis, const CeedInt num_elem, const CeedInt *num_points, CeedTransposeMode t_mode, 471db2becc9SJeremy L Thompson CeedEvalMode eval_mode, CeedVector x_ref, CeedVector u, CeedVector v) { 472db2becc9SJeremy L Thompson CeedCallBackend(CeedBasisApplyAtPointsCore_Hip_shared(basis, true, num_elem, num_points, t_mode, eval_mode, x_ref, u, v)); 473db2becc9SJeremy L Thompson return CEED_ERROR_SUCCESS; 474db2becc9SJeremy L Thompson } 475db2becc9SJeremy L Thompson 4761dda9c1aSJeremy L Thompson //------------------------------------------------------------------------------ 4776c13bbcbSJeremy L Thompson // Apply basis 4786c13bbcbSJeremy L Thompson //------------------------------------------------------------------------------ 4796c13bbcbSJeremy L Thompson static int CeedBasisApplyNonTensorCore_Hip_shared(CeedBasis basis, bool apply_add, const CeedInt num_elem, CeedTransposeMode t_mode, 4806c13bbcbSJeremy L Thompson CeedEvalMode eval_mode, CeedVector u, CeedVector v) { 4816c13bbcbSJeremy L Thompson Ceed ceed; 4826c13bbcbSJeremy L Thompson Ceed_Hip *ceed_Hip; 4836c13bbcbSJeremy L Thompson CeedInt dim, num_comp; 4846c13bbcbSJeremy L Thompson const CeedScalar *d_u; 4856c13bbcbSJeremy L Thompson CeedScalar *d_v; 4866c13bbcbSJeremy L Thompson CeedBasis_Hip_shared *data; 4876c13bbcbSJeremy L Thompson 4886c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &ceed)); 4896c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &ceed_Hip)); 4906c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &data)); 4916c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetDimension(basis, &dim)); 4926c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumComponents(basis, &num_comp)); 4936c13bbcbSJeremy L Thompson 4946c13bbcbSJeremy L Thompson // Get read/write access to u, v 4956c13bbcbSJeremy L Thompson if (u != CEED_VECTOR_NONE) CeedCallBackend(CeedVectorGetArrayRead(u, CEED_MEM_DEVICE, &d_u)); 4966c13bbcbSJeremy L Thompson else CeedCheck(eval_mode == CEED_EVAL_WEIGHT, ceed, CEED_ERROR_BACKEND, "An input vector is required for this CeedEvalMode"); 497*11ac676fSZach Atkins if (apply_add) { 498*11ac676fSZach Atkins CeedCallBackend(CeedVectorGetArray(v, CEED_MEM_DEVICE, &d_v)); 499*11ac676fSZach Atkins } else { 500*11ac676fSZach Atkins // Clear v for transpose operation 501*11ac676fSZach Atkins if (is_transpose) CeedCallBackend(CeedVectorSetValue(v, 0.0)); 502*11ac676fSZach Atkins CeedCallBackend(CeedVectorGetArrayWrite(v, CEED_MEM_DEVICE, &d_v)); 503*11ac676fSZach Atkins } 5046c13bbcbSJeremy L Thompson 5056c13bbcbSJeremy L Thompson // Apply basis operation 5066c13bbcbSJeremy L Thompson switch (eval_mode) { 5076c13bbcbSJeremy L Thompson case CEED_EVAL_INTERP: { 5086c13bbcbSJeremy L Thompson CeedInt P, Q; 5096c13bbcbSJeremy L Thompson 5104cbc44e0SJeremy L Thompson CeedCheck(data->d_interp_1d, ceed, CEED_ERROR_BACKEND, "%s not supported; interp not set", CeedEvalModes[eval_mode]); 5116c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes(basis, &P)); 5126c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints(basis, &Q)); 5136c13bbcbSJeremy L Thompson CeedInt thread = CeedIntMax(Q, P); 5146c13bbcbSJeremy L Thompson void *interp_args[] = {(void *)&num_elem, &data->d_interp_1d, &d_u, &d_v}; 5156c13bbcbSJeremy L Thompson 5166c13bbcbSJeremy L Thompson { 5176c13bbcbSJeremy L Thompson CeedInt elems_per_block = 64 * thread > 256 ? 256 / thread : 64; 5186c13bbcbSJeremy L Thompson elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 5196c13bbcbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 5206c13bbcbSJeremy L Thompson CeedInt shared_mem = elems_per_block * thread * sizeof(CeedScalar); 5216c13bbcbSJeremy L Thompson 5226c13bbcbSJeremy L Thompson if (t_mode == CEED_TRANSPOSE) { 5236c13bbcbSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->InterpTransposeAdd : data->InterpTranspose, grid, thread, 1, 5246c13bbcbSJeremy L Thompson elems_per_block, shared_mem, interp_args)); 5256c13bbcbSJeremy L Thompson } else { 5266c13bbcbSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Interp, grid, thread, 1, elems_per_block, shared_mem, interp_args)); 5276c13bbcbSJeremy L Thompson } 5286c13bbcbSJeremy L Thompson } 5296c13bbcbSJeremy L Thompson } break; 5306c13bbcbSJeremy L Thompson case CEED_EVAL_GRAD: { 5316c13bbcbSJeremy L Thompson CeedInt P, Q; 5326c13bbcbSJeremy L Thompson 5334cbc44e0SJeremy L Thompson CeedCheck(data->d_grad_1d, ceed, CEED_ERROR_BACKEND, "%s not supported; grad not set", CeedEvalModes[eval_mode]); 5346c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumNodes(basis, &P)); 5356c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints(basis, &Q)); 5366c13bbcbSJeremy L Thompson CeedInt thread = CeedIntMax(Q, P); 5372d217acfSJeremy L Thompson void *grad_args[] = {(void *)&num_elem, &data->d_grad_1d, &d_u, &d_v}; 5386c13bbcbSJeremy L Thompson 5396c13bbcbSJeremy L Thompson { 5406c13bbcbSJeremy L Thompson CeedInt elems_per_block = 64 * thread > 256 ? 256 / thread : 64; 5416c13bbcbSJeremy L Thompson elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 5426c13bbcbSJeremy L Thompson CeedInt grid = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 5436c13bbcbSJeremy L Thompson CeedInt shared_mem = elems_per_block * thread * sizeof(CeedScalar); 5446c13bbcbSJeremy L Thompson 5456c13bbcbSJeremy L Thompson if (t_mode == CEED_TRANSPOSE) { 5466c13bbcbSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, apply_add ? data->GradTransposeAdd : data->GradTranspose, grid, thread, 1, elems_per_block, 5476c13bbcbSJeremy L Thompson shared_mem, grad_args)); 5486c13bbcbSJeremy L Thompson } else { 5496c13bbcbSJeremy L Thompson CeedCallBackend(CeedRunKernelDimShared_Hip(ceed, data->Grad, grid, thread, 1, elems_per_block, shared_mem, grad_args)); 5506c13bbcbSJeremy L Thompson } 5516c13bbcbSJeremy L Thompson } 5526c13bbcbSJeremy L Thompson } break; 5536c13bbcbSJeremy L Thompson case CEED_EVAL_WEIGHT: { 55497011eabSZach Atkins CeedInt P, Q; 5556c13bbcbSJeremy L Thompson 5564cbc44e0SJeremy L Thompson CeedCheck(data->d_q_weight_1d, ceed, CEED_ERROR_BACKEND, "%s not supported; q_weights not set", CeedEvalModes[eval_mode]); 55797011eabSZach Atkins CeedCallBackend(CeedBasisGetNumNodes(basis, &P)); 5582d217acfSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadraturePoints(basis, &Q)); 55997011eabSZach Atkins CeedInt thread = CeedIntMax(Q, P); 5606c13bbcbSJeremy L Thompson void *weight_args[] = {(void *)&num_elem, (void *)&data->d_q_weight_1d, &d_v}; 5616c13bbcbSJeremy L Thompson 5626c13bbcbSJeremy L Thompson { 56397011eabSZach Atkins CeedInt elems_per_block = 64 * thread > 256 ? 256 / thread : 64; 56497011eabSZach Atkins elems_per_block = elems_per_block > 0 ? elems_per_block : 1; 5656c13bbcbSJeremy L Thompson const CeedInt grid_size = num_elem / elems_per_block + (num_elem % elems_per_block > 0); 5666c13bbcbSJeremy L Thompson 56797011eabSZach Atkins CeedCallBackend(CeedRunKernelDim_Hip(ceed, data->Weight, grid_size, thread, elems_per_block, 1, weight_args)); 5686c13bbcbSJeremy L Thompson } 5696c13bbcbSJeremy L Thompson } break; 5706c13bbcbSJeremy L Thompson case CEED_EVAL_NONE: /* handled separately below */ 5716c13bbcbSJeremy L Thompson break; 5726c13bbcbSJeremy L Thompson // LCOV_EXCL_START 5736c13bbcbSJeremy L Thompson case CEED_EVAL_DIV: 5746c13bbcbSJeremy L Thompson case CEED_EVAL_CURL: 5756c13bbcbSJeremy L Thompson return CeedError(ceed, CEED_ERROR_BACKEND, "%s not supported", CeedEvalModes[eval_mode]); 5766c13bbcbSJeremy L Thompson // LCOV_EXCL_STOP 5776c13bbcbSJeremy L Thompson } 5786c13bbcbSJeremy L Thompson 5796c13bbcbSJeremy L Thompson // Restore vectors, cover CEED_EVAL_NONE 5806c13bbcbSJeremy L Thompson CeedCallBackend(CeedVectorRestoreArray(v, &d_v)); 5816c13bbcbSJeremy L Thompson if (eval_mode == CEED_EVAL_NONE) CeedCallBackend(CeedVectorSetArray(v, CEED_MEM_DEVICE, CEED_COPY_VALUES, (CeedScalar *)d_u)); 5826c13bbcbSJeremy L Thompson if (eval_mode != CEED_EVAL_WEIGHT) CeedCallBackend(CeedVectorRestoreArrayRead(u, &d_u)); 5836c13bbcbSJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 5846c13bbcbSJeremy L Thompson return CEED_ERROR_SUCCESS; 5856c13bbcbSJeremy L Thompson } 5866c13bbcbSJeremy L Thompson 5876c13bbcbSJeremy L Thompson int CeedBasisApplyNonTensor_Hip_shared(CeedBasis basis, const CeedInt num_elem, CeedTransposeMode t_mode, CeedEvalMode eval_mode, CeedVector u, 5886c13bbcbSJeremy L Thompson CeedVector v) { 5896c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisApplyNonTensorCore_Hip_shared(basis, false, num_elem, t_mode, eval_mode, u, v)); 5906c13bbcbSJeremy L Thompson return CEED_ERROR_SUCCESS; 5916c13bbcbSJeremy L Thompson } 5926c13bbcbSJeremy L Thompson 5936c13bbcbSJeremy L Thompson int CeedBasisApplyAddNonTensor_Hip_shared(CeedBasis basis, const CeedInt num_elem, CeedTransposeMode t_mode, CeedEvalMode eval_mode, CeedVector u, 5946c13bbcbSJeremy L Thompson CeedVector v) { 5956c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisApplyNonTensorCore_Hip_shared(basis, true, num_elem, t_mode, eval_mode, u, v)); 5966c13bbcbSJeremy L Thompson return CEED_ERROR_SUCCESS; 5976c13bbcbSJeremy L Thompson } 5986c13bbcbSJeremy L Thompson 5996c13bbcbSJeremy L Thompson //------------------------------------------------------------------------------ 6007d8d0e25Snbeams // Destroy basis 6017d8d0e25Snbeams //------------------------------------------------------------------------------ 6027d8d0e25Snbeams static int CeedBasisDestroy_Hip_shared(CeedBasis basis) { 6037d8d0e25Snbeams Ceed ceed; 6047d8d0e25Snbeams CeedBasis_Hip_shared *data; 605b7453713SJeremy L Thompson 606b7453713SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &ceed)); 6072b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetData(basis, &data)); 6082b730f8bSJeremy L Thompson CeedCallHip(ceed, hipModuleUnload(data->module)); 6091dda9c1aSJeremy L Thompson if (data->moduleAtPoints) CeedCallHip(ceed, hipModuleUnload(data->moduleAtPoints)); 610097cc795SJames Wright if (data->d_q_weight_1d) CeedCallHip(ceed, hipFree(data->d_q_weight_1d)); 611111870feSJeremy L Thompson CeedCallBackend(CeedFree(&data->h_points_per_elem)); 612111870feSJeremy L Thompson if (data->d_points_per_elem) CeedCallHip(ceed, hipFree(data->d_points_per_elem)); 6132b730f8bSJeremy L Thompson CeedCallHip(ceed, hipFree(data->d_interp_1d)); 6142b730f8bSJeremy L Thompson CeedCallHip(ceed, hipFree(data->d_grad_1d)); 6152b730f8bSJeremy L Thompson CeedCallHip(ceed, hipFree(data->d_collo_grad_1d)); 6161dda9c1aSJeremy L Thompson CeedCallHip(ceed, hipFree(data->d_chebyshev_interp_1d)); 6172b730f8bSJeremy L Thompson CeedCallBackend(CeedFree(&data)); 618e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 6197d8d0e25Snbeams } 6207d8d0e25Snbeams 6217d8d0e25Snbeams //------------------------------------------------------------------------------ 6227d8d0e25Snbeams // Create tensor basis 6237d8d0e25Snbeams //------------------------------------------------------------------------------ 6242b730f8bSJeremy L Thompson int CeedBasisCreateTensorH1_Hip_shared(CeedInt dim, CeedInt P_1d, CeedInt Q_1d, const CeedScalar *interp_1d, const CeedScalar *grad_1d, 6256574a04fSJeremy L Thompson const CeedScalar *q_ref_1d, const CeedScalar *q_weight_1d, CeedBasis basis) { 6267d8d0e25Snbeams Ceed ceed; 627b7453713SJeremy L Thompson CeedInt num_comp; 628b7453713SJeremy L Thompson const CeedInt q_bytes = Q_1d * sizeof(CeedScalar); 629397164e9SSebastian Grimberg const CeedInt interp_bytes = q_bytes * P_1d; 6307d8d0e25Snbeams CeedBasis_Hip_shared *data; 631b7453713SJeremy L Thompson 632b7453713SJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &ceed)); 6332b730f8bSJeremy L Thompson CeedCallBackend(CeedCalloc(1, &data)); 6347d8d0e25Snbeams 6357d8d0e25Snbeams // Copy basis data to GPU 636097cc795SJames Wright if (q_weight_1d) { 637b7453713SJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_q_weight_1d, q_bytes)); 638b7453713SJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_q_weight_1d, q_weight_1d, q_bytes, hipMemcpyHostToDevice)); 639097cc795SJames Wright } 640397164e9SSebastian Grimberg CeedCallHip(ceed, hipMalloc((void **)&data->d_interp_1d, interp_bytes)); 641397164e9SSebastian Grimberg CeedCallHip(ceed, hipMemcpy(data->d_interp_1d, interp_1d, interp_bytes, hipMemcpyHostToDevice)); 642397164e9SSebastian Grimberg CeedCallHip(ceed, hipMalloc((void **)&data->d_grad_1d, interp_bytes)); 643397164e9SSebastian Grimberg CeedCallHip(ceed, hipMemcpy(data->d_grad_1d, grad_1d, interp_bytes, hipMemcpyHostToDevice)); 6447d8d0e25Snbeams 6457d8d0e25Snbeams // Compute collocated gradient and copy to GPU 646437930d1SJeremy L Thompson data->d_collo_grad_1d = NULL; 6479e201c85SYohann bool has_collocated_grad = dim == 3 && Q_1d >= P_1d; 648b7453713SJeremy L Thompson 6499e201c85SYohann if (has_collocated_grad) { 650437930d1SJeremy L Thompson CeedScalar *collo_grad_1d; 651b7453713SJeremy L Thompson 6522b730f8bSJeremy L Thompson CeedCallBackend(CeedMalloc(Q_1d * Q_1d, &collo_grad_1d)); 6532b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetCollocatedGrad(basis, collo_grad_1d)); 654b7453713SJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_collo_grad_1d, q_bytes * Q_1d)); 655b7453713SJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_collo_grad_1d, collo_grad_1d, q_bytes * Q_1d, hipMemcpyHostToDevice)); 6562b730f8bSJeremy L Thompson CeedCallBackend(CeedFree(&collo_grad_1d)); 6577d8d0e25Snbeams } 6587d8d0e25Snbeams 6599e31c45bSnbeams // Set number of threads per block for basis kernels 6602b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisGetNumComponents(basis, &num_comp)); 6612b730f8bSJeremy L Thompson CeedCallBackend(ComputeBasisThreadBlockSizes(dim, P_1d, Q_1d, num_comp, data->block_sizes)); 6629e31c45bSnbeams 6639e31c45bSnbeams // Compile basis kernels 6649c25dd66SJeremy L Thompson const char basis_kernel_source[] = "// Tensor basis source\n#include <ceed/jit-source/hip/hip-shared-basis-tensor.h>\n"; 6659c25dd66SJeremy L Thompson 666eb7e6cafSJeremy L Thompson CeedCallBackend(CeedCompile_Hip(ceed, basis_kernel_source, &data->module, 11, "BASIS_Q_1D", Q_1d, "BASIS_P_1D", P_1d, "T_1D", 667eb7e6cafSJeremy L Thompson CeedIntMax(Q_1d, P_1d), "BASIS_DIM", dim, "BASIS_NUM_COMP", num_comp, "BASIS_NUM_NODES", CeedIntPow(P_1d, dim), 668eb7e6cafSJeremy L Thompson "BASIS_NUM_QPTS", CeedIntPow(Q_1d, dim), "BASIS_INTERP_BLOCK_SIZE", data->block_sizes[0], "BASIS_GRAD_BLOCK_SIZE", 6692b730f8bSJeremy L Thompson data->block_sizes[1], "BASIS_WEIGHT_BLOCK_SIZE", data->block_sizes[2], "BASIS_HAS_COLLOCATED_GRAD", 6702b730f8bSJeremy L Thompson has_collocated_grad)); 671eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "Interp", &data->Interp)); 672eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "InterpTranspose", &data->InterpTranspose)); 673db2becc9SJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "InterpTransposeAdd", &data->InterpTransposeAdd)); 674eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "Grad", &data->Grad)); 675eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "GradTranspose", &data->GradTranspose)); 676db2becc9SJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "GradTransposeAdd", &data->GradTransposeAdd)); 677eb7e6cafSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "Weight", &data->Weight)); 6787d8d0e25Snbeams 6792b730f8bSJeremy L Thompson CeedCallBackend(CeedBasisSetData(basis, data)); 6807d8d0e25Snbeams 6817d8d0e25Snbeams // Register backend functions 6822b730f8bSJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "Apply", CeedBasisApplyTensor_Hip_shared)); 683db2becc9SJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "ApplyAdd", CeedBasisApplyAddTensor_Hip_shared)); 6841dda9c1aSJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "ApplyAtPoints", CeedBasisApplyAtPoints_Hip_shared)); 685db2becc9SJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "ApplyAddAtPoints", CeedBasisApplyAddAtPoints_Hip_shared)); 6862b730f8bSJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "Destroy", CeedBasisDestroy_Hip_shared)); 6879bc66399SJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 688e15f9bd0SJeremy L Thompson return CEED_ERROR_SUCCESS; 6897d8d0e25Snbeams } 6902a86cc9dSSebastian Grimberg 6917d8d0e25Snbeams //------------------------------------------------------------------------------ 6926c13bbcbSJeremy L Thompson // Create non-tensor basis 6936c13bbcbSJeremy L Thompson //------------------------------------------------------------------------------ 6946c13bbcbSJeremy L Thompson int CeedBasisCreateH1_Hip_shared(CeedElemTopology topo, CeedInt dim, CeedInt num_nodes, CeedInt num_qpts, const CeedScalar *interp, 6956c13bbcbSJeremy L Thompson const CeedScalar *grad, const CeedScalar *q_ref, const CeedScalar *q_weight, CeedBasis basis) { 6966c13bbcbSJeremy L Thompson Ceed ceed; 6976c13bbcbSJeremy L Thompson CeedInt num_comp, q_comp_interp, q_comp_grad; 6986c13bbcbSJeremy L Thompson const CeedInt q_bytes = num_qpts * sizeof(CeedScalar); 6996c13bbcbSJeremy L Thompson CeedBasis_Hip_shared *data; 7006c13bbcbSJeremy L Thompson 7016c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetCeed(basis, &ceed)); 702fda26546SJeremy L Thompson 703fda26546SJeremy L Thompson // Check shared memory size 704fda26546SJeremy L Thompson { 705fda26546SJeremy L Thompson Ceed_Hip *hip_data; 706fda26546SJeremy L Thompson 707fda26546SJeremy L Thompson CeedCallBackend(CeedGetData(ceed, &hip_data)); 708fda26546SJeremy L Thompson if (((size_t)num_nodes * (size_t)num_qpts * (size_t)dim + (size_t)CeedIntMax(num_nodes, num_qpts)) * sizeof(CeedScalar) > 709fda26546SJeremy L Thompson hip_data->device_prop.sharedMemPerBlock) { 710fda26546SJeremy L Thompson CeedCallBackend(CeedBasisCreateH1Fallback(ceed, topo, dim, num_nodes, num_qpts, interp, grad, q_ref, q_weight, basis)); 711fda26546SJeremy L Thompson return CEED_ERROR_SUCCESS; 712fda26546SJeremy L Thompson } 713fda26546SJeremy L Thompson } 714fda26546SJeremy L Thompson 7156c13bbcbSJeremy L Thompson CeedCallBackend(CeedCalloc(1, &data)); 7166c13bbcbSJeremy L Thompson 7176c13bbcbSJeremy L Thompson // Copy basis data to GPU 7186c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadratureComponents(basis, CEED_EVAL_INTERP, &q_comp_interp)); 7196c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumQuadratureComponents(basis, CEED_EVAL_GRAD, &q_comp_grad)); 7206c13bbcbSJeremy L Thompson if (q_weight) { 7216c13bbcbSJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_q_weight_1d, q_bytes)); 7226c13bbcbSJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_q_weight_1d, q_weight, q_bytes, hipMemcpyHostToDevice)); 7236c13bbcbSJeremy L Thompson } 7246c13bbcbSJeremy L Thompson if (interp) { 7256c13bbcbSJeremy L Thompson const CeedInt interp_bytes = q_bytes * num_nodes * q_comp_interp; 7266c13bbcbSJeremy L Thompson 7276c13bbcbSJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_interp_1d, interp_bytes)); 7286c13bbcbSJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_interp_1d, interp, interp_bytes, hipMemcpyHostToDevice)); 7296c13bbcbSJeremy L Thompson } 7306c13bbcbSJeremy L Thompson if (grad) { 7316c13bbcbSJeremy L Thompson const CeedInt grad_bytes = q_bytes * num_nodes * q_comp_grad; 7326c13bbcbSJeremy L Thompson 7336c13bbcbSJeremy L Thompson CeedCallHip(ceed, hipMalloc((void **)&data->d_grad_1d, grad_bytes)); 7346c13bbcbSJeremy L Thompson CeedCallHip(ceed, hipMemcpy(data->d_grad_1d, grad, grad_bytes, hipMemcpyHostToDevice)); 7356c13bbcbSJeremy L Thompson } 7366c13bbcbSJeremy L Thompson 7376c13bbcbSJeremy L Thompson // Compile basis kernels 7386c13bbcbSJeremy L Thompson const char basis_kernel_source[] = "// Non-tensor basis source\n#include <ceed/jit-source/hip/hip-shared-basis-nontensor.h>\n"; 7396c13bbcbSJeremy L Thompson 7406c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisGetNumComponents(basis, &num_comp)); 7412d217acfSJeremy L Thompson CeedCallBackend(ComputeBasisThreadBlockSizes(dim, num_nodes, num_qpts, num_comp, data->block_sizes)); 7422d217acfSJeremy L Thompson CeedCallBackend(CeedCompile_Hip(ceed, basis_kernel_source, &data->module, 6, "BASIS_Q", num_qpts, "BASIS_P", num_nodes, "T_1D", 7432d217acfSJeremy L Thompson CeedIntMax(num_qpts, num_nodes), "BASIS_DIM", dim, "BASIS_NUM_COMP", num_comp, "BASIS_INTERP_BLOCK_SIZE", 7442d217acfSJeremy L Thompson data->block_sizes[0])); 7456c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "Interp", &data->Interp)); 7466c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "InterpTranspose", &data->InterpTranspose)); 7476c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "InterpTransposeAdd", &data->InterpTransposeAdd)); 7486c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "Grad", &data->Grad)); 7496c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "GradTranspose", &data->GradTranspose)); 7506c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "GradTransposeAdd", &data->GradTransposeAdd)); 7516c13bbcbSJeremy L Thompson CeedCallBackend(CeedGetKernel_Hip(ceed, data->module, "Weight", &data->Weight)); 7526c13bbcbSJeremy L Thompson 7536c13bbcbSJeremy L Thompson CeedCallBackend(CeedBasisSetData(basis, data)); 7546c13bbcbSJeremy L Thompson 7556c13bbcbSJeremy L Thompson // Register backend functions 7566c13bbcbSJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "Apply", CeedBasisApplyNonTensor_Hip_shared)); 7576c13bbcbSJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "ApplyAdd", CeedBasisApplyAddNonTensor_Hip_shared)); 7586c13bbcbSJeremy L Thompson CeedCallBackend(CeedSetBackendFunction(ceed, "Basis", basis, "Destroy", CeedBasisDestroy_Hip_shared)); 7596c13bbcbSJeremy L Thompson CeedCallBackend(CeedDestroy(&ceed)); 7606c13bbcbSJeremy L Thompson return CEED_ERROR_SUCCESS; 7616c13bbcbSJeremy L Thompson } 7626c13bbcbSJeremy L Thompson 7636c13bbcbSJeremy L Thompson //------------------------------------------------------------------------------ 764