From 9a717b700ca74dd78bb43a39917225a9ed93df72 Mon Sep 17 00:00:00 2001 From: Olivier Lapicque Date: Fri, 21 Feb 2020 11:43:55 -0800 Subject: [PATCH] test with serialized warps #2 --- cpp/tests/io/parquet_test.cu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/tests/io/parquet_test.cu b/cpp/tests/io/parquet_test.cu index 51b0ba9a021..747912833d1 100644 --- a/cpp/tests/io/parquet_test.cu +++ b/cpp/tests/io/parquet_test.cu @@ -474,10 +474,10 @@ TEST_F(ParquetChunkedWriterTest, SimpleTable) TEST_F(ParquetChunkedWriterTest, LargeTables) { - srand(31337); - auto table1 = create_random_fixed_table(512, 4096, true); - auto table2 = create_random_fixed_table(512, 8192, true); - for (int i = 0; i < 256; i++) { + for (int i = 0; i < 10; i++) { + srand(31337); + auto table1 = create_random_fixed_table(512, 4096, true); + auto table2 = create_random_fixed_table(512, 8192, true); auto full_table = cudf::experimental::concatenate({*table1, *table2});