eliminate_layout.cpp 4.94 KB
Newer Older
Khalique Ahmed's avatar
Khalique Ahmed committed
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
#include "migraphx/instruction_ref.hpp"
#include <cstdio>
Khalique Ahmed's avatar
Khalique Ahmed committed
26
27
28
29
30
31
32
33
34
35
36
#include <migraphx/eliminate_layout.hpp>
#include <migraphx/module.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/permutation.hpp>
#include <migraphx/functional.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/eliminate_contiguous.hpp>
#include <migraphx/dead_code_elimination.hpp>
#include <migraphx/pass_manager.hpp>
37
38
#include <unordered_set>
#include <vector>
Khalique Ahmed's avatar
Khalique Ahmed committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

template <class Predicate>
std::vector<instruction_ref> find_lasts(const module& m, Predicate pred)
{
    std::vector<instruction_ref> result;
    fix([&](auto self, auto ins) {
        if(pred(ins))
        {
            result.push_back(ins);
            return;
        }
        for(auto input : ins->inputs())
            self(input);
    })(std::prev(m.end()));
    return result;
}

std::unordered_set<instruction_ref> preserve_output_layout(module& m)
{
    std::unordered_set<instruction_ref> result;
    std::vector<instruction_ref> outputs =
        find_lasts(m, [](auto ins) { return ins->get_shape().lens().size() == 4; });
    for(auto output : outputs)
    {
        auto permutation = find_permutation(output->get_shape());

Khalique Ahmed's avatar
Khalique Ahmed committed
68
69
        auto layout_ins = m.insert_instruction(
            std::next(output), make_op("layout", {{"permutation", permutation}}), output);
Khalique Ahmed's avatar
Khalique Ahmed committed
70

Khalique Ahmed's avatar
Khalique Ahmed committed
71
72
        auto output1 = m.insert_instruction(
            layout_ins, make_op("allocate", {{"shape", to_value(layout_ins->get_shape())}}));
Khalique Ahmed's avatar
Khalique Ahmed committed
73
74
75
76
77
78
79
80
81
82
        std::vector<instruction_ref> refs = layout_ins->inputs();
        refs.push_back(output1);

        auto layout = m.replace_instruction(
            layout_ins,
            make_op("gpu::precompile_op", {{"op", to_value(layout_ins->get_operator())}}),
            refs,
            layout_ins->module_inputs());

        result.insert(layout);
Khalique Ahmed's avatar
Khalique Ahmed committed
83
        // m.debug_print(layout);
Khalique Ahmed's avatar
Khalique Ahmed committed
84
85
86
87
    }
    return result;
}

88
void remove_layout(module& m)
Khalique Ahmed's avatar
Khalique Ahmed committed
89
90
91
{
    for(auto ins : iterator_for(m))
    {
92
        if(ins->name() != "layout")
Khalique Ahmed's avatar
Khalique Ahmed committed
93
            continue;
94
95
96
97
98
        auto in_shape = ins->inputs().front()->get_shape();
        if(in_shape == ins->get_shape())
            m.replace_instruction(ins, ins->inputs().front());
    }
}
Khalique Ahmed's avatar
Khalique Ahmed committed
99

100
101
102
103
104
105
106
107
108
109
// std::vector<instruction_ref> find_convs(const module& m)
// {
//     std::vector<instruction_ref> convs;
//     for(auto ins : iterator_for(m))
//     {
//         if(ins->name() == "gpu::miopen_op")
//             convs.push_back(ins);
//     }
//     return convs;
// }
Khalique Ahmed's avatar
Khalique Ahmed committed
110

Khalique Ahmed's avatar
Khalique Ahmed committed
111
112
113
114
115
116
void remove_layout(module& m, const std::unordered_set<instruction_ref>& output_layouts)
{
    for(auto ins : iterator_for(m))
    {
        if(ins->name() != "gpu::precompile_op")
            continue;
117

Khalique Ahmed's avatar
Khalique Ahmed committed
118
119
        auto precompile_op = ins->get_operator();
        auto val           = precompile_op.to_value();
120

Khalique Ahmed's avatar
Khalique Ahmed committed
121
122
123
124
125
126
127
128
129
130
131
132
133
134
        if(val["op"].at("name").to<std::string>() != "layout")
        {
            // std::cout << val["op"].at("name").to<std::string>() << std::endl;
            continue;
        }
        // m.debug_print(ins);
        if(ins->get_shape() != ins->inputs().front()->get_shape())
        {
            // std::cout << ins->get_shape() << " " << ins->inputs().front()->get_shape() <<
            // std::endl;
            continue;
        }
        if(contains(output_layouts, ins))
            continue;
135

Khalique Ahmed's avatar
Khalique Ahmed committed
136
137
138
        m.replace_instruction(ins, ins->inputs().front());
    }
}
Khalique Ahmed's avatar
Khalique Ahmed committed
139
140
141

void eliminate_layout::apply(module_pass_manager& mpm) const
{
Khalique Ahmed's avatar
Khalique Ahmed committed
142
    std::unordered_set<instruction_ref> output_layouts = preserve_output_layout(mpm.get_module());
Khalique Ahmed's avatar
Khalique Ahmed committed
143
    remove_layout(mpm.get_module(), output_layouts);
Khalique Ahmed's avatar
Khalique Ahmed committed
144
    // find_convs(mpm.get_module()));
Khalique Ahmed's avatar
Khalique Ahmed committed
145
    // remove_layout(mpm.get_module());
Khalique Ahmed's avatar
Khalique Ahmed committed
146
147
148
149
150
    mpm.run_pass(dead_code_elimination{});
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx