Skip to content

Commit 0ba1be0

Browse files
authored
Merge branch 'master' into an/fc_acl_executor
2 parents b434eef + 83f6d21 commit 0ba1be0

File tree

5 files changed

+21
-40
lines changed

5 files changed

+21
-40
lines changed

.github/workflows/job_samples_tests.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
description: 'Machine on which the tests would run'
88
type: string
99
required: true
10-
image:
11-
description: 'Docker image in which the tests would run'
10+
container:
11+
description: 'JSON to be converted to the value of the "container" configuration for the job'
1212
type: string
1313
required: false
14-
default: null
14+
default: '{"image": null}'
1515
affected-components:
1616
description: 'Components that are affected by changes in the commit defined by the Smart CI Action'
1717
type: string
@@ -21,9 +21,9 @@ permissions: read-all
2121

2222
jobs:
2323
Samples:
24+
timeout-minutes: 30
2425
runs-on: ${{ inputs.runner }}
25-
container:
26-
image: ${{ inputs.image }}
26+
container: ${{ fromJSON(inputs.container) }}
2727
defaults:
2828
run:
2929
shell: bash
@@ -66,6 +66,8 @@ jobs:
6666
run: brew install coreutils
6767

6868
- name: Fetch setup_python action
69+
# Python is already installed on Ubuntu within Dockerfile
70+
if: runner.os != 'Linux'
6971
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
7072
with:
7173
sparse-checkout: |
@@ -74,6 +76,8 @@ jobs:
7476
path: 'openvino'
7577

7678
- name: Setup Python 3.11
79+
# Python is already installed on Ubuntu within Dockerfile
80+
if: runner.os != 'Linux'
7781
uses: ./openvino/.github/actions/setup_python
7882
with:
7983
version: '3.11'

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ jobs:
315315
uses: ./.github/workflows/job_samples_tests.yml
316316
with:
317317
runner: 'aks-linux-4-cores-16gb'
318-
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_20_04_x64 }}
318+
container: '{"image": "${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_20_04_x64 }}", "volumes": ["/mount:/mount"]}'
319319
affected-components: ${{ needs.smart_ci.outputs.affected_components }}
320320

321321
JS_API:

.github/workflows/linux_arm64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ jobs:
309309
uses: ./.github/workflows/job_samples_tests.yml
310310
with:
311311
runner: 'aks-linux-16-cores-arm'
312-
image: ${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_20_04_arm64 }}
312+
container: '{"image": "${{ fromJSON(needs.docker.outputs.images).ov_test.ubuntu_20_04_arm64 }}", "volumes": ["/mount:/mount"]}'
313313
affected-components: ${{ needs.smart_ci.outputs.affected_components }}
314314

315315
JS_API:

src/plugins/intel_npu/tests/functional/internal/overload/compiled_model/property.cpp

+10-20
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,15 @@ std::vector<std::pair<std::string, ov::Any>> exe_network_immutable_properties =
3131
{std::make_pair(ov::supported_properties.name(), ov::Any("deadbeef"))},
3232
{std::make_pair(ov::model_name.name(), ov::Any("deadbeef"))}};
3333

34-
std::vector<std::pair<std::string, ov::Any>> properties = {{}};
35-
3634
// ExecutableNetwork Properties tests
3735
class ClassExecutableNetworkGetPropertiesTestNPU :
3836
public OVCompiledModelPropertiesBase,
3937
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>>> {
4139
protected:
4240
std::string deviceName;
4341
std::string configKey;
4442
ov::Any configValue;
45-
std::string compilerTypeConfigKey;
46-
ov::Any compilerTypeConfigValue;
4743
ov::Core ie;
4844

4945
public:
@@ -52,23 +48,20 @@ class ClassExecutableNetworkGetPropertiesTestNPU :
5248
OVCompiledModelPropertiesBase::SetUp();
5349
deviceName = std::get<0>(GetParam());
5450
std::tie(configKey, configValue) = std::get<1>(GetParam());
55-
std::tie(compilerTypeConfigKey, compilerTypeConfigValue) = std::get<2>(GetParam());
5651

5752
model = ov::test::utils::make_conv_pool_relu();
5853
}
5954
static std::string getTestCaseName(
6055
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>>>
6257
obj) {
6358
std::string targetDevice;
6459
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;
6761
std::replace(targetDevice.begin(), targetDevice.end(), ':', '_');
6862
std::ostringstream result;
6963
result << "targetDevice=" << ov::test::utils::getDeviceNameTestCase(targetDevice) << "_";
7064
result << "config=(" << configuration.first << "=" << configuration.second.as<std::string>() << ")";
71-
result << "_compilerType=(" << compilerType.first << "=" << compilerType.second.as<std::string>() << ")";
7265
result << "_targetPlatform=" + ov::test::utils::getTestsPlatformFromEnvironmentOr(ov::test::utils::DEVICE_NPU);
7366

7467
return result.str();
@@ -81,7 +74,7 @@ TEST_P(ClassExecutableNetworkTestSuite1NPU, PropertyIsSupportedAndImmutableAndGe
8174
std::vector<ov::PropertyName> properties;
8275

8376
ov::CompiledModel exeNetwork =
84-
ie.compile_model(model, deviceName, {{compilerTypeConfigKey, compilerTypeConfigValue}});
77+
ie.compile_model(model, deviceName);
8578
OV_ASSERT_NO_THROW(properties = exeNetwork.get_property(ov::supported_properties));
8679

8780
auto it = find(properties.cbegin(), properties.cend(), configKey);
@@ -94,8 +87,7 @@ TEST_P(ClassExecutableNetworkTestSuite1NPU, PropertyIsSupportedAndImmutableAndGe
9487
INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTests_ClassExecutableNetworkGetPropertiesTestNPU,
9588
ClassExecutableNetworkTestSuite1NPU,
9689
::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)),
9991
ClassExecutableNetworkTestSuite1NPU::getTestCaseName);
10092

