Skip to content

Commit

Permalink
#5: Added better name for benchmark tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mperrinel authored and cz4rs committed Mar 9, 2023
1 parent 56ef209 commit 8be3032
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ static void run(benchmark::State& state) {
}

BENCHMARK(run<Kokkos::DefaultExecutionSpace>)
->Name("KokkosBlas_dot_mv")
->ArgNames({"m", "n", "repeat"})
->Args({100000, 5, 20})
->UseManualTime();
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ static void run(benchmark::State& state) {
}

BENCHMARK(run<Kokkos::DefaultExecutionSpace>)
->Name("KokkosBlas_dot")
->ArgNames({"m", "repeat"})
->Args({100000, 1})
->UseManualTime();
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ static void run(benchmark::State& state) {
}

BENCHMARK(run<Kokkos::DefaultExecutionSpace>)
->Name("KokkosBlas_team_dot/run<Kokkos::DefaultExecutionSpace>")
->ArgNames({"m", "repeat"})
->Args({100000, 1})
->UseManualTime();

0 comments on commit 8be3032

Please sign in to comment.