12
12
namespace {
13
13
14
14
const Params params[] = {
15
- std::tuple<Device, Config>{ov::test::utils::DEVICE_NPU, {{ov::enable_profiling (true )}}},
16
- std::tuple<Device, Config>{ov::test::utils::DEVICE_HETERO,
17
- {{ov::device::priorities (ov::test::utils::DEVICE_NPU, ov::test::utils::DEVICE_CPU)}}},
18
- };
19
-
20
- const Params paramsStreams[] = {
21
- std::tuple<Device, Config>{ov::test::utils::DEVICE_NPU, {{ov::num_streams (ov::streams::AUTO)}}},
22
- };
23
-
24
- const Params paramsStreamsDRIVER[] = {
25
- std::tuple<Device, Config>{
26
- ov::test::utils::DEVICE_NPU,
27
- {{ov::num_streams (ov::streams::AUTO), ov::intel_npu::compiler_type (ov::intel_npu::CompilerType::DRIVER)}}},
28
- };
15
+ std::tuple<Device, Config>{ov::test::utils::DEVICE_NPU,
16
+ {{ov::hint::performance_mode (ov::hint::PerformanceMode::LATENCY)}}},
17
+ std::tuple<Device, Config>{ov::test::utils::DEVICE_NPU,
18
+ {{ov::hint::performance_mode (ov::hint::PerformanceMode::THROUGHPUT)}}}};
29
19
30
20
} // namespace
31
21
@@ -36,17 +26,10 @@ INSTANTIATE_TEST_SUITE_P(compatibility_smoke_BehaviorTests_CoreThreadingTest_NPU
36
26
37
27
INSTANTIATE_TEST_SUITE_P (smoke_BehaviorTests_CoreThreadingTest_NPU,
38
28
CoreThreadingTestsWithIter,
39
- testing::Combine (testing::ValuesIn(params), testing::Values(4 ), testing::Values(50 )),
29
+ testing::Combine (testing::ValuesIn(params), testing::Values(20 ), testing::Values(50 )),
40
30
(ov::test::utils::appendPlatformTypeTestName<CoreThreadingTestsWithIter>));
41
31
42
- INSTANTIATE_TEST_SUITE_P (smoke_BehaviorTests_CoreThreadingTest_Streams_NPU ,
32
+ INSTANTIATE_TEST_SUITE_P (smoke_BehaviorTests_CoreThreadingTest_NPU ,
43
33
CoreThreadingTestsWithCacheEnabled,
44
- testing::Combine (testing::ValuesIn(paramsStreamsDRIVER),
45
- testing::Values(20 ),
46
- testing::Values(10 )),
34
+ testing::Combine (testing::ValuesIn(params), testing::Values(20 ), testing::Values(50 )),
47
35
(ov::test::utils::appendPlatformTypeTestName<CoreThreadingTestsWithCacheEnabled>));
48
-
49
- INSTANTIATE_TEST_SUITE_P (smoke_BehaviorTests_CoreThreadingTest_Streams_NPU,
50
- CoreThreadingTestsWithIter,
51
- testing::Combine (testing::ValuesIn(paramsStreams), testing::Values(4 ), testing::Values(50 )),
52
- (ov::test::utils::appendPlatformTypeTestName<CoreThreadingTestsWithIter>));
0 commit comments