Update getPrimitiveType for arm32

This commit is contained in:
xuchen-intel 2024-06-12 04:17:03 +02:00
parent 7df8aaf3bf
commit 1ef613b9fd
1 changed files with 7 additions and 0 deletions

View File

@ -77,7 +77,14 @@ void ExtremumLayerCPUTest::SetUp() {
}
std::string ExtremumLayerCPUTest::getPrimitiveType() {
#if defined(OV_CPU_WITH_ACL)
#if defined(OPENVINO_ARCH_ARM64)
return "jit";
#endif
return "acl";
#else
return CPUTestsBase::getPrimitiveType();
#endif
}
TEST_P(ExtremumLayerCPUTest, CompareWithRefs) {