Removed transformations _tbl.hpp files (#1700)
authorGleb Kazantaev <gleb.kazantaev@intel.com>
Mon, 10 Aug 2020 13:32:03 +0000 (16:32 +0300)
committerGitHub <noreply@github.com>
Mon, 10 Aug 2020 13:32:03 +0000 (16:32 +0300)
inference-engine/src/transformations/include/transformations/common_optimizations/common_optimizations_tbl.hpp [deleted file]
inference-engine/src/transformations/include/transformations/convert_opset3_to_opset2/convert_opset3_to_opset2_tbl.hpp [deleted file]

diff --git a/inference-engine/src/transformations/include/transformations/common_optimizations/common_optimizations_tbl.hpp b/inference-engine/src/transformations/include/transformations/common_optimizations/common_optimizations_tbl.hpp
deleted file mode 100644 (file)
index e15aa1a..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (C) 2020 Intel Corporation
-// SPDX-License-Identifier: Apache-2.0
-//
-
-#ifndef NGRAPH_PASS
-#warning "NGRAPH_PASS is not defined"
-#define NGRAPH_PASS(A, B)
-#endif
-
-// To register new pass you need to define NGRAPH_PASS
-// Usage example:
-//   ngraph::pass:Manager pm;
-//   #define NGRAPH_PASS(NAME, NAMESPACE)   pm.register_pass<NAMESPACE::NAME>();
-//   #include <transformations/transformations_tbl.hpp>
-//   #undef NGRAPH_PASS
-
-// This pass must be called first in pipeline
-NGRAPH_PASS(InitNodeInfo, ::ngraph::pass)
-NGRAPH_PASS(RemoveFilteringBoxesBySize, ::ngraph::pass) // Resolves dynamism (replaces NonZero), CF needed
-NGRAPH_PASS(ConstantFolding, ::ngraph::pass)
-NGRAPH_PASS(StridedSliceOptimization, ::ngraph::pass) // depends on CF
-NGRAPH_PASS(NopElimination, ::ngraph::pass) // may introduce fake dynamism
-NGRAPH_PASS(AlgebraicSimplification, ::ngraph::pass) // may introduce fake dynamism
-NGRAPH_PASS(ConstantFolding, ::ngraph::pass)
-NGRAPH_PASS(ConvertScatterElementsToScatter, ::ngraph::pass) // partially depends on CF
-NGRAPH_PASS(DepthToSpaceFusion, ::ngraph::pass)
diff --git a/inference-engine/src/transformations/include/transformations/convert_opset3_to_opset2/convert_opset3_to_opset2_tbl.hpp b/inference-engine/src/transformations/include/transformations/convert_opset3_to_opset2/convert_opset3_to_opset2_tbl.hpp
deleted file mode 100644 (file)
index 426858d..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (C) 2020 Intel Corporation
-// SPDX-License-Identifier: Apache-2.0
-//
-
-#ifndef NGRAPH_PASS
-#warning "NGRAPH_PASS is not defined"
-#define NGRAPH_PASS(A, B)
-#endif
-
-// To register new pass you need to define NGRAPH_PASS
-// Usage example:
-//   ngraph::pass:Manager pm;
-//   #define NGRAPH_PASS(NAME, NAMESPACE)   pm.register_pass<NAMESPACE::NAME>();
-//   #include <transformations/transformations_tbl.hpp>
-//   #undef NGRAPH_PASS
-
-NGRAPH_PASS(ConvertBroadcast3, ::ngraph::pass)
-NGRAPH_PASS(ConvertNMS1ToNMS3, ::ngraph::pass)
-NGRAPH_PASS(ConvertShapeOf3, ::ngraph::pass)
-NGRAPH_PASS(ConvertShuffleChannels3, ::ngraph::pass)
-NGRAPH_PASS(ConvertTopK3, ::ngraph::pass)