[CPU] [ARM] Disable gemm_acl tests on 32-bit arm platforms (#21551)

This commit is contained in:
Aleksandr Voron 2023-12-11 10:21:02 +01:00 committed by GitHub
parent 8e69f2c278
commit ddb4902c33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
} }