Skip to content

Commit

Permalink
Merge pull request #106 from nicoleavans/osu-test-size
Browse files Browse the repository at this point in the history
Increase OSU Latency testing range
  • Loading branch information
cwpearson authored Jul 8, 2024
2 parents 3de7bdb + 00b94f1 commit d84fb80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions perf_tests/test_osu_latency_isendirecv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ void benchmark_osu_latency_MPI_isendirecv(benchmark::State &state) {
BENCHMARK(benchmark_osu_latency_KokkosComm_isendirecv)
->UseManualTime()
->Unit(benchmark::kMicrosecond)
->RangeMultiplier(2)
->Range(1, 1000);
->RangeMultiplier(8)
->Range(1, 1 << 28);
BENCHMARK(benchmark_osu_latency_MPI_isendirecv)
->UseManualTime()
->Unit(benchmark::kMicrosecond)
->RangeMultiplier(2)
->Range(1, 1000);
->RangeMultiplier(8)
->Range(1, 1 << 28);
8 changes: 4 additions & 4 deletions perf_tests/test_osu_latency_sendrecv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ void benchmark_osu_latency_MPI_sendrecv(benchmark::State &state) {
BENCHMARK(benchmark_osu_latency_KokkosComm_sendrecv)
->UseManualTime()
->Unit(benchmark::kMicrosecond)
->RangeMultiplier(2)
->Range(1, 1000);
->RangeMultiplier(8)
->Range(1, 1 << 28);
BENCHMARK(benchmark_osu_latency_MPI_sendrecv)
->UseManualTime()
->Unit(benchmark::kMicrosecond)
->RangeMultiplier(2)
->Range(1, 1000);
->RangeMultiplier(8)
->Range(1, 1 << 28);

0 comments on commit d84fb80

Please sign in to comment.