@@ -31,19 +31,15 @@ std::vector<std::pair<std::string, ov::Any>> exe_network_immutable_properties =
31
31
{std::make_pair (ov::supported_properties.name (), ov::Any (" deadbeef" ))},
32
32
{std::make_pair (ov::model_name.name (), ov::Any (" deadbeef" ))}};
33
33
34
- std::vector<std::pair<std::string, ov::Any>> properties = {{}};
35
-
36
34
// ExecutableNetwork Properties tests
37
35
class ClassExecutableNetworkGetPropertiesTestNPU :
38
36
public OVCompiledModelPropertiesBase,
39
37
public ::testing::WithParamInterface<
40
- std::tuple<std::string, std::pair<std::string, ov::Any>, std::pair<std::string, ov::Any> >> {
38
+ std::tuple<std::string, std::pair<std::string, ov::Any>>> {
41
39
protected:
42
40
std::string deviceName;
43
41
std::string configKey;
44
42
ov::Any configValue;
45
- std::string compilerTypeConfigKey;
46
- ov::Any compilerTypeConfigValue;
47
43
ov::Core ie;
48
44
49
45
public:
@@ -52,23 +48,20 @@ class ClassExecutableNetworkGetPropertiesTestNPU :
52
48
OVCompiledModelPropertiesBase::SetUp ();
53
49
deviceName = std::get<0 >(GetParam ());
54
50
std::tie (configKey, configValue) = std::get<1 >(GetParam ());
55
- std::tie (compilerTypeConfigKey, compilerTypeConfigValue) = std::get<2 >(GetParam ());
56
51
57
52
model = ov::test::utils::make_conv_pool_relu ();
58
53
}
59
54
static std::string getTestCaseName (
60
55
testing::TestParamInfo<
61
- std::tuple<std::string, std::pair<std::string, ov::Any>, std::pair<std::string, ov::Any> >>
56
+ std::tuple<std::string, std::pair<std::string, ov::Any>>>
62
57
obj) {
63
58
std::string targetDevice;
64
59
std::pair<std::string, ov::Any> configuration;
65
- std::pair<std::string, ov::Any> compilerType;
66
- std::tie (targetDevice, configuration, compilerType) = obj.param ;
60
+ std::tie (targetDevice, configuration) = obj.param ;
67
61
std::replace (targetDevice.begin (), targetDevice.end (), ' :' , ' _' );
68
62
std::ostringstream result;
69
63
result << " targetDevice=" << ov::test::utils::getDeviceNameTestCase (targetDevice) << " _" ;
70
64
result << " config=(" << configuration.first << " =" << configuration.second .as <std::string>() << " )" ;
71
- result << " _compilerType=(" << compilerType.first << " =" << compilerType.second .as <std::string>() << " )" ;
72
65
result << " _targetPlatform=" + ov::test::utils::getTestsPlatformFromEnvironmentOr (ov::test::utils::DEVICE_NPU);
73
66
74
67
return result.str ();
@@ -81,7 +74,7 @@ TEST_P(ClassExecutableNetworkTestSuite1NPU, PropertyIsSupportedAndImmutableAndGe
81
74
std::vector<ov::PropertyName> properties;
82
75
83
76
ov::CompiledModel exeNetwork =
84
- ie.compile_model (model, deviceName, {{compilerTypeConfigKey, compilerTypeConfigValue}} );
77
+ ie.compile_model (model, deviceName);
85
78
OV_ASSERT_NO_THROW (properties = exeNetwork.get_property (ov::supported_properties));
86
79
87
80
auto it = find (properties.cbegin (), properties.cend (), configKey);
@@ -94,8 +87,7 @@ TEST_P(ClassExecutableNetworkTestSuite1NPU, PropertyIsSupportedAndImmutableAndGe
94
87
INSTANTIATE_TEST_SUITE_P (smoke_BehaviorTests_ClassExecutableNetworkGetPropertiesTestNPU,
95
88
ClassExecutableNetworkTestSuite1NPU,
96
89
::testing::Combine (::testing::Values(ov::test::utils::getDeviceName()),
97
- ::testing::ValuesIn(exe_network_supported_properties),
98
- ::testing::ValuesIn(properties)),
90
+ ::testing::ValuesIn(exe_network_supported_properties)),
99
91
ClassExecutableNetworkTestSuite1NPU::getTestCaseName);
100
92
101
93
using ClassExecutableNetworkTestSuite2NPU = ClassExecutableNetworkGetPropertiesTestNPU;
@@ -104,7 +96,7 @@ TEST_P(ClassExecutableNetworkTestSuite2NPU, PropertyIsSupportedAndImmutableAndCa
104
96
std::vector<ov::PropertyName> properties;
105
97
106
98
ov::CompiledModel exeNetwork =
107
- ie.compile_model (model, deviceName, {{compilerTypeConfigKey, compilerTypeConfigValue}} );
99
+ ie.compile_model (model, deviceName);
108
100
OV_ASSERT_NO_THROW (properties = exeNetwork.get_property (ov::supported_properties));
109
101
110
102
auto it = find (properties.cbegin (), properties.cend (), configKey);
@@ -116,8 +108,7 @@ TEST_P(ClassExecutableNetworkTestSuite2NPU, PropertyIsSupportedAndImmutableAndCa
116
108
117
109
INSTANTIATE_TEST_SUITE_P (smoke_BehaviorTests_ClassExecutableNetworkTestSuite2NPU, ClassExecutableNetworkTestSuite2NPU,
118
110
::testing::Combine (::testing::Values(ov::test::utils::getDeviceName()),
119
- ::testing::ValuesIn(exe_network_immutable_properties),
120
- ::testing::ValuesIn(properties)),
111
+ ::testing::ValuesIn(exe_network_immutable_properties)),
121
112
ClassExecutableNetworkTestSuite2NPU::getTestCaseName);
122
113
123
114
} // namespace
@@ -308,13 +299,13 @@ TEST_P(ClassPluginPropertiesTestSuite4NPU, CanNotSetGetInexistentProperty) {
308
299
309
300
ASSERT_THROW (
310
301
ov::CompiledModel compiled_model1 = ie.compile_model (
311
- model, deviceName, {{configKey, configValue}, {compilerTypeConfigKey, compilerTypeConfigValue} }),
302
+ model, deviceName, {{configKey, configValue}}),
312
303
ov::Exception);
313
304
314
305
ov::CompiledModel compiled_model2;
315
306
316
307
OV_ASSERT_NO_THROW (compiled_model2 =
317
- ie.compile_model (model, deviceName, {{compilerTypeConfigKey, compilerTypeConfigValue}} ));
308
+ ie.compile_model (model, deviceName));
318
309
319
310
ASSERT_THROW (compiled_model2.set_property ({{configKey, configValue}}),
320
311
ov::Exception); // Expect to throw due to unimplemented method
@@ -327,8 +318,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTests_ClassExecutableNetworkGetProperties
327
318
ClassPluginPropertiesTestSuite4NPU,
328
319
::testing::Combine (::testing::Values(ov::test::utils::getDeviceName()),
329
320
::testing::ValuesIn({std::make_pair<std::string, ov::Any>(
330
- " THISCONFIGKEYNOTEXIST" , ov::Any (" THISCONFIGVALUENOTEXIST" ))}),
331
- ::testing::ValuesIn(properties)),
321
+ " THISCONFIGKEYNOTEXIST" , ov::Any (" THISCONFIGVALUENOTEXIST" ))})),
332
322
ClassPluginPropertiesTestSuite4NPU::getTestCaseName);
333
323
334
324
} // namespace
0 commit comments