parse_relu6.cpp 896 Bytes
Newer Older
kahmed10's avatar
kahmed10 committed
1
2
3
4
5
6
7
8
9
10
11
12
#include <migraphx/tf/op_parser.hpp>
#include <migraphx/tf/tf_parser.hpp>
#include <migraphx/ranges.hpp>
#include <migraphx/instruction.hpp>
#include <migraphx/make_op.hpp>

namespace migraphx {
inline namespace MIGRAPHX_INLINE_NS {
namespace tf {

struct parse_relu6 : op_parser<parse_relu6>
{
kahmed10's avatar
kahmed10 committed
13
    bool transpose() const { return true; }
kahmed10's avatar
kahmed10 committed
14
15
16
17
18
19
20
    std::vector<op_desc> operators() const { return {{"Relu6"}}; }

    instruction_ref parse(const op_desc& /*opd*/,
                          const tf_parser& /*parser*/,
                          const tf_parser::node_info& info,
                          std::vector<instruction_ref> args) const
    {
21
22
        auto min_val = info.add_literal(0.0f);
        auto max_val = info.add_literal(6.0f);
kahmed10's avatar
kahmed10 committed
23

24
        return info.add_common_op("clip", args[0], min_val, max_val);
kahmed10's avatar
kahmed10 committed
25
26
27
28
29
30
    }
};

} // namespace tf
} // namespace MIGRAPHX_INLINE_NS
} // namespace migraphx