Skip to content

Commit

Permalink
Backmerge tests openvinotoolkit#1
Browse files Browse the repository at this point in the history
  • Loading branch information
MirceaDan99 committed May 21, 2024
1 parent 9cb7bf1 commit 3a6f609
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTest, InferRequestRunTests,

const std::vector<ov::AnyMap> batchingConfigs = {
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::COMPILER)},
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::AUTO)}};
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::AUTO)},
{ov::log::level(ov::log::Level::WARNING), ov::intel_npu::batch_mode(ov::intel_npu::BatchMode::PLUGIN)}};

INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTest, BatchingRunTests,
::testing::Combine(::testing::Values(ov::test::utils::DEVICE_NPU),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -528,8 +528,18 @@ std::vector<std::string> disabledTestPatterns() {
".*DriverCompilerAdapterInputsOutputsTestNPU.CheckInOutputs.*",
".*DriverCompilerAdapterExpectedThrowNPU.CheckWrongGraphExtAndThrow.*"});

_skipRegistry.addPatterns(devices.has3700() || !backendName.isZero(),
"Batching on plugin is not supported on 3700 platform or other backends besides Level Zero backend", {
".*BatchingRunTests.*"
});

#ifdef WIN32
#elif defined(__linux__)
// [Tracking number: E#103391]
_skipRegistry.addPatterns(backendName.isZero() && devices.has3720(),
"IfTest segfaults npuFuncTest on Ubuntu", {
".*smoke_IfTest.*"
});

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

0 comments on commit 3a6f609

Please sign in to comment.