reshape.hpp 5.79 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
#ifndef MIGRAPHX_GUARD_OPERATORS_RESHAPE_HPP
#define MIGRAPHX_GUARD_OPERATORS_RESHAPE_HPP

#include <migraphx/check_shapes.hpp>
28
#include <migraphx/argument.hpp>
29
#include <migraphx/config.hpp>
Shucai Xiao's avatar
Shucai Xiao committed
30
#include <migraphx/value.hpp>
charlie's avatar
charlie committed
31
#include <migraphx/dyn_output.hpp>
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace op {

struct reshape
{
    std::vector<int64_t> dims;

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

Shucai Xiao's avatar
Shucai Xiao committed
47
48
    value attributes() const { return {{"require_std_shape", true}}; }

49
50
51
    std::string name() const { return "reshape"; }
    shape compute_shape(std::vector<shape> inputs) const
    {
charlie's avatar
charlie committed
52
        check_shapes{inputs, *this, true}.has(1);
53
54
        auto n_neg_dims = std::count(dims.begin(), dims.end(), -1);
        if(n_neg_dims > 1)
Shucai Xiao's avatar
Shucai Xiao committed
55
            MIGRAPHX_THROW("Reshape: Dimensions for reshape can only have one -1 dim");
charlie's avatar
charlie committed
56
57
        auto s0 = inputs[0];
        if(s0.dynamic())
58
        {
charlie's avatar
charlie committed
59
            auto dyn_dims       = s0.dyn_dims();
charlie's avatar
charlie committed
60
            int not_fixed_index = -1;
charlie's avatar
charlie committed
61
62
            // track number of fixed elements in input and output
            std::size_t num_dims_ele = 1;
charlie's avatar
charlie committed
63
            std::size_t num_dd_ele   = 1;
charlie's avatar
charlie committed
64
65
66
67
68
69
70
71
72
            for(std::size_t i = 0; i < dyn_dims.size(); ++i)
            {
                if(dyn_dims[i].is_fixed())
                {
                    num_dims_ele *= dims[i];
                    num_dd_ele *= dyn_dims[i].min;
                }
                else
                {
charlie's avatar
charlie committed
73
                    if(not_fixed_index == -1)
charlie's avatar
charlie committed
74
75
76
77
78
79
80
81
82
                    {
                        not_fixed_index = i;
                    }
                    else
                    {
                        MIGRAPHX_THROW("Reshape: Only support one non-fixed dynamic_dimension");
                    }
                }
            }
charlie's avatar
charlie committed
83
            if(num_dims_ele != num_dd_ele)
charlie's avatar
charlie committed
84
            {
charlie's avatar
charlie committed
85
86
87
                MIGRAPHX_THROW("Reshape: Number of fixed elements must match. Input: " +
                               std::to_string(num_dd_ele) +
                               " Output: " + std::to_string(num_dims_ele));
charlie's avatar
charlie committed
88
89
90
            }
            if(dims[not_fixed_index] != 0 and dims[not_fixed_index] != -1)
            {
charlie's avatar
charlie committed
91
92
                MIGRAPHX_THROW("Reshape: Non-fixed dynamic_dimension doesn't match with 0 or -1 "
                               "output dimension");
charlie's avatar
charlie committed
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
            }
            // construct output dynamic shape from dims attribute
            std::vector<shape::dynamic_dimension> output_dyn_dims = {};
            for(std::size_t i = 0; i < dims.size(); ++i)
            {
                if(i == not_fixed_index)
                {
                    output_dyn_dims.push_back(dyn_dims[not_fixed_index]);
                }
                else
                {
                    auto d = static_cast<std::size_t>(dims[i]);
                    output_dyn_dims.push_back({d, d, 0});
                }
            }
            return {s0.type(), output_dyn_dims};
109
        }
charlie's avatar
charlie committed
110
        else
111
        {
charlie's avatar
charlie committed
112
113
114
115
116
            check_shapes{inputs, *this}.standard();
            auto&& idims = inputs.front().lens();
            std::vector<std::size_t> rdims(dims.begin(), dims.end());

            for(std::size_t i = 0; i < dims.size(); i++)
117
            {
charlie's avatar
charlie committed
118
119
120
121
122
                if(dims[i] == 0)
                    rdims[i] = idims[i];

                // since rdims using size_t type, -1 is the max value
                // is size_t that cause later compuation incorrect
123
                if(dims[i] == -1)
charlie's avatar
charlie committed
124
                    rdims[i] = 1;
125
126
            }

charlie's avatar
charlie committed
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
            if(n_neg_dims > 0)
            {
                size_t missing_dim =
                    inputs.front().elements() /
                    std::accumulate(rdims.begin(), rdims.end(), 1, std::multiplies<int64_t>());
                for(std::size_t i = 0; i < rdims.size(); i++)
                {
                    if(dims[i] == -1)
                        rdims[i] = missing_dim;
                }
            }

            shape s{inputs.front().type(), rdims};
            if(s.elements() != inputs.front().elements())
                MIGRAPHX_THROW("Reshape: Wrong number of elements for reshape: reshape has " +
                               std::to_string(s.elements()) + " elements whereas the input has " +
                               std::to_string(inputs.front().elements()));
            return s;
        }
146
    }
Shucai Xiao's avatar
Shucai Xiao committed
147

charlie's avatar
charlie committed
148
    argument compute(const dyn_output& dyn_out, std::vector<argument> args) const
149
    {
charlie's avatar
charlie committed
150
        return args[0].reshape(dyn_out.computed_shape);
151
    }
Shucai Xiao's avatar
Shucai Xiao committed
152

Paul's avatar
Paul committed
153
    std::ptrdiff_t output_alias(const std::vector<shape>&) const { return 0; }
154
155
156
157
158
159
160
};

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

#endif