transpose.hpp 3.08 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
#ifndef MIGRAPHX_GUARD_OPERATORS_TRANSPOSE_HPP
#define MIGRAPHX_GUARD_OPERATORS_TRANSPOSE_HPP

#include <array>
#include <migraphx/check_shapes.hpp>
29
30
#include <migraphx/argument.hpp>
#include <migraphx/functional.hpp>
31
#include <migraphx/config.hpp>
32
#include <migraphx/lifetime.hpp>
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <cmath>
#include <utility>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace op {

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

    template <class Self, class F>
    static auto reflect(Self& self, F f)
    {
47
        return pack(f(self.dims, "permutation"));
48
49
50
51
52
53
54
55
56
57
    }

    std::string name() const { return "transpose"; }
    shape compute_shape(std::vector<shape> inputs) const
    {
        check_shapes{inputs, *this}.has(1);
        auto input         = inputs.at(0);
        auto input_lens    = input.lens();
        auto input_strides = input.strides();
        auto t             = input.type();
58

Shucai Xiao's avatar
Shucai Xiao committed
59
        if(dims.size() != input_lens.size())
60
61
62
        {
            MIGRAPHX_THROW("Permutation has wrong number of axes");
        }
Shucai Xiao's avatar
Shucai Xiao committed
63
        std::vector<int64_t> axes(dims.size());
64
        std::iota(axes.begin(), axes.end(), 0);
Shucai Xiao's avatar
Shucai Xiao committed
65
        if(!std::is_permutation(axes.begin(), axes.end(), dims.begin()))
66
        {
Shucai Xiao's avatar
Shucai Xiao committed
67
            MIGRAPHX_THROW("TRANSPOSE: Invalid permutation");
68
69
70
71
72
        }
        std::vector<size_t> output_lens(input_lens.size());
        std::vector<size_t> output_strides(input_lens.size());
        for(std::size_t i = 0; i < output_lens.size(); i++)
        {
Shucai Xiao's avatar
Shucai Xiao committed
73
74
            output_lens[i]    = input_lens[dims[i]];
            output_strides[i] = input_strides[dims[i]];
75
76
77
78
79
        }
        return {t, output_lens, output_strides};
    }
    argument compute(shape output_shape, std::vector<argument> args) const
    {
Paul Fultz II's avatar
Paul Fultz II committed
80
        return args[0].reshape(output_shape);
81
    }
Paul's avatar
Paul committed
82
    std::ptrdiff_t output_alias(const std::vector<shape>&) const { return 0; }
83
84
85
86
87
88
89
};

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

#endif