Skip to content

Commit

Permalink
Move kernel vis over to CUDF_HIDDEN
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Jul 2, 2024
1 parent a1447c7 commit 7765e61
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion cpp/src/join/mixed_join_kernel.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <cudf/ast/detail/expression_parser.hpp>
#include <cudf/detail/utilities/cuda.cuh>
#include <cudf/table/table_device_view.cuh>
#include <cudf/utilities/export.hpp>
#include <cudf/utilities/span.hpp>

#include <cooperative_groups.h>
Expand All @@ -38,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__
CUDF_HIDDEN __launch_bounds__(block_size) __global__
void mixed_join(table_device_view left_table,
table_device_view right_table,
table_device_view probe,
Expand Down
3 changes: 2 additions & 1 deletion cpp/src/join/mixed_join_kernels_semi.cu
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <cudf/ast/detail/expression_parser.hpp>
#include <cudf/detail/utilities/cuda.cuh>
#include <cudf/table/table_device_view.cuh>
#include <cudf/utilities/export.hpp>
#include <cudf/utilities/span.hpp>

#include <cub/cub.cuh>
Expand All @@ -34,7 +35,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__
CUDF_HIDDEN __launch_bounds__(block_size) __global__
void mixed_join_semi(table_device_view left_table,
table_device_view right_table,
table_device_view probe,
Expand Down
3 changes: 2 additions & 1 deletion cpp/src/join/mixed_join_size_kernel.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include <cudf/ast/detail/expression_parser.hpp>
#include <cudf/detail/utilities/cuda.cuh>
#include <cudf/table/table_device_view.cuh>
#include <cudf/utilities/export.hpp>
#include <cudf/utilities/span.hpp>

#include <cooperative_groups.h>
Expand All @@ -35,7 +36,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__
CUDF_HIDDEN __launch_bounds__(block_size) __global__
void compute_mixed_join_output_size(
table_device_view left_table,
table_device_view right_table,
Expand Down

0 comments on commit 7765e61

Please sign in to comment.