convert_opset2_to_opset1.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 #include <transformations_visibility.hpp>
9 #include <ngraph/pass/graph_rewrite.hpp>
10 
11 namespace ngraph {
12 namespace pass {
13 
14 class TRANSFORMATIONS_API ConvertOpSet2ToOpSet1;
15 
16 } // namespace pass
17 } // namespace ngraph
18 
19 class ngraph::pass::ConvertOpSet2ToOpSet1: public ngraph::pass::FunctionPass {
20 public:
21  NGRAPH_RTTI_DECLARATION;
22  bool run_on_function(std::shared_ptr<ngraph::Function> f) override;
23 };
Definition: convert_opset2_to_opset1.hpp:19
ngraph namespace
Definition: add_fake_quantize_fusion.hpp:14