batch_norm_decomposition.hpp
1 // Copyright (C) 2018-2021 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #pragma once
6 
7 #include <memory>
8 
9 #include <transformations_visibility.hpp>
10 
11 #include <ngraph/ngraph.hpp>
12 
13 #include <ngraph/pass/graph_rewrite.hpp>
14 #include <ngraph/opsets/opset5.hpp>
15 
16 using namespace std;
17 
18 namespace ngraph {
19 namespace pass {
20 
21 class TRANSFORMATIONS_API BatchNormDecomposition;
22 
23 } // namespace pass
24 } // namespace ngraph
25 
26 class ngraph::pass::BatchNormDecomposition: public ngraph::pass::MatcherPass {
27 public:
28  NGRAPH_RTTI_DECLARATION;
30 };
Definition: batch_norm_decomposition.hpp:26
ngraph namespace
Definition: add_fake_quantize_fusion.hpp:14
Serializes a std::vector to a std::ostream
Definition: debug.h:35