Commit 8c18825b authored by Paul's avatar Paul
Browse files

Format

parent 2b9f612f
......@@ -460,7 +460,7 @@ struct lane
}
};
template<class Size, class F>
template <class Size, class F>
constexpr inner_storage<Size, F> make_inner_storage(Size, F f)
{
return {f};
......@@ -496,9 +496,7 @@ struct lane
template <class R, class F, class N, class... Ts>
__device__ auto inner_impl(F f, N n, Ts&&... xs) const
{
return make_inner_storage(n, [=](auto j, auto d) {
return f(xs(j, d)...);
});
return make_inner_storage(n, [=](auto j, auto d) { return f(xs(j, d)...); });
}
};
template <class Slicer>
......
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