From 4ac1b0698f1c75b2df5e426ae8ff614186c00dbe 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) --- 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