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 3968a89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cpp/src/join/mixed_join_kernel.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace cg = cooperative_groups;
#pragma GCC diagnostic ignored "-Wattributes"

template <cudf::size_type block_size, bool has_nulls>
__attribute__((visibility("hidden"))) __launch_bounds__(block_size) __global__
__launch_bounds__(block_size) CUDF_KERNEL
void mixed_join(table_device_view left_table,
table_device_view right_table,
table_device_view probe,
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/join/mixed_join_kernels_semi.cu
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace cg = cooperative_groups;
#pragma GCC diagnostic ignored "-Wattributes"

template <cudf::size_type block_size, bool has_nulls>
__attribute__((visibility("hidden"))) __launch_bounds__(block_size) __global__
__launch_bounds__(block_size) CUDF_KERNEL
void mixed_join_semi(table_device_view left_table,
table_device_view right_table,
table_device_view probe,
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/join/mixed_join_size_kernels_semi.cu
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ namespace cg = cooperative_groups;
#pragma GCC diagnostic ignored "-Wattributes"

template <int block_size, bool has_nulls>
__attribute__((visibility("hidden"))) __launch_bounds__(block_size) __global__
__launch_bounds__(block_size) CUDF_KERNEL
void compute_mixed_join_output_size_semi(
table_device_view left_table,
table_device_view right_table,
Expand Down
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 3968a89

Please sign in to comment.