Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Debug build break with device_uvectors in grouped_rolling.cu (#7633)
After #7523, on `Debug` builds, one seems to see the following build error: ``` cudf/cpp/src/rolling/grouped_rolling.cu(130): error: no operator "[]" matches these operands operand types are: const cudf::groupby::detail::sort::sort_groupby_helper::index_vector [ int ] ... cudf/cpp/src/rolling/grouped_rolling.cu(130): error: no operator "[]" matches these operands operand types are: const cudf::groupby::detail::sort::sort_groupby_helper::index_vector [ unsigned long ] ``` The offending line has an `assert()` that is only compiled during `Debug` builds. This commit corrects the indexing into `device_uvector`. Authors: - MithunR (@mythrocks) Approvers: - David (@davidwendt) - Nghia Truong (@ttnghia) - Devavret Makkar (@devavret) - Karthikeyan (@karthikeyann) URL: #7633
- Loading branch information