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 17, 2024
1 parent 0206e3c commit 105b4a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTest_Driver, 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_Driver, 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,10 +528,15 @@ 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()),
_skipRegistry.addPatterns(backendName.isZero() && devices.has3720(),
"IfTest segfaults npuFuncTest on Ubuntu", {
".*smoke_IfTest.*"
});
Expand Down Expand Up @@ -606,7 +611,7 @@ std::vector<std::string> disabledTestPatterns() {
});

// [Tracking number: E#99817]
_skipRegistry.addPatterns(backendName.isZero() && devices.has3720()),
_skipRegistry.addPatterns(backendName.isZero() && devices.has3720(),
"Disabled tests for NPU3720", {
".*InferRequestVariableStateTest.inferreq_smoke_VariableState_2infers.*",
".*OVInferRequestIOTensorTest.*InferStaticNetworkSetChangedInputTensorThrow.*"
Expand Down

0 comments on commit 105b4a0

Please sign in to comment.