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

clang format

parent 1222d174
...@@ -45,7 +45,7 @@ struct quant_convolution ...@@ -45,7 +45,7 @@ struct quant_convolution
const shape& weights = inputs.at(1); const shape& weights = inputs.at(1);
auto t = input.type(); auto t = input.type();
if (t != shape::int8_type) if(t != shape::int8_type)
{ {
MIGRAPHX_THROW("QUANT_THROW: only accept input of type int8_t"); MIGRAPHX_THROW("QUANT_THROW: only accept input of type int8_t");
} }
......
...@@ -57,7 +57,7 @@ inline tensor_descriptor make_tensor(const migraphx::shape& s) ...@@ -57,7 +57,7 @@ inline tensor_descriptor make_tensor(const migraphx::shape& s)
return t; return t;
} }
template<class T> template <class T>
inline convolution_descriptor make_conv(const T& op) inline convolution_descriptor make_conv(const T& op)
{ {
auto c = make_obj<convolution_descriptor>(&miopenCreateConvolutionDescriptor); auto c = make_obj<convolution_descriptor>(&miopenCreateConvolutionDescriptor);
......
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