Skip to content

Commit 0d5acee

Browse files
committed
Fix choice of algorithm
1 parent c812593 commit 0d5acee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cpp/benchmarks/algorithms_mpi.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ BENCHMARK_REGISTER_F(AlgoFixtureMPI, FbDistributeGrid)
233233
->Args({128, 10000, 4, 10, 2})
234234
->Args({1024, static_cast<t_int>(1e6), 4, 10, 2})
235235
->Args({1024, static_cast<t_int>(1e7), 4, 10, 2})
236-
->Args({1024, static_cast<t_int>(1e8), 4, 10, 1})
237-
->Args({1024, static_cast<t_int>(1e9), 4, 10, 1})
236+
->Args({1024, static_cast<t_int>(1e8), 4, 10, 2})
237+
->Args({1024, static_cast<t_int>(1e9), 4, 10, 2})
238238
->UseManualTime()
239239
->MinTime(60.0)
240240
->MinWarmUpTime(10.0)
@@ -259,8 +259,8 @@ BENCHMARK_REGISTER_F(AlgoFixtureMPI, PadmmDistributeGrid)
259259
->Args({128, 10000, 4, 10, 2})
260260
->Args({1024, static_cast<t_int>(1e6), 4, 10, 2})
261261
->Args({1024, static_cast<t_int>(1e7), 4, 10, 2})
262-
->Args({1024, static_cast<t_int>(1e8), 4, 10, 1})
263-
->Args({1024, static_cast<t_int>(1e9), 4, 10, 1})
262+
->Args({1024, static_cast<t_int>(1e8), 4, 10, 2})
263+
->Args({1024, static_cast<t_int>(1e9), 4, 10, 2})
264264
->UseManualTime()
265265
->MinTime(120.0)
266266
->MinWarmUpTime(10.0)

0 commit comments

Comments
 (0)