Commit 63db86bd authored by Paul's avatar Paul
Browse files

Format

parent 056318a0
...@@ -64,11 +64,11 @@ namespace { ...@@ -64,11 +64,11 @@ namespace {
MIGRAPHX_PRED_MATCHER(is_mlir_conv, instruction_ref ins) MIGRAPHX_PRED_MATCHER(is_mlir_conv, instruction_ref ins)
{ {
if (ins->name() != "convolution") if(ins->name() != "convolution")
return false; return false;
value v = ins->get_operator().to_value(); value v = ins->get_operator().to_value();
auto group = v.at("group").to<int>(); auto group = v.at("group").to<int>();
if (group != 1) if(group != 1)
return false; return false;
return true; return true;
} }
......
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