"server/internal/vscode:/vscode.git/clone" did not exist on "e41c4cbea722e40f8e346e5a6c4344a8f47d06d9"
Commit 05f60267 authored by Paul's avatar Paul
Browse files

Formatting

parent 947ede80
......@@ -7,7 +7,8 @@ namespace device {
void add_relu(argument result, argument arg1, argument arg2)
{
nary_standard(std::move(result), std::move(arg1), std::move(arg2))([](auto x, auto y) { return max(0, x + y); });
nary_standard(std::move(result), std::move(arg1), std::move(arg2))(
[](auto x, auto y) { return max(0, x + y); });
}
} // namespace device
......
......@@ -42,15 +42,12 @@ auto nary_nonstandard_impl(F f, argument result, Arguments... args)
});
});
});
}
template <class... Arguments>
auto nary_nonstandard(argument result, Arguments... args)
{
return [=](auto f) {
return nary_nonstandard_impl(f, result, args...);
};
return [=](auto f) { return nary_nonstandard_impl(f, result, args...); };
}
template <class... Arguments>
......
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