From 990eed11b7ccf7bdb083cced292b7e4f342e0796 Mon Sep 17 00:00:00 2001 From: "Po-Yen, Chen" Date: Fri, 19 Aug 2022 16:32:37 -0400 Subject: [PATCH] Handle the case while user specify all the strides --- example/01_gemm/common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/01_gemm/common.hpp b/example/01_gemm/common.hpp index c6af9b0d2b..495a815962 100644 --- a/example/01_gemm/common.hpp +++ b/example/01_gemm/common.hpp @@ -61,7 +61,7 @@ parse_cmd_args(int argc, char* argv[], ProblemSize& problem_size, ExecutionConfi config.init_method = std::stoi(argv[2]); config.time_kernel = std::stoi(argv[3]); } - else if(argc == 12) + else if(argc == 10) { config.do_verification = std::stoi(argv[1]); config.init_method = std::stoi(argv[2]);