aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/GatherFixture.h
diff options
context:
space:
mode:
authorOmar Al Khatib <omar.alkhatib@arm.com>2023-04-26 11:31:45 +0100
committerOmar Al Khatib <omar.alkhatib@arm.com>2023-05-03 13:22:48 +0000
commitcdd1e039ad598aec10d8c1b81e08de9412324bf2 (patch)
tree344bfa6dc1e30604c6e67533eccb08a71e235fde /tests/validation/fixtures/GatherFixture.h
parent911d5728fccdabbdf41549c58f0266e49c2aeaf0 (diff)
downloadComputeLibrary-cdd1e039ad598aec10d8c1b81e08de9412324bf2.tar.gz
Support multi-dimensional indices in the CL Gather Layer up to four-dimensional output tensors
Resolves [COMPMID-5775] Signed-off-by: Omar Al Khatib <omar.alkhatib@arm.com> Change-Id: I6f6c12ac08f0b0ad070ca5d715c531c2c3762c30 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9498 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/fixtures/GatherFixture.h')
-rw-r--r--tests/validation/fixtures/GatherFixture.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/validation/fixtures/GatherFixture.h b/tests/validation/fixtures/GatherFixture.h
index f6f70023b9..b28f93d850 100644
--- a/tests/validation/fixtures/GatherFixture.h
+++ b/tests/validation/fixtures/GatherFixture.h
@@ -69,10 +69,9 @@ protected:
// 10% of the time the index is out-of-range.
uint32_t max_index = input_shape[actual_axis] + input_shape[actual_axis] / 9 + 1;
-
std::uniform_int_distribution<uint32_t> dist_index(0, max_index - 1);
- //Let's consider 1D indices
- for(unsigned int ind = 0; ind < indices_shape[0]; ind++)
+
+ for(unsigned int ind = 0; ind < indices_shape.total_size(); ind++)
{
indices_ptr[ind] = dist_index(gen);
}