Skip to content

Commit 773e47a

Browse files
authored
gemm perf_test: print matrix sizes (kokkos#2362)
1 parent 6042bba commit 773e47a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

perf_test/blas/blas3/KokkosBlas3_gemm_standalone_perf_test.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ template <typename ExecSpace>
103103
void run(int m, int n, int k, int repeat) {
104104
using LL = Kokkos::LayoutLeft;
105105
using LR = Kokkos::LayoutRight;
106-
std::cout << "** Running GEMM experiments (" << ExecSpace::name() << ") **\n";
106+
std::cout << "** Running GEMM experiments (" << ExecSpace::name() << " m=" << m << " n=" << n << " k=" << k
107+
<< ") **\n";
107108
std::cout << "Running: A LayoutLeft, B LayoutLeft : ";
108109
runImpl<ExecSpace, LL, LL>(m, n, k, repeat);
109110
std::cout << "Running: A LayoutLeft, B LayoutRight : ";

0 commit comments

Comments
 (0)