Commit ae21ecbf authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 6835a32e
...@@ -91,7 +91,7 @@ argument miopen_quant_gemm::compute(context& ctx, ...@@ -91,7 +91,7 @@ argument miopen_quant_gemm::compute(context& ctx,
assert(transb or (ldb % 4 == 0)); assert(transb or (ldb % 4 == 0));
// need to pack B in thi scenario // need to pack B in thi scenario
if (!transb) if(!transb)
{ {
int nb = 4; int nb = 4;
for(int i_m = 0; i_m < m; i_m++) for(int i_m = 0; i_m < m; i_m++)
...@@ -104,9 +104,8 @@ argument miopen_quant_gemm::compute(context& ctx, ...@@ -104,9 +104,8 @@ argument miopen_quant_gemm::compute(context& ctx,
} }
// need to pack A in this scenario // need to pack A in this scenario
if (transa) if(transa)
{ {
} }
auto num_matrices = std::accumulate( auto num_matrices = std::accumulate(
......
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