/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_CORE_GRAPPLER_OPTIMIZERS_CUSTOM_GRAPH_OPTIMIZER_REGISTRY_H_ #define TENSORFLOW_CORE_GRAPPLER_OPTIMIZERS_CUSTOM_GRAPH_OPTIMIZER_REGISTRY_H_ #include #include #include #include #include "tensorflow/core/grappler/optimizers/custom_graph_optimizer.h" namespace tensorflow { namespace grappler { class CustomGraphOptimizerRegistry { public: static std::unique_ptr CreateByNameOrNull( const string& name); static std::vector GetRegisteredOptimizers(); typedef std::function Creator; // Register graph optimizer which can be called during program initialization. // This class is not thread-safe. static void RegisterOptimizerOrDie(const Creator& optimizer_creator, const string& name); }; class CustomGraphOptimizerRegistrar { public: explicit CustomGraphOptimizerRegistrar( const CustomGraphOptimizerRegistry::Creator& creator, const string& name) { CustomGraphOptimizerRegistry::RegisterOptimizerOrDie(creator, name); } }; #define REGISTER_GRAPH_OPTIMIZER_AS(MyCustomGraphOptimizerClass, name) \ namespace { \ static ::tensorflow::grappler::CustomGraphOptimizerRegistrar \ MyCustomGraphOptimizerClass##_registrar( \ []() { return new MyCustomGraphOptimizerClass; }, (name)); \ } // namespace #define REGISTER_GRAPH_OPTIMIZER(MyCustomGraphOptimizerClass) \ REGISTER_GRAPH_OPTIMIZER_AS(MyCustomGraphOptimizerClass, \ #MyCustomGraphOptimizerClass) } // end namespace grappler } // end namespace tensorflow #endif // TENSORFLOW_CORE_GRAPPLER_OPTIMIZERS_CUSTOM_GRAPH_OPTIMIZER_REGISTRY_H_