Skip to content

Commit d169aa4

Browse files
committed
reviews
1 parent 8403e28 commit d169aa4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

cpp/tests/io/experimental/variant_extract_test.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1620,7 +1620,8 @@ TEST_F(GetVariantTypeIdTest, SlicedValuesColumn)
16201620

16211621
TEST_F(GetVariantTypeIdTest, LargeMultiRowColumn)
16221622
{
1623-
// 128 rows cycling through all types that get_variant_type_id can classify.
1623+
// 600 rows cycling through all types that get_variant_type_id can classify.
1624+
// 600 > 512 (typical block size) so the kernel exercises the multi-block grid-stride path.
16241625
auto const stream = cudf::test::get_default_stream();
16251626

16261627
struct row_spec {
@@ -1639,7 +1640,7 @@ TEST_F(GetVariantTypeIdTest, LargeMultiRowColumn)
16391640
{enc_short_string("x"), static_cast<int32_t>(LT::string)},
16401641
{enc_long_string(std::string(70, 'z')), static_cast<int32_t>(LT::string)},
16411642
};
1642-
constexpr int num_rows = 128;
1643+
constexpr int num_rows = 600;
16431644
std::vector<std::vector<uint8_t>> blobs(num_rows);
16441645
std::vector<int32_t> expected_ids(num_rows);
16451646
for (int i = 0; i < num_rows; ++i) {

0 commit comments

Comments
 (0)