Skip to content

Commit

Permalink
Remove test for bug that was fixed in CUDA 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Dec 18, 2024
1 parent 55940da commit ed8fa3b
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions cpp/tests/rolling/rolling_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -992,21 +992,6 @@ TYPED_TEST(RollingTest, SimpleDynamic)
this->run_test_col_agg(input, preceding_window, following_window, 1);
}

// this is a special test to check the volatile count variable issue (see rolling.cu for detail)
TYPED_TEST(RollingTest, VolatileCount)
{
auto const col_data = cudf::test::make_type_param_vector<TypeParam>({8, 70, 45, 20, 59, 80});
const std::vector<bool> col_mask = {1, 1, 0, 0, 1, 0};

cudf::test::fixed_width_column_wrapper<TypeParam> input(
col_data.begin(), col_data.end(), col_mask.begin());
std::vector<cudf::size_type> preceding_window({5, 9, 4, 8, 3, 3});
std::vector<cudf::size_type> following_window({1, 1, 9, 2, 8, 9});

// dynamic sizes
this->run_test_col_agg(input, preceding_window, following_window, 1);
}

// all rows are invalid
TYPED_TEST(RollingTest, AllInvalid)
{
Expand Down

0 comments on commit ed8fa3b

Please sign in to comment.