From 75765c5ee087b820f9db177ebacebc85fee03b57 Mon Sep 17 00:00:00 2001 From: Jeremy L Thompson Date: Wed, 29 May 2024 15:40:28 -0600 Subject: [PATCH] minor - fix typo --- backends/cuda-shared/kernels/cuda-shared-basis.cu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backends/cuda-shared/kernels/cuda-shared-basis.cu b/backends/cuda-shared/kernels/cuda-shared-basis.cu index 3374cd8bb8..1eb03fb2e9 100644 --- a/backends/cuda-shared/kernels/cuda-shared-basis.cu +++ b/backends/cuda-shared/kernels/cuda-shared-basis.cu @@ -13,7 +13,7 @@ __constant__ CeedScalar c_B[sizeMax*sizeMax]; __constant__ CeedScalar c_G[sizeMax*sizeMax]; //------------------------------------------------------------------------------ -// Interp device initalization +// Interp device initialization //------------------------------------------------------------------------------ extern "C" int CeedInit_CudaInterp(CeedScalar *d_B, CeedInt P_1d, CeedInt Q_1d, CeedScalar **c_B_ptr) { @@ -25,7 +25,7 @@ extern "C" int CeedInit_CudaInterp(CeedScalar *d_B, CeedInt P_1d, CeedInt Q_1d, } //------------------------------------------------------------------------------ -// Grad device initalization +// Grad device initialization //------------------------------------------------------------------------------ extern "C" int CeedInit_CudaGrad(CeedScalar *d_B, CeedScalar *d_G, CeedInt P_1d, CeedInt Q_1d, CeedScalar **c_B_ptr, CeedScalar **c_G_ptr) { @@ -39,7 +39,7 @@ extern "C" int CeedInit_CudaGrad(CeedScalar *d_B, CeedScalar *d_G, } //------------------------------------------------------------------------------ -// Collocated grad device initalization +// Collocated grad device initialization //------------------------------------------------------------------------------ extern "C" int CeedInit_CudaCollocatedGrad(CeedScalar *d_B, CeedScalar *d_G, CeedInt P_1d, CeedInt Q_1d, CeedScalar **c_B_ptr, CeedScalar **c_G_ptr) {