Skip to content

Commit

Permalink
Reduce Table tests from 10k rows to 1k rows
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck Atkins committed Feb 20, 2020
1 parent 59fc6c2 commit 54d01bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testing/adios2/engine/table/TestTableMultiRank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ TEST_F(TableEngineTest, TestTableMultiRank)
adios2::Params engineParams = {{"Verbose", "0"},
{"RowsPerAggregatorBuffer", "400"}};

size_t rows = 10000;
size_t rows = 1000;
Dims shape = {rows, 1, 128};
Dims start = {0, 0, 0};
Dims count = {1, 1, 128};
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/engine/table/TestTableSingleRank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ TEST_F(TableEngineTest, TestTableSingleRank)
adios2::Params engineParams = {{"Verbose", "0"},
{"RowsPerAggregatorBuffer", "400"}};

size_t rows = 10000;
size_t rows = 1000;
Dims shape = {rows, 1, 128};
Dims start = {0, 0, 0};
Dims count = {1, 1, 128};
Expand Down

0 comments on commit 54d01bc

Please sign in to comment.