Deprecate FusedOp class (#1758)
authorIlya Churaev <ilya.churaev@intel.com>
Fri, 14 Aug 2020 03:27:58 +0000 (06:27 +0300)
committerGitHub <noreply@github.com>
Fri, 14 Aug 2020 03:27:58 +0000 (06:27 +0300)
commitd8133824b31fcb4cdad0e9690a9e8b05f4b2780c
treed4e402c106c42abce00555068853985701592f39
parentea5bfaf8d6764a299d5538c404e194c833f27b0c
Deprecate FusedOp class (#1758)

* Deprecate FusedOps

* Try to fix windows

* Added temp headers
107 files changed:
inference-engine/src/cldnn_engine/cldnn_engine.cpp
inference-engine/src/mkldnn_plugin/mkldnn_plugin.cpp
inference-engine/src/transformations/include/transformations/convert_gelu.hpp
inference-engine/src/transformations/include/transformations/convert_opset1_to_legacy/convert_gather_to_gather_ie.hpp
inference-engine/src/transformations/src/ngraph_ops/hard_sigmoid_ie.cpp
inference-engine/tests/functional/inference_engine/cnn_network/cnn_ngraph_impl_tests.cpp
inference-engine/tests/functional/inference_engine/transformations/ngraph_depth_to_space_transform_test.cpp
inference-engine/tests/functional/inference_engine/transformations/ngraph_fq_transpose_test.cpp
inference-engine/tests/functional/inference_engine/transformations/ngraph_mode_decomposition_test.cpp
inference-engine/tests/functional/plugin/cpu/shared_tests_instances/low_precision_transformations/layer_transformation.cpp
inference-engine/tests/functional/plugin/gpu/shared_tests_instances/low_precision_transformations/layer_transformation.cpp
inference-engine/tests/functional/plugin/shared/src/low_precision_transformations/depth_to_space_transformation.cpp
ngraph/core/include/ngraph/op/clamp.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/depth_to_space.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/fake_quantize.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/fused/clamp.hpp
ngraph/core/include/ngraph/op/fused/depth_to_space.hpp
ngraph/core/include/ngraph/op/fused/fake_quantize.hpp
ngraph/core/include/ngraph/op/fused/gelu.hpp
ngraph/core/include/ngraph/op/fused/grn.hpp
ngraph/core/include/ngraph/op/fused/gru_cell.hpp
ngraph/core/include/ngraph/op/fused/hard_sigmoid.hpp
ngraph/core/include/ngraph/op/fused/lstm_cell.hpp
ngraph/core/include/ngraph/op/fused/lstm_sequence.hpp
ngraph/core/include/ngraph/op/fused/matmul.hpp
ngraph/core/include/ngraph/op/fused/mod.hpp
ngraph/core/include/ngraph/op/fused/mvn.hpp
ngraph/core/include/ngraph/op/fused/normalize_l2.hpp
ngraph/core/include/ngraph/op/fused/prelu.hpp
ngraph/core/include/ngraph/op/fused/rnn_cell.hpp
ngraph/core/include/ngraph/op/fused/selu.hpp
ngraph/core/include/ngraph/op/fused/shuffle_channels.hpp
ngraph/core/include/ngraph/op/fused/space_to_depth.hpp
ngraph/core/include/ngraph/op/fused/squared_difference.hpp
ngraph/core/include/ngraph/op/fused/squeeze.hpp
ngraph/core/include/ngraph/op/fused/unsqueeze.hpp
ngraph/core/include/ngraph/op/gelu.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/grn.hpp [moved from ngraph/core/include/ngraph/op/fused/stack.hpp with 54% similarity]
ngraph/core/include/ngraph/op/group_conv.hpp
ngraph/core/include/ngraph/op/gru_cell.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/hard_sigmoid.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/lstm_cell.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/lstm_sequence.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/matmul.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/mod.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/mvn.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/normalize_l2.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/prelu.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/rnn_cell.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/selu.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/shuffle_channels.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/space_to_depth.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/split.hpp
ngraph/core/include/ngraph/op/squared_difference.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/squeeze.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/tensor_iterator.hpp
ngraph/core/include/ngraph/op/unsqueeze.hpp [new file with mode: 0644]
ngraph/core/include/ngraph/op/util/fused_op.hpp
ngraph/core/include/ngraph/ops.hpp
ngraph/core/src/builder/reshape.cpp
ngraph/core/src/op/clamp.cpp [moved from ngraph/core/src/op/fused/clamp.cpp with 99% similarity]
ngraph/core/src/op/depth_to_space.cpp [moved from ngraph/core/src/op/fused/depth_to_space.cpp with 99% similarity]
ngraph/core/src/op/fake_quantize.cpp [moved from ngraph/core/src/op/fused/fake_quantize.cpp with 99% similarity]
ngraph/core/src/op/fused/stack.cpp [deleted file]
ngraph/core/src/op/gelu.cpp [moved from ngraph/core/src/op/fused/gelu.cpp with 97% similarity]
ngraph/core/src/op/grn.cpp [moved from ngraph/core/src/op/fused/grn.cpp with 98% similarity]
ngraph/core/src/op/group_conv.cpp
ngraph/core/src/op/gru_cell.cpp [moved from ngraph/core/src/op/fused/gru_cell.cpp with 99% similarity]
ngraph/core/src/op/hard_sigmoid.cpp [moved from ngraph/core/src/op/fused/hard_sigmoid.cpp with 98% similarity]
ngraph/core/src/op/lstm_cell.cpp [moved from ngraph/core/src/op/fused/lstm_cell.cpp with 99% similarity]
ngraph/core/src/op/lstm_sequence.cpp [moved from ngraph/core/src/op/fused/lstm_sequence.cpp with 99% similarity]
ngraph/core/src/op/matmul.cpp [moved from ngraph/core/src/op/fused/matmul.cpp with 99% similarity]
ngraph/core/src/op/mod.cpp [moved from ngraph/core/src/op/fused/mod.cpp with 97% similarity]
ngraph/core/src/op/mvn.cpp [moved from ngraph/core/src/op/fused/mvn.cpp with 99% similarity]
ngraph/core/src/op/normalize_l2.cpp [moved from ngraph/core/src/op/fused/normalize_l2.cpp with 98% similarity]
ngraph/core/src/op/prelu.cpp [moved from ngraph/core/src/op/fused/prelu.cpp with 98% similarity]
ngraph/core/src/op/rnn_cell.cpp [moved from ngraph/core/src/op/fused/rnn_cell.cpp with 99% similarity]
ngraph/core/src/op/selu.cpp [moved from ngraph/core/src/op/fused/selu.cpp with 97% similarity]
ngraph/core/src/op/shuffle_channels.cpp [moved from ngraph/core/src/op/fused/shuffle_channels.cpp with 98% similarity]
ngraph/core/src/op/space_to_depth.cpp [moved from ngraph/core/src/op/fused/space_to_depth.cpp with 99% similarity]
ngraph/core/src/op/split.cpp
ngraph/core/src/op/squared_difference.cpp [moved from ngraph/core/src/op/fused/squared_difference.cpp with 96% similarity]
ngraph/core/src/op/squeeze.cpp [moved from ngraph/core/src/op/fused/squeeze.cpp with 99% similarity]
ngraph/core/src/op/tensor_iterator.cpp
ngraph/core/src/op/unsqueeze.cpp [moved from ngraph/core/src/op/fused/unsqueeze.cpp with 98% similarity]
ngraph/core/src/op/util/activation_functions.cpp
ngraph/core/src/op/util/fused_op.cpp
ngraph/core/src/op/util/op_types.cpp
ngraph/core/src/op/util/rnn_cell_base.cpp
ngraph/core/src/pass/constant_folding_gather.cpp
ngraph/core/src/pass/nop_elimination.cpp
ngraph/core/src/validation_util.cpp
ngraph/frontend/onnx_import/src/op/gemm.cpp
ngraph/frontend/onnx_import/src/op/loop.cpp
ngraph/frontend/onnx_import/src/op/lstm.cpp
ngraph/frontend/onnx_import/src/op/mean_variance_normalization.cpp
ngraph/frontend/onnx_import/src/op/mod.cpp
ngraph/frontend/onnx_import/src/op/selu.cpp
ngraph/frontend/onnx_import/src/op/squeeze.cpp
ngraph/python/tests/__init__.py
ngraph/test/attributes.cpp
ngraph/test/eval.cpp
ngraph/test/op_eval/matmul.cpp
ngraph/test/op_is.cpp
ngraph/test/opset1.cpp
ngraph/test/runtime/op/group_conv.cpp
ngraph/test/runtime/op/group_conv.hpp