"include/ck/config.hpp" did not exist on "970fa3e92ec4e67cfbfe1b0428e84870663ab8cd"
Commit 26a78750 authored by Paul's avatar Paul
Browse files

Formatting

parent 4603ec96
......@@ -7,8 +7,7 @@ namespace device {
void add_relu(const argument& result, const argument& arg1, const argument& arg2)
{
nary(result, arg1, arg2)(
[](auto x, auto y) { return std::max<decltype(x + y)>(0, x + y); });
nary(result, arg1, arg2)([](auto x, auto y) { return std::max<decltype(x + y)>(0, x + y); });
}
} // namespace device
......
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