Commit 6c057881 authored by Paul's avatar Paul
Browse files

Formatting

parent e29e613f
...@@ -11,11 +11,7 @@ inline namespace MIGRAPHX_INLINE_NS { ...@@ -11,11 +11,7 @@ inline namespace MIGRAPHX_INLINE_NS {
namespace gpu { namespace gpu {
namespace device { namespace device {
argument gather(hipStream_t stream, argument gather(hipStream_t stream, argument result, argument arg1, argument arg2, int axis)
argument result,
argument arg1,
argument arg2,
int axis)
{ {
auto axis_index = (axis < 0) ? (axis + arg1.get_shape().lens().size()) : axis; auto axis_index = (axis < 0) ? (axis + arg1.get_shape().lens().size()) : axis;
auto& input_shape = arg1.get_shape(); auto& input_shape = arg1.get_shape();
......
...@@ -10,11 +10,7 @@ inline namespace MIGRAPHX_INLINE_NS { ...@@ -10,11 +10,7 @@ inline namespace MIGRAPHX_INLINE_NS {
namespace gpu { namespace gpu {
namespace device { namespace device {
argument gather(hipStream_t stream, argument gather(hipStream_t stream, argument result, argument arg1, argument arg2, int axis);
argument result,
argument arg1,
argument arg2,
int axis);
} // namespace device } // namespace device
} // namespace gpu } // namespace gpu
......
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