aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/reference/GEMM.cpp
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-05-18 15:00:10 +0100
committerManuel Bottini <manuel.bottini@arm.com>2020-05-19 10:55:53 +0000
commit9329175a4d29f753b7b77b0bfdbec5438e174df2 (patch)
treed6e05785e78f9889beb965b90ed4d219359eeefc /tests/validation/reference/GEMM.cpp
parentaba2f912a21487776e540724cf354a6cd8d89829 (diff)
downloadComputeLibrary-9329175a4d29f753b7b77b0bfdbec5438e174df2.tar.gz
COMPMID-3490 - Nightly fails: android armv7 microtask error
- Removing OpenMP from failing references Change-Id: I3a90347dccf55fa22893b42b5236e45f15da19e3 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3219 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/reference/GEMM.cpp')
-rw-r--r--tests/validation/reference/GEMM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/reference/GEMM.cpp b/tests/validation/reference/GEMM.cpp
index 20def87a64..63c7f53b48 100644
--- a/tests/validation/reference/GEMM.cpp
+++ b/tests/validation/reference/GEMM.cpp
@@ -56,7 +56,7 @@ SimpleTensor<T> gemm(const SimpleTensor<T> &a, const SimpleTensor<T> &b, const S
const int c_stride_z = N * M;
const int c_stride_w = N * M * D;
-#if defined(_OPENMP)
+#if defined(_OPENMP) && !( defined(__arm__) && defined(__ANDROID__))
#pragma omp parallel for collapse(2)
#endif /* _OPENMP */
for(int w = 0; w < W; ++w)