From 5e2f424fd066cd9b397d6eeff5f81ebd3b29f31d Mon Sep 17 00:00:00 2001 From: Nadezhda Ageeva Date: Thu, 6 Apr 2023 21:19:37 +0400 Subject: [PATCH] [HETERO] Enable smoke_Hetero_CachingSupportCase tests (#16711) --- src/plugins/hetero/executable_network.cpp | 3 ++- .../functional/shared_tests_instances/skip_tests_config.cpp | 3 --- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/plugins/hetero/executable_network.cpp b/src/plugins/hetero/executable_network.cpp index a2354adfb2d..344e7085eb8 100644 --- a/src/plugins/hetero/executable_network.cpp +++ b/src/plugins/hetero/executable_network.cpp @@ -592,9 +592,10 @@ HeteroExecutableNetwork::HeteroExecutableNetwork(std::istream& heteroModel, } std::shared_ptr node = std::make_shared(elementType, partialShape); + // For result operation_name is name of previous operation + node->set_friendly_name(operation_name); if (!is_param) node = std::make_shared(node); - node->set_friendly_name(operation_name); node->output(0).get_tensor().add_names(tensorNames); return node; diff --git a/src/plugins/intel_cpu/tests/functional/shared_tests_instances/skip_tests_config.cpp b/src/plugins/intel_cpu/tests/functional/shared_tests_instances/skip_tests_config.cpp index a2fe8fcfb6f..a419adabb64 100644 --- a/src/plugins/intel_cpu/tests/functional/shared_tests_instances/skip_tests_config.cpp +++ b/src/plugins/intel_cpu/tests/functional/shared_tests_instances/skip_tests_config.cpp @@ -166,9 +166,6 @@ std::vector disabledTestPatterns() { // Issue: 95607 R"(.*CachingSupportCase.*LoadNetworkCacheTestBase.*(TIwithLSTMcell1|MatMulBias|2InputSubtract)_(i|u).*)", R"(.*CachingSupportCase.*ReadConcatSplitAssign.*)", - // Issue: 95239 - // HETERO plugin lacks caching_properties definition - R"(smoke_Hetero_CachingSupportCase.*)", // 94982. FP32->I32 conversion issue in the reference implementation. There can be some garbage in the rest of float values like 0.333333745. // The kernel does not have such garbage. The diff 0.000000745 is taken into account in calculations and affects further type conversion. // Reorder->GridSample->Reorder also does not work here. Potential fix is to use nearest conversion instead of truncation.