"src/targets/miopen/lowering.cpp" did not exist on "e1b6ce59967e26ab13e2ce0270a210e451093b7f"
Commit af86d975 authored by Paul's avatar Paul
Browse files

Formatting

parent 94ef1ad0
......@@ -23,9 +23,6 @@ struct match_const_add
}
};
void constant_propagate::apply(program& p) const
{
match::find_matches(p, match_const_add{});
}
void constant_propagate::apply(program& p) const { match::find_matches(p, match_const_add{}); }
} // namespace migraph
......@@ -29,7 +29,6 @@ void const_add1()
EXPECT(p1 == p2);
}
void const_add2()
{
migraph::program p1;
......@@ -61,9 +60,9 @@ void const_add3()
EXPECT(p1 == p2);
}
int main() {
int main()
{
const_add1();
const_add2();
const_add3();
}
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