Skip to content

Commit

Permalink
Correct issues found by review
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Jan 9, 2024
1 parent 670031b commit 967a9e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/tests/error/error_handling_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ TEST(StreamCheck, success) { EXPECT_NO_THROW(CUDF_CHECK_CUDA(0)); }

namespace {
// Some silly kernel that will cause an error
static void __global__ test_kernel(int* data) { data[threadIdx.x] = threadIdx.x; }
CUDF_KERNEL void test_kernel(int* data) { data[threadIdx.x] = threadIdx.x; }
} // namespace

// In a release build and without explicit synchronization, CUDF_CHECK_CUDA may
Expand Down

0 comments on commit 967a9e1

Please sign in to comment.