Skip to content

Commit

Permalink
Correct issues found by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmaynard committed Jan 9, 2024
1 parent 6a53ceb commit 9f8499b
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions cpp/src/join/mixed_join_size_kernel.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,23 @@ namespace cudf {
namespace detail {
namespace cg = cooperative_groups;

#pragma GCC diagnostic ignored "-Wattributes"

template <int block_size, bool has_nulls>
__launch_bounds__(block_size) CUDF_KERNEL void compute_mixed_join_output_size(
table_device_view left_table,
table_device_view right_table,
table_device_view probe,
table_device_view build,
row_hash const hash_probe,
row_equality const equality_probe,
join_kind const join_type,
cudf::detail::mixed_multimap_type::device_view hash_table_view,
ast::detail::expression_device_view device_expression_data,
bool const swap_tables,
std::size_t* output_size,
cudf::device_span<cudf::size_type> matches_per_row)
__attribute__((visibility("hidden"))) __launch_bounds__(block_size) __global__
void compute_mixed_join_output_size(
table_device_view left_table,
table_device_view right_table,
table_device_view probe,
table_device_view build,
row_hash const hash_probe,
row_equality const equality_probe,
join_kind const join_type,
cudf::detail::mixed_multimap_type::device_view hash_table_view,
ast::detail::expression_device_view device_expression_data,
bool const swap_tables,
std::size_t* output_size,
cudf::device_span<cudf::size_type> matches_per_row)
{
// The (required) extern storage of the shared memory array leads to
// conflicting declarations between different templates. The easiest
Expand Down

0 comments on commit 9f8499b

Please sign in to comment.