[IE CLDNN] Switch back to old TI unroller to restore correct matching of TensorIterat...
authorMikhail Letavin <mikhail.letavin@intel.com>
Tue, 8 Sep 2020 08:48:11 +0000 (11:48 +0300)
committerGitHub <noreply@github.com>
Tue, 8 Sep 2020 08:48:11 +0000 (11:48 +0300)
inference-engine/src/cldnn_engine/cldnn_engine.cpp

index 14effa2..3d9b167 100644 (file)
@@ -139,7 +139,8 @@ InferenceEngine::ICNNNetwork::Ptr clDNNEngine::CloneAndTransformNetwork(const In
         // Apply all transformations to TensorIterator body
         ti_manager.register_pass<ngraph::pass::ApplyTransformationsToTIBody>(manager);
         // Unroll will be called after all conversions
-        ti_manager.register_pass<ngraph::pass::UnrollTensorIterator>();
+        // temporarily switch back to plugin unroller from NGraph unroller until TI output names are corrected
+        // ti_manager.register_pass<ngraph::pass::UnrollTensorIterator>();
         ti_manager.run_passes(nGraphFunc);
 
         clonedNetwork = InferenceEngine::details::convertFunctionToICNNNetwork(nGraphFunc, *clonedNetwork);