Commit 98cfc027 authored by Paul's avatar Paul
Browse files

Disable miopen fusion for now

parent d7d84f55
...@@ -314,7 +314,7 @@ template <class... Ms> ...@@ -314,7 +314,7 @@ template <class... Ms>
auto conv_bias(Ms... ms) auto conv_bias(Ms... ms)
{ {
return match::name("gpu::add")( return match::name("gpu::add")(
match::either_arg(0, 1)(match::arg(0)(bias_shape(match::output())).bind("bias"), match::either_arg(0, 1)(bias_shape(match::output()).bind("bias"),
fusable_conv(match::output()).bind("conv")), fusable_conv(match::output()).bind("conv")),
match::output(), match::output(),
ms...); ms...);
...@@ -369,8 +369,8 @@ void fuse_ops::apply(program& p) const ...@@ -369,8 +369,8 @@ void fuse_ops::apply(program& p) const
// clang-format off // clang-format off
match::find_matches(p, match::find_matches(p,
match_triadd{}, match_triadd{},
match_conv_bias_relu{ctx}, // match_conv_bias_relu{ctx},
match_conv_bias{ctx} // match_conv_bias{ctx},
match_add_relu{} match_add_relu{}
); );
// clang-format on // clang-format on
......
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