hswish_decomposition.hpp
1 // Copyright (C) 2018-2021 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #pragma once
6 
7 #include <transformations_visibility.hpp>
8 #include <ngraph/pass/graph_rewrite.hpp>
9 
10 namespace ngraph {
11 namespace pass {
12 
13 class TRANSFORMATIONS_API HSwishDecomposition;
14 
15 } // namespace pass
16 } // namespace ngraph
17 
18 /**
19  * @ingroup ie_transformation_common_api
20  * @brief HSwishDecomposition transformation into sub-graph x * (min(Relu(x + 3), 6) * const(1/6).
21  */
22 class ngraph::pass::HSwishDecomposition: public ngraph::pass::MatcherPass {
23 public:
24  NGRAPH_RTTI_DECLARATION;
26 };
HSwishDecomposition transformation into sub-graph x * (min(Relu(x + 3), 6) * const(1/6).
Definition: hswish_decomposition.hpp:22
ngraph namespace
Definition: add_fake_quantize_fusion.hpp:14