gather.hpp 4.21 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2015-2022 Advanced Micro Devices, Inc. All rights reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
24
25
26
27
28
29
30
31
32
33
#ifndef MIGRAPHX_GUARD_OPERATORS_GATHER_HPP
#define MIGRAPHX_GUARD_OPERATORS_GATHER_HPP

#include <array>
#include <migraphx/check_shapes.hpp>
#include <migraphx/stringutils.hpp>
#include <migraphx/streamutils.hpp>
#include <migraphx/literal.hpp>
#include <migraphx/shape_for_each.hpp>
#include <migraphx/config.hpp>
Shucai Xiao's avatar
Shucai Xiao committed
34
35
#include <migraphx/value.hpp>
#include <migraphx/op/normalize_attribute.hpp>
36
37
38
39
40
41
42
43
44
#include <cmath>
#include <utility>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace op {

struct gather
{
Shucai Xiao's avatar
Shucai Xiao committed
45
    int64_t axis = 0;
46
47
48
49
50
51
52

    template <class Self, class F>
    static auto reflect(Self& self, F f)
    {
        return pack(f(self.axis, "axis"));
    }

Shucai Xiao's avatar
Shucai Xiao committed
53
54
55
56
57
58
59
    value attributes() const
    {
        value normalize;
        normalize["axis"] = value::array{normalize_attribute::include_min};
        return {{"normalize_axes", normalize}};
    }

60
61
    std::string name() const { return "gather"; }

Shucai Xiao's avatar
Shucai Xiao committed
62
    shape normalize_compute_shape(std::vector<shape> inputs) const
63
    {
64
        check_shapes{inputs, *this}.has(2);
65
66
        auto lens = inputs[0].lens();
        auto type = inputs[0].type();
Shucai Xiao's avatar
Shucai Xiao committed
67
        lens.erase(lens.begin() + axis);
68
69
70
        if(!inputs[1].scalar())
        {
            auto ind_lens = inputs[1].lens();
Shucai Xiao's avatar
Shucai Xiao committed
71
            lens.insert(lens.begin() + axis, ind_lens.begin(), ind_lens.end());
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
        }

        // for scalar output
        if(lens.empty())
        {
            return {type};
        }

        return {type, lens};
    }

    argument compute(const shape& output_shape, std::vector<argument> args) const
    {
        argument result{output_shape};
        // negative axis means counting dimensions from back
Shucai Xiao's avatar
Shucai Xiao committed
87
88
        auto lens                 = args[0].get_shape().lens();
        std::size_t axis_dim_size = lens[axis];
89
90
91
92
93
        // max dimension in axis
        visit_all(result, args[0])([&](auto output, auto data) {
            args[1].visit([&](auto indices) {
                if(output_shape.scalar())
                {
Shucai Xiao's avatar
Shucai Xiao committed
94
95
                    auto in_index = indices.front();
                    in_index      = (in_index < 0) ? in_index + axis_dim_size : in_index;
96
                    output[0]     = data[in_index];
97
98
99
                }
                else
                {
Shucai Xiao's avatar
Shucai Xiao committed
100
101
                    auto out_lens  = data.get_shape().lens();
                    out_lens[axis] = indices.get_shape().elements();
102
103
                    migraphx::shape out_comp_shape{data.get_shape().type(), out_lens};
                    shape_for_each(out_comp_shape, [&](const auto& out_idx) {
Shucai Xiao's avatar
Shucai Xiao committed
104
105
106
107
                        auto data_idx  = out_idx;
                        auto in_index  = indices[data_idx[axis]];
                        in_index       = (in_index < 0) ? in_index + axis_dim_size : in_index;
                        data_idx[axis] = in_index;
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
                        output[out_comp_shape.index(out_idx.begin(), out_idx.end())] =
                            data(data_idx.begin(), data_idx.end());
                    });
                }
            });
        });

        return result;
    }
};

} // namespace op
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx

#endif