Skip to content

Commit

Permalink
Add a benchmark for LayoutRight
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Mar 20, 2023
1 parent 83f5107 commit f1d33d5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions perf_test/blas/blas2/KokkosBlas2_gemv_perf_test_benchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,8 @@ BENCHMARK(KokkosBlas2_gemv<double, Kokkos::LayoutLeft>)
->ArgNames({"m", "n", Kokkos::DefaultExecutionSpace::name()})
->Args({5000, 5000, 1})
->UseManualTime();

BENCHMARK(KokkosBlas2_gemv<double, Kokkos::LayoutRight>)
->ArgNames({"m", "n", Kokkos::DefaultExecutionSpace::name()})
->Args({5000, 5000, 1})
->UseManualTime();

0 comments on commit f1d33d5

Please sign in to comment.