From f25e295a9f52a4a48ae557820224f14e62ba006a Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Thu, 23 Apr 2020 12:40:08 +0100 Subject: 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 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3085 Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Reviewed-by: Georgios Pinitas --- tests/validation/reference/DFT.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/validation/reference/DFT.cpp') 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 complex_mul_and_reduce(const SimpleTensor &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) -- cgit v1.2.1