From 7e4539f6df1f997ab8af2fbf2adbbeabc7f79f27 Mon Sep 17 00:00:00 2001 From: dmitrygo Date: Fri, 29 Oct 2021 14:16:33 +0300 Subject: [PATCH] [CPU][WA] Disabled Deconvolution + post ops fusing optimization --- src/plugins/intel_cpu/src/graph_optimizer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/intel_cpu/src/graph_optimizer.cpp b/src/plugins/intel_cpu/src/graph_optimizer.cpp index 859e9f73e01..c83f6fc13fa 100644 --- a/src/plugins/intel_cpu/src/graph_optimizer.cpp +++ b/src/plugins/intel_cpu/src/graph_optimizer.cpp @@ -73,9 +73,9 @@ void GraphOptimizer::ApplyCommonGraphOptimizations(Graph &graph) { MergeConvertAndScaleShift(graph); graph.RemoveDroppedNodes(); - OV_ITT_SCOPE_NEXT(FIRST_INFERENCE, taskChain, "FuseDeconvolutionAndSimpleOperation"); - FuseDeconvolutionAndSimpleOperation(graph); - graph.RemoveDroppedNodes(); +// OV_ITT_SCOPE_NEXT(FIRST_INFERENCE, taskChain, "FuseDeconvolutionAndSimpleOperation"); +// FuseDeconvolutionAndSimpleOperation(graph); +// graph.RemoveDroppedNodes(); OV_ITT_SCOPE_NEXT(FIRST_INFERENCE, taskChain, "FuseBroadcastAndEltwise"); FuseBroadcastAndEltwise(graph);