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 Jul 2, 2024
1 parent 7765e61 commit cd1d047
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions cpp/src/join/mixed_join_size_kernel.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,19 @@ namespace cg = cooperative_groups;
#pragma GCC diagnostic ignored "-Wattributes"

template <int block_size, bool has_nulls>
CUDF_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)
CUDF_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 cd1d047

Please sign in to comment.