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

clang format

parent 5be2964e
...@@ -64,7 +64,7 @@ shape miopen_quant_gemm::compute_shape(const std::vector<shape>& inputs) const ...@@ -64,7 +64,7 @@ shape miopen_quant_gemm::compute_shape(const std::vector<shape>& inputs) const
{ {
if(arg_b.empty()) if(arg_b.empty())
{ {
auto *p_this = const_cast<miopen_quant_gemm*>(this); auto* p_this = const_cast<miopen_quant_gemm*>(this);
p_this->arg_b = allocate_gpu(inputs[1]); p_this->arg_b = allocate_gpu(inputs[1]);
} }
} }
...@@ -73,7 +73,7 @@ shape miopen_quant_gemm::compute_shape(const std::vector<shape>& inputs) const ...@@ -73,7 +73,7 @@ shape miopen_quant_gemm::compute_shape(const std::vector<shape>& inputs) const
{ {
if(arg_a.empty()) if(arg_a.empty())
{ {
auto *p_this = const_cast<miopen_quant_gemm*>(this); auto* p_this = const_cast<miopen_quant_gemm*>(this);
p_this->arg_a = allocate_gpu(inputs[0]); p_this->arg_a = allocate_gpu(inputs[0]);
} }
} }
......
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