Skip to content

Commit

Permalink
Merge pull request #2750 from JasonRuonanWang/table
Browse files Browse the repository at this point in the history
increase test size back to normal
  • Loading branch information
JasonRuonanWang authored Jun 6, 2021
2 parents 36284b6 + 671f246 commit dbe6297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing/adios2/engine/table/TestTableMultiRank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ TEST_F(TableEngineTest, TestTableMultiRank)
std::string filename = "TestTableMultiRank";
adios2::Params engineParams = {{"Verbose", "0"}};

size_t rows = 10;
Dims shape = {rows, 4, 8};
size_t rows = 800;
Dims shape = {rows, 8, 64};
Dims start = {0, 0, 0};
Dims count = {1, 4, 8};
Dims count = {1, 8, 64};

Writer(shape, start, count, rows, engineParams, filename);
Reader(shape, start, count, rows, engineParams, filename);
Expand Down

0 comments on commit dbe6297

Please sign in to comment.