preallocate_param.cpp 897 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
#include <migraphx/preallocate_param.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/module.hpp>
#include <migraphx/make_op.hpp>
#include <migraphx/iterator_for.hpp>
#include <migraphx/ranges.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {

void preallocate_param::apply(module& m) const
{
13
    auto last = std::prev(m.end());
14
15
16
17
18
19
20
21
22
    for(auto ins : iterator_for(m))
    {
        if(ins->name() != "@param")
            continue;
        if(param != any_cast<builtin::param>(ins->get_operator()).parameter)
            continue;
        std::string id = m.name() + ":" + param;
        auto r         = m.insert_instruction(ins, model.preallocate(ins->get_shape(), id));
        m.replace_instruction(ins, r);
23
        m.move_instruction(ins, m.end());
24
    }
25
    m.remove_instructions(std::next(last), m.end());
26
27
28
29
}

} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx