#include #include #include #include #include namespace migraphx { inline namespace MIGRAPHX_INLINE_NS { namespace tf { struct parse_relu6 : op_parser { bool transpose() const { return true; } std::vector operators() const { return {{"Relu6"}}; } instruction_ref parse(const op_desc& /*opd*/, const tf_parser& /*parser*/, const tf_parser::node_info& info, std::vector args) const { auto min_val = info.add_literal(0.0f); auto max_val = info.add_literal(6.0f); return info.add_common_op("clip", args[0], min_val, max_val); } }; } // namespace tf } // namespace MIGRAPHX_INLINE_NS } // namespace migraphx