Commit dd11be6f authored by Paul's avatar Paul
Browse files

Formatting

parent b987e44d
...@@ -239,7 +239,7 @@ struct miopen_conv_bias_relu ...@@ -239,7 +239,7 @@ struct miopen_conv_bias_relu
} }
}; };
template<class... Ms> template <class... Ms>
auto conv_bias(Ms... ms) auto conv_bias(Ms... ms)
{ {
return match::name("gpu::add")( return match::name("gpu::add")(
...@@ -277,10 +277,7 @@ struct match_conv_bias ...@@ -277,10 +277,7 @@ struct match_conv_bias
struct match_conv_bias_relu struct match_conv_bias_relu
{ {
context* ctx = nullptr; context* ctx = nullptr;
auto matcher() const auto matcher() const { return match::name("gpu::relu")(conv_bias()); }
{
return match::name("gpu::relu")(conv_bias());
}
void apply(program& p, match::matcher_result r) const void apply(program& p, match::matcher_result r) const
{ {
......
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