Commit 7746373c authored by Khalique's avatar Khalique
Browse files

formatting

parent b9033442
...@@ -422,7 +422,6 @@ struct leaky_relu_op ...@@ -422,7 +422,6 @@ struct leaky_relu_op
auto& a = op.alpha; auto& a = op.alpha;
return [a](auto x) { return x > 0 ? x : x * a; }; return [a](auto x) { return x > 0 ? x : x * a; };
} }
}; };
template <typename Op> template <typename Op>
......
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