Skip to content

Commit

Permalink
Merge pull request CEED#1594 from CEED/jeremy/spelling
Browse files Browse the repository at this point in the history
minor - fix typo
  • Loading branch information
jeremylt authored May 29, 2024
2 parents e5537bc + 75765c5 commit 02560a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backends/cuda-shared/kernels/cuda-shared-basis.cu
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit 02560a9

Please sign in to comment.