Update getPrimitiveType for arm32
This commit is contained in:
parent
7df8aaf3bf
commit
1ef613b9fd
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue