Skip to content

Commit 3a5a55b

Browse files
committed
Backmerge tests openvinotoolkit#1
1 parent ee868b0 commit 3a5a55b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/plugins/intel_npu/tests/functional/behavior/infer_request_run.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTest, InferRequestRunTests,
2121

2222
const std::vector<ov::AnyMap> batchingConfigs = {
2323
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::COMPILER)},
24-
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::AUTO)}};
24+
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::AUTO)},
25+
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::PLUGIN)}};
2526

2627
INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTest, BatchingRunTests,
2728
::testing::Combine(::testing::Values(ov::test::utils::DEVICE_NPU),

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

+10
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,18 @@ std::vector<std::string> disabledTestPatterns() {
528528
".*DriverCompilerAdapterInputsOutputsTestNPU.CheckInOutputs.*",
529529
".*DriverCompilerAdapterExpectedThrowNPU.CheckWrongGraphExtAndThrow.*"});
530530

531+
_skipRegistry.addPatterns(devices.has3700() || !backendName.isZero(),
532+
"Batching on plugin is not supported on 3700 platform or other backends besides Level Zero backend", {
533+
".*BatchingRunTests.*"
534+
});
535+
531536
#ifdef WIN32
532537
#elif defined(__linux__)
538+
// [Tracking number: E#103391]
539+
_skipRegistry.addPatterns(backendName.isZero() && devices.has3720(),
540+
"IfTest segfaults npuFuncTest on Ubuntu", {
541+
".*smoke_IfTest.*"
542+
});
533543

534544
_skipRegistry.addPatterns(backendName.isZero() && devices.has3720(),
535545
"Tests fail with: ZE_RESULT_ERROR_DEVICE_LOST, code 0x70000001", {

0 commit comments

Comments
 (0)