#include #include #include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { namespace gpu { shape hip_gather::compute_shape(std::vector inputs) const { inputs.pop_back(); return op.compute_shape(inputs); } argument hip_gather::compute(context& ctx, const shape& output_shape, const std::vector& args) const { return device::gather(ctx.get_stream().get(), output_shape, args, op.axis); } } // namespace gpu } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx