parse_hardsigmoid.cpp 2.44 KB
Newer Older
turneram's avatar
turneram committed
1
2
3
4
5
6
7
8
9
10
11
12
#include <migraphx/onnx/op_parser.hpp>
#include <migraphx/onnx/checks.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/make_op.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace onnx {

struct parse_hardsigmoid : op_parser<parse_hardsigmoid>
{
13
    std::vector<op_desc> operators() const { return {{"HardSigmoid"}, {"HardSwish"}}; }
turneram's avatar
turneram committed
14

15
    instruction_ref parse(const op_desc& opd,
turneram's avatar
turneram committed
16
17
18
19
20
21
                          const onnx_parser& /*parser*/,
                          const onnx_parser::node_info& info,
                          std::vector<instruction_ref> args) const
    {
        float alpha = 0.2;
        float beta  = 0.5;
22
23
24
25
26
27
28
29
        if(opd.onnx_name == "HardSwish")
        {
            alpha = 1.0 / 6.0;
        }
        else
        {
            if(contains(info.attributes, "alpha"))
                alpha = info.attributes.at("alpha").f();
turneram's avatar
turneram committed
30

31
32
33
            if(contains(info.attributes, "beta"))
                beta = info.attributes.at("beta").f();
        }
turneram's avatar
turneram committed
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

        auto input_lens = args[0]->get_shape().lens();
        auto input_type = args[0]->get_shape().type();
        auto mb_alpha   = info.add_instruction(
            migraphx::make_op("multibroadcast", {{"out_lens", input_lens}}),
            info.add_literal(migraphx::literal{migraphx::shape{input_type}, {alpha}}));
        auto mb_beta = info.add_instruction(
            migraphx::make_op("multibroadcast", {{"out_lens", input_lens}}),
            info.add_literal(migraphx::literal{migraphx::shape{input_type}, {beta}}));
        auto mb_zero = info.add_instruction(
            migraphx::make_op("multibroadcast", {{"out_lens", input_lens}}),
            info.add_literal(migraphx::literal{migraphx::shape{input_type}, {0}}));
        auto mb_one = info.add_instruction(
            migraphx::make_op("multibroadcast", {{"out_lens", input_lens}}),
            info.add_literal(migraphx::literal{migraphx::shape{input_type}, {1}}));

50
51
52
53
54
55
56
        auto mul         = info.add_instruction(migraphx::make_op("mul"), mb_alpha, args[0]);
        auto add         = info.add_instruction(migraphx::make_op("add"), mb_beta, mul);
        auto hardsigmoid = info.add_instruction(migraphx::make_op("clip"), add, mb_zero, mb_one);
        if(opd.onnx_name == "HardSwish")
            return info.add_instruction(migraphx::make_op("mul"), args[0], hardsigmoid);

        return hardsigmoid;
turneram's avatar
turneram committed
57
58
59
60
61
62
    }
};

} // namespace onnx
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx