pass_config.hpp
1 //*****************************************************************************
2 // Copyright 2017-2020 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //*****************************************************************************
16 
17 #pragma once
18 
19 #include <map>
20 #include <string>
21 
22 #include <ngraph/ngraph_visibility.hpp>
23 
24 namespace ngraph
25 {
26  namespace pass
27  {
28  class PassConfig;
29  }
30 }
31 
32 class NGRAPH_API ngraph::pass::PassConfig
33 {
34 public:
35  PassConfig();
36  const std::map<std::string, bool>& get_enables() const { return m_pass_enables; }
37  void set_pass_enable(const std::string& name, bool enable);
38  bool get_pass_enable(const std::string& name) const;
39  const std::map<std::string, bool>& get_pass_attributes() const { return m_pass_attributes; }
40  void set_pass_attribute(const std::string& name, bool enable);
41  bool get_pass_attribute(const std::string& name) const;
42 
43 private:
44  std::map<std::string, bool> m_pass_enables;
45  std::map<std::string, bool> m_pass_attributes;
46 };
ngraph
The Intel nGraph C++ API.
Definition: attribute_adapter.hpp:28