Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions cpp/src/groupby/streaming_groupby/common.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,7 @@ struct n_table_comparator {
key_location_t const* key_loc; ///< {batch_id, row_in_compacted} per dense ID
size_type max_distinct_keys; ///< Threshold: idx >= max_distinct_keys is a transient batch value

#ifndef NDEBUG
__attribute__((noinline))
#endif
__device__ bool
operator()(size_type lhs, size_type rhs) const noexcept
__attribute__((noinline)) __device__ bool operator()(size_type lhs, size_type rhs) const noexcept
{
bool const lhs_is_batch = (lhs >= max_distinct_keys);
bool const rhs_is_batch = (rhs >= max_distinct_keys);
Expand Down
Loading