aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/reference/GEMMReshapeRHSMatrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/reference/GEMMReshapeRHSMatrix.cpp')
-rw-r--r--tests/validation/reference/GEMMReshapeRHSMatrix.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/validation/reference/GEMMReshapeRHSMatrix.cpp b/tests/validation/reference/GEMMReshapeRHSMatrix.cpp
index 0224c5c67c..ebb6f856d2 100644
--- a/tests/validation/reference/GEMMReshapeRHSMatrix.cpp
+++ b/tests/validation/reference/GEMMReshapeRHSMatrix.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -70,7 +70,9 @@ SimpleTensor<T> gemm_reshape_rhs_matrix(const SimpleTensor<T> &in, const TensorS
const unsigned int offset_output_x = rhs_info.interleave ? tile_to_use->shape()[0] : tile_to_use->shape()[0] * tile_to_use->shape()[1];
const unsigned int step_output_x = rhs_info.interleave ? tile_to_use->shape()[0] * rhs_info.h0 : tile_to_use->shape()[0];
-
+#ifdef ARM_COMPUTE_OPENMP
+ #pragma omp parallel for schedule(dynamic, 1) collapse(3)
+#endif /* _OPENMP */
for(unsigned int z = 0; z < B; ++z)
{
for(unsigned int y = 0; y < num_tiles_y; ++y)