10193
using ClassExecutableNetworkTestSuite2NPU = ClassExecutableNetworkGetPropertiesTestNPU;
@@ -104,7 +96,7 @@ TEST_P(ClassExecutableNetworkTestSuite2NPU, PropertyIsSupportedAndImmutableAndCa
10496
std::vector<ov::PropertyName> properties;
10597

10698
ov::CompiledModel exeNetwork =
107-
ie.compile_model(model, deviceName, {{compilerTypeConfigKey, compilerTypeConfigValue}});
99+
ie.compile_model(model, deviceName);
108100
OV_ASSERT_NO_THROW(properties = exeNetwork.get_property(ov::supported_properties));
109101

110102
auto it = find(properties.cbegin(), properties.cend(), configKey);
@@ -116,8 +108,7 @@ TEST_P(ClassExecutableNetworkTestSuite2NPU, PropertyIsSupportedAndImmutableAndCa
116108

117109
INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTests_ClassExecutableNetworkTestSuite2NPU, ClassExecutableNetworkTestSuite2NPU,
118110
::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)),
121112
ClassExecutableNetworkTestSuite2NPU::getTestCaseName);
122113

123114
} // namespace
@@ -308,13 +299,13 @@ TEST_P(ClassPluginPropertiesTestSuite4NPU, CanNotSetGetInexistentProperty) {
308299

309300
ASSERT_THROW(
310301
ov::CompiledModel compiled_model1 = ie.compile_model(
311-
model, deviceName, {{configKey, configValue}, {compilerTypeConfigKey, compilerTypeConfigValue}}),
302+
model, deviceName, {{configKey, configValue}}),
312303
ov::Exception);
313304

314305
ov::CompiledModel compiled_model2;
315306

316307
OV_ASSERT_NO_THROW(compiled_model2 =
317-
ie.compile_model(model, deviceName, {{compilerTypeConfigKey, compilerTypeConfigValue}}));
308+
ie.compile_model(model, deviceName));
318309

319310
ASSERT_THROW(compiled_model2.set_property({{configKey, configValue}}),
320311
ov::Exception); // Expect to throw due to unimplemented method
@@ -327,8 +318,7 @@ INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTests_ClassExecutableNetworkGetProperties
327318
ClassPluginPropertiesTestSuite4NPU,
328319
::testing::Combine(::testing::Values(ov::test::utils::getDeviceName()),
329320
::testing::ValuesIn({std::make_pair<std::string, ov::Any>(
330-
"THISCONFIGKEYNOTEXIST", ov::Any("THISCONFIGVALUENOTEXIST"))}),
331-
::testing::ValuesIn(properties)),
321+
"THISCONFIGKEYNOTEXIST", ov::Any("THISCONFIGVALUENOTEXIST"))})),
332322
ClassPluginPropertiesTestSuite4NPU::getTestCaseName);
333323

334324
} // namespace

src/plugins/intel_npu/tests/functional/shared_tests_instances/skip_tests_config.cpp

-13
Original file line numberDiff line numberDiff line change
@@ -580,19 +580,6 @@ std::vector<std::string> disabledTestPatterns() {
580580
".*smoke_MemoryLSTMCellTest.*"
581581
});
582582

583-
// [Track number: E#118999]
584-
_skipRegistry.addPatterns(backendName.isZero(),
585-
"Newly enabled, never tested", {
586-
".*smoke_BehaviorTests/OVCompiledGraphImportExportTest.importExportedFunctionConstantResultOnly.*",
587-
".*smoke_BehaviorTests_OVClassImportExportTestP/OVClassCompiledModelImportExportTestP.smoke_ImportNetworkThrowWithDeviceName.*",
588-
".*ClassExecutableNetworkTestSuite1NPU.PropertyIsSupportedAndImmutableAndGet.*",
589-
".*ClassExecutableNetworkTestSuite2NPU.PropertyIsSupportedAndImmutableAndCanNotSet.*",
590-
".*smoke_BehaviorTests_ClassPluginPropertiesTest/ClassPluginPropertiesTestSuite2NPU.CanNotSetImmutableProperty.*",
591-
".*smoke_BehaviorTests_ClassPluginPropertiesOptsTest1NPU/ClassPluginPropertiesTestSuite3NPU.CanGetPropertyWithOptionsNotAffectingCore.*",
592-
".*ClassPluginPropertiesTestSuite4NPU.CanNotSetGetInexistentProperty.*",
593-
".*BehaviorTests_OVCheckSetSupportedRWMandatoryMetricsPropsTests/OVCheckSetSupportedRWMetricsPropsTests.ChangeCorrectProperties.*"
594-
});
595-
596583
_skipRegistry.addPatterns(!backendName.isZero() || !devices.has3720(),
597584
"QueryNetwork is only supported by 3720 platform", {
598585
".*QueryNetworkTestSuite.*"

0 commit comments

Comments
 (0)