Guozhong/remove testcase load network single ie core (#12557)

* change gpunum to 3

* remove test case smoke_LoadNetwork_SingleIECore

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>
This commit is contained in:
guozhong wang 2022-08-17 03:17:52 +08:00 committed by GitHub
parent 4d4263f45c
commit 687f8ae655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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<unsigned int> 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<unsigned int> counter{0u};