[ARM CPU] Skip autobatch tests on arm32 arch (#18937)
This commit is contained in:
parent
aa4cbf36e5
commit
040951bfa1
@ -18,14 +18,13 @@ INSTANTIATE_TEST_SUITE_P(smoke_AutoBatching_CPU, AutoBatching_Test,
|
|||||||
::testing::ValuesIn(num_requests),
|
::testing::ValuesIn(num_requests),
|
||||||
::testing::ValuesIn(num_batch)),
|
::testing::ValuesIn(num_batch)),
|
||||||
AutoBatching_Test::getTestCaseName);
|
AutoBatching_Test::getTestCaseName);
|
||||||
// TODO: for 22.2 (CVS-68949)
|
|
||||||
//INSTANTIATE_TEST_SUITE_P(smoke_AutoBatching_CPU, AutoBatching_Test_DetectionOutput,
|
|
||||||
// ::testing::Combine(
|
|
||||||
// ::testing::Values(ov::test::utils::DEVICE_CPU),
|
|
||||||
// ::testing::ValuesIn(get_vs_set),
|
|
||||||
// ::testing::ValuesIn(num_streams),
|
|
||||||
// ::testing::ValuesIn(num_requests),
|
|
||||||
// ::testing::ValuesIn(num_batch)),
|
|
||||||
// AutoBatching_Test_DetectionOutput::getTestCaseName);
|
|
||||||
|
|
||||||
|
INSTANTIATE_TEST_SUITE_P(smoke_AutoBatching_CPU, AutoBatching_Test_DetectionOutput,
|
||||||
|
::testing::Combine(
|
||||||
|
::testing::Values(ov::test::utils::DEVICE_CPU),
|
||||||
|
::testing::ValuesIn(get_vs_set),
|
||||||
|
::testing::ValuesIn(num_streams),
|
||||||
|
::testing::ValuesIn(num_requests),
|
||||||
|
::testing::ValuesIn(num_batch)),
|
||||||
|
AutoBatching_Test_DetectionOutput::getTestCaseName);
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -190,6 +190,8 @@ std::vector<std::string> disabledTestPatterns() {
|
|||||||
R"(.*(Auto|Multi|Hetero).*InferRequestPreprocessTest.*SetPreProcessToInferRequest.*)",
|
R"(.*(Auto|Multi|Hetero).*InferRequestPreprocessTest.*SetPreProcessToInferRequest.*)",
|
||||||
// Issue: 113727
|
// Issue: 113727
|
||||||
R"(.*MatMulCompressedWeights.*)",
|
R"(.*MatMulCompressedWeights.*)",
|
||||||
|
// TODO: for 22.2 (CVS-68949)
|
||||||
|
R"(.*smoke_AutoBatching_CPU/AutoBatching_Test_DetectionOutput.*)",
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(OPENVINO_ARCH_X86)
|
#if defined(OPENVINO_ARCH_X86)
|
||||||
@ -212,6 +214,11 @@ std::vector<std::string> disabledTestPatterns() {
|
|||||||
retVector.emplace_back(R"(smoke_NegativeQuantizedMatMulMultiplyFusion.*)");
|
retVector.emplace_back(R"(smoke_NegativeQuantizedMatMulMultiplyFusion.*)");
|
||||||
// int8 specific
|
// int8 specific
|
||||||
retVector.emplace_back(R"(smoke_Quantized.*)");
|
retVector.emplace_back(R"(smoke_Quantized.*)");
|
||||||
|
// TODO: fix CVS-115961
|
||||||
|
retVector.emplace_back(R"(.*compareAutoBatchingToSingleBatch/CPU_get_blob_batch_size_4_num_streams_1_num_req_64*)");
|
||||||
|
retVector.emplace_back(R"(.*compareAutoBatchingToSingleBatch/CPU_get_blob_batch_size_4_num_streams_2_num_req_64*)");
|
||||||
|
retVector.emplace_back(R"(.*compareAutoBatchingToSingleBatch/CPU_set_blob_batch_size_4_num_streams_1_num_req_64*)");
|
||||||
|
retVector.emplace_back(R"(.*compareAutoBatchingToSingleBatch/CPU_set_blob_batch_size_4_num_streams_2_num_req_64*)");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(OPENVINO_ARCH_ARM)
|
#if defined(OPENVINO_ARCH_ARM)
|
||||||
|
@ -164,10 +164,12 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
TEST_P(AutoBatching_Test, compareAutoBatchingToSingleBatch) {
|
TEST_P(AutoBatching_Test, compareAutoBatchingToSingleBatch) {
|
||||||
|
SKIP_IF_CURRENT_TEST_IS_DISABLED()
|
||||||
TestAutoBatch();
|
TestAutoBatch();
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_P(AutoBatching_Test_DetectionOutput, compareAutoBatchingToSingleBatch) {
|
TEST_P(AutoBatching_Test_DetectionOutput, compareAutoBatchingToSingleBatch) {
|
||||||
|
SKIP_IF_CURRENT_TEST_IS_DISABLED()
|
||||||
TestAutoBatch();
|
TestAutoBatch();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user