argmax.hpp 2.41 KB
Newer Older
1
2
3
4
5
#ifndef MIGRAPHX_GUARD_OPERATORS_ARGMAX_HPP
#define MIGRAPHX_GUARD_OPERATORS_ARGMAX_HPP

#include <migraphx/operation.hpp>
#include <migraphx/check_shapes.hpp>
6
#include <migraphx/par_dfor.hpp>
7
8
9
10
11
12
13
14
#include <migraphx/config.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace op {

struct argmax
{
15
    int64_t axis = 0;
16
17
18
19

    template <class Self, class F>
    static auto reflect(Self& self, F f)
    {
20
        return pack(f(self.axis, "axis"));
21
22
23
24
25
26
27
    }

    std::string name() const { return "argmax"; }

    shape compute_shape(std::vector<shape> inputs) const
    {
        check_shapes{inputs, *this}.has(1).standard();
Shucai Xiao's avatar
Shucai Xiao committed
28
        auto lens     = inputs[0].lens();
29
        int64_t n_dim = static_cast<int64_t>(lens.size());
30
        if(axis >= n_dim || axis < -n_dim)
31
32
33
34
        {
            MIGRAPHX_THROW("ARGMAX: axis is out of range.");
        }

35
36
37
        int64_t tuned_axis = (axis < 0) ? axis + n_dim : axis;

        lens[tuned_axis] = 1;
38
39
40

        return {shape::int64_type, lens};
    }
41
42

    template <class T>
43
44
45
46
    int64_t calc_argmax(T& input,
                        int64_t tuned_axis,
                        std::vector<std::size_t>& indices,
                        size_t item_num) const
47
48
49
50
51
    {
        auto max_val      = input(indices.begin(), indices.end());
        int64_t max_index = 0;
        for(std::size_t i = 1; i < item_num; ++i)
        {
52
53
            indices[tuned_axis] = i;
            auto cur_val        = input(indices.begin(), indices.end());
Shucai Xiao's avatar
Shucai Xiao committed
54
            if(max_val < cur_val)
55
            {
Shucai Xiao's avatar
Shucai Xiao committed
56
                max_val   = cur_val;
57
58
59
60
61
62
63
64
65
66
                max_index = i;
            }
        }

        return max_index;
    }

    argument compute(const shape& output_shape, std::vector<argument> args) const
    {
        argument result{output_shape};
67
68
69
        auto n_dim          = args.front().get_shape().lens().size();
        auto tuned_axis     = axis < 0 ? axis + n_dim : axis;
        auto batch_item_num = args.front().get_shape().lens()[tuned_axis];
70
71
72
73
74

        result.visit([&](auto output) {
            args[0].visit([&](auto input) {
                par_for(output_shape.elements(), [&](auto i) {
                    auto data_idx = output_shape.multi(i);
75
                    output[i]     = this->calc_argmax(input, tuned_axis, data_idx, batch_item_num);
76
77
78
79
80
81
                });
            });
        });

        return result;
    }
82
83
84
85
86
87
88
};

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

#endif