aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/reference
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-04-23 12:40:08 +0100
committerMichele Di Giorgio <michele.digiorgio@arm.com>2020-04-26 12:57:50 +0000
commitf25e295a9f52a4a48ae557820224f14e62ba006a (patch)
tree16a4092b45830b7a83940bc0970a542d1a50761a /tests/validation/reference
parent8981e56176d47799e6838b46ffa843bb55b4c095 (diff)
downloadComputeLibrary-f25e295a9f52a4a48ae557820224f14e62ba006a.tar.gz
COMPMID-3329: failures in nightly (GC/GEMM and CPP/DFT)
- Can't recreate GC/GEMM - Fix on CPP/DFT/DFT2D/Complex using the appropriate tolerance - Fix CPP/DFT/Conv/Real2Real by removing concurrency issue on faulty function Looking at the proper fix for CPP/DFT/Conv/Real2Real since it is a concurrency issue Change-Id: Ic846dc7925d4c1b47e14181656c905f90778cdeb Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3085 Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests/validation/reference')
-rw-r--r--tests/validation/reference/DFT.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/validation/reference/DFT.cpp b/tests/validation/reference/DFT.cpp
index ae030c7104..7221312641 100644
--- a/tests/validation/reference/DFT.cpp
+++ b/tests/validation/reference/DFT.cpp
@@ -269,9 +269,7 @@ SimpleTensor<T> complex_mul_and_reduce(const SimpleTensor<T> &input, const Simpl
// MemSet dst memory to zero
std::memset(dst.data(), 0, dst.size());
-#if defined(_OPENMP)
- #pragma omp parallel for collapse(5)
-#endif /* _OPENMP */
+
for(uint32_t b = 0; b < N; ++b)
{
for(uint32_t co = 0; co < Co; ++co)