Skip to content

Commit

Permalink
Code formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
mythrocks committed Mar 18, 2021
1 parent 8309dad commit 17c951f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cpp/src/rolling/grouped_rolling.cu
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,7 @@ std::unique_ptr<column> grouped_rolling_window(table_view const& group_keys,
// 3. [0, 500, 1000] indicates two equal-sized groups: [0,500), and [500,1000).

assert(group_offsets.size() >= 2 && group_offsets.element(0, stream) == 0 &&
group_offsets.element(group_offsets.size() - 1, stream) ==
input.size() &&
group_offsets.element(group_offsets.size() - 1, stream) == input.size() &&
"Must have at least one group.");

auto preceding_calculator = [d_group_offsets = group_offsets.data(),
Expand Down

0 comments on commit 17c951f

Please sign in to comment.