Commit fe027ba3 authored by Chao Liu's avatar Chao Liu
Browse files

format

parent 615fb487
...@@ -63,10 +63,10 @@ int profile_gemm(int argc, char* argv[]) ...@@ -63,10 +63,10 @@ int profile_gemm(int argc, char* argv[])
const int N = std::stoi(argv[9]); const int N = std::stoi(argv[9]);
const int K = std::stoi(argv[10]); const int K = std::stoi(argv[10]);
const int StrideA = std::stoi(argv[11]); const int StrideA = std::stoi(argv[11]);
const int StrideB = std::stoi(argv[12]); const int StrideB = std::stoi(argv[12]);
const int StrideC = std::stoi(argv[13]); const int StrideC = std::stoi(argv[13]);
int KBatch = 1; int KBatch = 1;
if(argc == 15) if(argc == 15)
KBatch = std::stoi(argv[14]); KBatch = std::stoi(argv[14]);
......
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