Skip to content

Commit

Permalink
Fix mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
PointKernel committed Sep 30, 2024
1 parent 2e30d9b commit c242475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/groupby/hash/compute_aggregations.cu
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ constexpr size_t get_previous_multiple_of_8(size_t number) { return number / 8 *

} // namespace

constexpr std::pair<bool, size_t> can_use_shmem_aggs(int grid_size) noexcept
std::pair<bool, size_t> can_use_shmem_aggs(int grid_size) noexcept
{
auto const active_blocks_per_sm =
cudf::util::div_rounding_up_safe(grid_size, cudf::detail::num_multiprocessors());
Expand Down

0 comments on commit c242475

Please sign in to comment.