From 687f8ae6555c76bcd0513e9f6a14466d9ec360ac Mon Sep 17 00:00:00 2001 From: guozhong wang Date: Wed, 17 Aug 2022 03:17:52 +0800 Subject: [PATCH] Guozhong/remove testcase load network single ie core (#12557) * change gpunum to 3 * remove test case smoke_LoadNetwork_SingleIECore Co-authored-by: Ilya Lavrenov --- .../include/behavior/plugin/core_threading.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/tests/functional/plugin/shared/include/behavior/plugin/core_threading.hpp b/src/tests/functional/plugin/shared/include/behavior/plugin/core_threading.hpp index 5b54f28a1f8..5eceb7a77fe 100644 --- a/src/tests/functional/plugin/shared/include/behavior/plugin/core_threading.hpp +++ b/src/tests/functional/plugin/shared/include/behavior/plugin/core_threading.hpp @@ -341,20 +341,6 @@ TEST_P(CoreThreadingTestsWithIterations, smoke_LoadNetworkAccuracy) { }, numIterations, numThreads); } -// tested function: single IECore ReadNetwork, SetConfig, LoadNetwork, AddExtension -TEST_P(CoreThreadingTestsWithIterations, smoke_LoadNetwork_SingleIECore) { - std::atomic counter{0u}; - InferenceEngine::Core ie; - - SetupNetworks(); - - runParallel([&] () { - auto value = counter++; - ie.SetConfig(config, target_device); - (void)ie.LoadNetwork(networks[value % networks.size()], target_device); - }, numIterations, numThreads); -} - // tested function: ReadNetwork, SetConfig, LoadNetwork, AddExtension TEST_P(CoreThreadingTestsWithIterations, smoke_LoadNetwork_MultipleIECores) { std::atomic counter{0u};