From 83944f6b7673c97e9044b7b442ca83806fd73818 Mon Sep 17 00:00:00 2001 From: Daming Feng Date: Wed, 13 Jul 2022 10:54:38 -0500 Subject: [PATCH] minor fix in gemm client example (#328) [ROCm/composable_kernel commit: c5620ed0ca4f3784983f3802009b2633bbb69494] --- client_example/01_gemm/gemm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_example/01_gemm/gemm.cpp b/client_example/01_gemm/gemm.cpp index 9b7b7a6603..a8a6bf16c2 100644 --- a/client_example/01_gemm/gemm.cpp +++ b/client_example/01_gemm/gemm.cpp @@ -63,7 +63,7 @@ int main(int argc, char* argv[]) { // use default case } - else if(argc == 5) + else if(argc == 7) { M = std::stoi(argv[1]); N = std::stoi(argv[2]);