aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2021-06-30 14:26:40 +0100
committerGiorgio Arena <giorgio.arena@arm.com>2021-07-01 09:33:03 +0000
commitf7f64501a51eac8de749a4d539b9bc7a12aaf04d (patch)
treea80eb313294c32fcbfb4816e3a6246cdc226eca5
parent399f623e29500e28c34e8a5adb07dd15e7f26c0c (diff)
downloadComputeLibrary-f7f64501a51eac8de749a4d539b9bc7a12aaf04d.tar.gz
Adjust minimum DDK version for manual unroll
Resolve COMPMID-4602 Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Change-Id: I4727586711a0dbdc859b043cfd55d0335f1c8eb0 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5888 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/core/CL/CLCompileContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/CLCompileContext.cpp b/src/core/CL/CLCompileContext.cpp
index 3f2975dc15..c9dd13e25c 100644
--- a/src/core/CL/CLCompileContext.cpp
+++ b/src/core/CL/CLCompileContext.cpp
@@ -271,7 +271,7 @@ std::string CLCompileContext::generate_build_options(const StringSet &build_opti
const std::regex ddk_regex("r([0-9]*)p[0-9]");
std::smatch ddk_match;
- if(std::regex_search(device_vers, ddk_match, ddk_regex) && std::stoi(ddk_match[1]) >= 9)
+ if(std::regex_search(device_vers, ddk_match, ddk_regex) && std::stoi(ddk_match[1]) >= 11)
{
concat_str += " -DUNROLL_WITH_PRAGMA ";
}