[CPU] [ARM] Disable gemm_acl tests on 32-bit arm platforms (#21551)
This commit is contained in:
parent
8e69f2c278
commit
ddb4902c33
@ -26,7 +26,11 @@ std::vector<CPUSpecificParams> filterCPUInfoForArch(const std::vector<CPUSpecifi
|
|||||||
if (selectedTypeStr.find("acl") == std::string::npos &&
|
if (selectedTypeStr.find("acl") == std::string::npos &&
|
||||||
selectedTypeStr.find("ref") == std::string::npos)
|
selectedTypeStr.find("ref") == std::string::npos)
|
||||||
continue;
|
continue;
|
||||||
|
#if defined(OPENVINO_ARCH_ARM)
|
||||||
|
# disable gemm_acl on 32-bit arm platforms because oneDNN\ACL does not support it
|
||||||
|
if (selectedTypeStr.find("gemm_acl") != std::string::npos)
|
||||||
|
continue;
|
||||||
|
#endif
|
||||||
resCPUParams.push_back(param);
|
resCPUParams.push_back(param);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user