Commit fa16dd41 authored by Shucai Xiao's avatar Shucai Xiao
Browse files

clang format

parent 3655fc2b
...@@ -8,7 +8,8 @@ namespace device { ...@@ -8,7 +8,8 @@ namespace device {
void pow(hipStream_t stream, const argument& result, const argument& arg1, const argument& arg2) void pow(hipStream_t stream, const argument& result, const argument& arg1, const argument& arg2)
{ {
nary(stream, result, arg1, arg2)([](auto x, auto y) { return ::pow(to_hip_type(x), to_hip_type(y)); }); nary(stream, result, arg1, arg2)(
[](auto x, auto y) { return ::pow(to_hip_type(x), to_hip_type(y)); });
} }
} // namespace device } // 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