convert_gelu.hpp
1 // Copyright (C) 2018-2021 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4 
5 #pragma once
6 
7 #include <vector>
8 #include <memory>
9 
10 #include <transformations_visibility.hpp>
11 
12 #include <ngraph/pass/graph_rewrite.hpp>
13 
14 #include "ngraph/op/gelu.hpp"
15 
16 namespace ngraph {
17 namespace pass {
18 
19 class TRANSFORMATIONS_API ConvertGELU;
20 
21 } // namespace pass
22 } // namespace ngraph
23 
24 class ngraph::pass::ConvertGELU: public ngraph::pass::MatcherPass {
25 public:
26  NGRAPH_RTTI_DECLARATION;
27  ConvertGELU();
28 };
Definition: convert_gelu.hpp:24
ngraph namespace
Definition: add_fake_quantize_fusion.hpp:14