"ts/nni_manager/core/sqlDatabase.ts" did not exist on "781cea26c3e4f3da0b63bea8cfaba1ed96c0338d"
Commit 70641651 authored by Paul's avatar Paul
Browse files

Formatting

parent d55d8d24
...@@ -13,8 +13,8 @@ auto lit_broadcast() { return match::any_of(match::is_constant(), match::name("b ...@@ -13,8 +13,8 @@ auto lit_broadcast() { return match::any_of(match::is_constant(), match::name("b
auto not_lit_broadcast() { return match::none_of(match::is_constant(), match::name("broadcast")); } auto not_lit_broadcast() { return match::none_of(match::is_constant(), match::name("broadcast")); }
auto op_lit_broadcast(std::string op, std::string x, std::string y) auto op_lit_broadcast(std::string op, std::string x, std::string y)
{ {
return match::name(std::move(op))(match::either_arg(0, 1)(lit_broadcast().bind(std::move(x)), return match::name(std::move(op))(match::either_arg(0, 1)(
not_lit_broadcast().bind(std::move(y)))); lit_broadcast().bind(std::move(x)), not_lit_broadcast().bind(std::move(y))));
} }
auto conv_const_weights() auto conv_const_weights()
......
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