Skip to content

Commit

Permalink
gemm perf_test: print matrix sizes (kokkos#2362)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson authored Oct 9, 2024
1 parent 6042bba commit 773e47a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ template <typename ExecSpace>
void run(int m, int n, int k, int repeat) {
using LL = Kokkos::LayoutLeft;
using LR = Kokkos::LayoutRight;
std::cout << "** Running GEMM experiments (" << ExecSpace::name() << ") **\n";
std::cout << "** Running GEMM experiments (" << ExecSpace::name() << " m=" << m << " n=" << n << " k=" << k
<< ") **\n";
std::cout << "Running: A LayoutLeft, B LayoutLeft : ";
runImpl<ExecSpace, LL, LL>(m, n, k, repeat);
std::cout << "Running: A LayoutLeft, B LayoutRight : ";
Expand Down

0 comments on commit 773e47a

Please sign in to comment.