"docs/vscode:/vscode.git/clone" did not exist on "3c1b4933bdfc09328d877b9f9ab5685ad6546c73"
Commit 4ac1b069 authored by Illia Silin's avatar Illia Silin Committed by Jun Liu
Browse files

fix the optional ckProfiler grouped_gemm arguments (#1368)

parent a5b1649a
...@@ -98,8 +98,8 @@ int profile_grouped_gemm(int argc, char* argv[]) ...@@ -98,8 +98,8 @@ int profile_grouped_gemm(int argc, char* argv[])
int n_iter = 10; int n_iter = 10;
if(argc == 17) if(argc == 17)
{ {
n_warmup = std::stoi(argv[16]); n_warmup = std::stoi(argv[15]);
n_iter = std::stoi(argv[17]); n_iter = std::stoi(argv[16]);
} }
#ifdef CK_ENABLE_FP16 #ifdef CK_ENABLE_FP16
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment