"vscode:/vscode.git/clone" did not exist on "93ca00828bdbab5a7a2d329194de4e1347472dfa"
layout_nhwc.cpp 2.13 KB
Newer Older
Paul's avatar
Paul committed
1
2
3
4
#include <migraphx/layout_nhwc.hpp>
#include <migraphx/module.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/iterator_for.hpp>
Paul's avatar
Paul committed
5
6
#include <migraphx/permutation.hpp>
#include <migraphx/functional.hpp>
Paul's avatar
Paul committed
7
8
9
10
11
12
13
14
#include <migraphx/ranges.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/eliminate_contiguous.hpp>
#include <migraphx/dead_code_elimination.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

Paul's avatar
Paul committed
15
template <class Predicate>
Paul's avatar
Paul committed
16
17
18
19
std::vector<instruction_ref> find_lasts(const module& m, Predicate pred)
{
    std::vector<instruction_ref> result;
    fix([&](auto self, auto ins) {
Paul's avatar
Paul committed
20
        if(pred(ins))
Paul's avatar
Paul committed
21
22
23
24
        {
            result.push_back(ins);
            return;
        }
Paul's avatar
Paul committed
25
        for(auto input : ins->inputs())
Paul's avatar
Paul committed
26
27
28
29
30
31
32
            self(input);
    })(std::prev(m.end()));
    return result;
}

void preserve_output_layout(module& m)
{
Paul's avatar
Paul committed
33
34
35
    std::vector<instruction_ref> outputs =
        find_lasts(m, [](auto ins) { return ins->get_shape().lens().size() == 4; });
    for(auto output : outputs)
Paul's avatar
Paul committed
36
37
    {
        auto permutation = find_permutation(output->get_shape());
Paul's avatar
Paul committed
38
39
        auto layout      = m.insert_instruction(
            std::next(output), make_op("layout", {{"permutation", permutation}}), output);
Paul's avatar
Paul committed
40
41
42
43
        m.replace_instruction(output, layout);
    }
}

Paul's avatar
Paul committed
44
45
46
47
void transform_convolutions(module& m)
{
    for(auto ins : iterator_for(m))
    {
Paul's avatar
Paul committed
48
        if(ins->name() != "convolution")
Paul's avatar
Paul committed
49
            continue;
Paul's avatar
Paul committed
50
        if(ins->get_shape().lens().size() != 4)
Paul's avatar
Paul committed
51
52
53
54
55
56
            continue;
        auto args = ins->inputs();
        std::transform(args.begin(), args.end(), args.begin(), [&](auto& i) {
            return m.insert_instruction(ins, make_op("layout", {{"permutation", {0, 2, 3, 1}}}), i);
        });
        auto conv = m.insert_instruction(ins, ins->get_operator(), args);
Paul's avatar
Paul committed
57
        auto c    = m.insert_instruction(ins, make_op("contiguous"), conv);
Paul's avatar
Paul committed
58
59
60
61
62
63
        m.replace_instruction(ins, c);
    }
}

void layout_nhwc::apply(module& m) const
{
Paul's avatar
Paul committed
64
    preserve_output_layout(m);
Paul's avatar
Paul committed
65
66
67
68
69
70
71
    transform_convolutions(m);
    dead_code_elimination{}.apply(m);
    eliminate_contiguous{"contiguous"}.apply(m);
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx