From b2723897989a9e2a631dc1c5e99f20bc07cb6511 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Fri, 28 Jun 2024 06:50:46 -0700 Subject: [PATCH] fix the optional ckProfiler grouped_gemm arguments (#1368) [ROCm/composable_kernel commit: 497ccb872b6a9a921c01df4dca49dac7cb242c72] --- profiler/src/profile_grouped_gemm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiler/src/profile_grouped_gemm.cpp b/profiler/src/profile_grouped_gemm.cpp index 25203d7b6c..fbf44d720f 100644 --- a/profiler/src/profile_grouped_gemm.cpp +++ b/profiler/src/profile_grouped_gemm.cpp @@ -98,8 +98,8 @@ int profile_grouped_gemm(int argc, char* argv[]) int n_iter = 10; if(argc == 17) { - n_warmup = std::stoi(argv[16]); - n_iter = std::stoi(argv[17]); + n_warmup = std::stoi(argv[15]); + n_iter = std::stoi(argv[16]); } #ifdef CK_ENABLE_FP16