Removed transformations _tbl.hpp files (#1700)

This commit is contained in:
Gleb Kazantaev 2020-08-10 16:32:03 +03:00 committed by GitHub
parent 318d38770b
commit 97842212c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 47 deletions

View File

@ -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)

View File

@ -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)