Skip to content

Commit

Permalink
test with serialized warps rapidsai#2
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierNV committed Feb 21, 2020
1 parent efdfc87 commit 9a717b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cpp/tests/io/parquet_test.cu
Original file line number Diff line number Diff line change
Expand Up @@ -474,10 +474,10 @@ TEST_F(ParquetChunkedWriterTest, SimpleTable)

TEST_F(ParquetChunkedWriterTest, LargeTables)
{
srand(31337);
auto table1 = create_random_fixed_table<int>(512, 4096, true);
auto table2 = create_random_fixed_table<int>(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<int>(512, 4096, true);
auto table2 = create_random_fixed_table<int>(512, 8192, true);

auto full_table = cudf::experimental::concatenate({*table1, *table2});

Expand Down

0 comments on commit 9a717b7

Please sign in to comment.