From d42420590f0071b2c55b563143ef845a6b2b231f Mon Sep 17 00:00:00 2001 From: panhaiqi Date: Wed, 14 Jun 2023 16:11:44 +0800 Subject: [PATCH] remove AUTO and MULTI in skip_config --- src/plugins/intel_cpu/src/exec_network.h | 2 -- src/plugins/intel_cpu/src/graph.cpp | 8 -------- .../template/tests/functional/skip_tests_config.cpp | 5 +---- 3 files changed, 1 insertion(+), 14 deletions(-) diff --git a/src/plugins/intel_cpu/src/exec_network.h b/src/plugins/intel_cpu/src/exec_network.h index c7764b092ab..506dc524cd5 100644 --- a/src/plugins/intel_cpu/src/exec_network.h +++ b/src/plugins/intel_cpu/src/exec_network.h @@ -76,8 +76,6 @@ protected: */ GraphGuard::Lock GetGraph() const; - bool CanProcessDynBatch(const InferenceEngine::CNNNetwork &network) const; - InferenceEngine::Parameter GetConfigLegacy(const std::string &name) const; InferenceEngine::Parameter GetMetricLegacy(const std::string &name, const GraphGuard& graph) const; diff --git a/src/plugins/intel_cpu/src/graph.cpp b/src/plugins/intel_cpu/src/graph.cpp index a212f8ebaac..1bf8114cb62 100644 --- a/src/plugins/intel_cpu/src/graph.cpp +++ b/src/plugins/intel_cpu/src/graph.cpp @@ -983,14 +983,6 @@ void Graph::PullOutputData(BlobMap &out) { outBloMem.SetData(intr_blob, false); } else { size_t size_to_copy = intr_blob.GetDescWithType()->getPaddedElementsCount(); - // used only for backward compatibility with the legacy API - if (getConfig().batchLimit && dynBatch > 0) { - if (node->isDynamicNode() && getConfig().isLegacyApi) { - IE_THROW(NotImplemented) << "[DS] not implemented dynamic batch for node with dynamic shape"; - } - - size_to_copy = std::accumulate(outDims.begin() + 1, outDims.end(), (size_t)1, std::multiplies()) * static_cast(dynBatch); - } cpu_convert(intr_blob_ptr, ext_blob_ptr, srcPrec, dstPrec, size_to_copy); } diff --git a/src/plugins/template/tests/functional/skip_tests_config.cpp b/src/plugins/template/tests/functional/skip_tests_config.cpp index 3a3b92bf361..6e09d190da0 100644 --- a/src/plugins/template/tests/functional/skip_tests_config.cpp +++ b/src/plugins/template/tests/functional/skip_tests_config.cpp @@ -118,10 +118,7 @@ std::vector disabledTestPatterns() { R"(.*ReferenceInterpolate_v11.*data_type=f16.*)", R"(.*LSTMSequence_With_Hardcoded_Refs.*ReferenceLSTMSequenceTest.*iType=f16.*)", // CVS-111443 - R"(.*eltwiseOpType=Mod_secondaryInputType=PARAMETER_opType=VECTOR_NetType=(f16|f32).*)", - // CVS-94156 AUTO and MULTI does not support - R"(.*smoke_Multi_BehaviorTests/OVCompiledModelBaseTest.canCompileModelwithBrace/targetDevice=MULTI.*)", - R"(.*smoke_Auto_BehaviorTests/OVCompiledModelBaseTest.canCompileModelwithBrace/targetDevice=AUTO.*)" + R"(.*eltwiseOpType=Mod_secondaryInputType=PARAMETER_opType=VECTOR_NetType=(f16|f32).*)" }; #ifdef _WIN32