aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets
diff options
context:
space:
mode:
authorPablo Marquez Tello <pablo.tello@arm.com>2022-04-27 11:46:31 +0100
committerPablo Marquez Tello <pablo.tello@arm.com>2022-05-10 09:48:59 +0000
commit920f2b6c2070f6328891e26538e8bcad63e2a79c (patch)
treedfa769580dd15083c6690b7b4019ad23948f8f36 /tests/datasets
parent06adbc56e9c4a7947e6bc843da6687b3ff357de4 (diff)
downloadComputeLibrary-920f2b6c2070f6328891e26538e8bcad63e2a79c.tar.gz
Add support for 2d and 3d indices for axis 0
* Partially resolves COMPMID-5055 Change-Id: Id05374b8c69e6b9ab4c2790a4de93d7172063b71 Signed-off-by: Pablo Marquez Tello <pablo.tello@arm.com> Change-Id: Ic6e2c2d1d34abbf6222c8d56859514e267447266 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7488 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets')
-rw-r--r--tests/datasets/GatherDataset.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/datasets/GatherDataset.h b/tests/datasets/GatherDataset.h
index 29a99d5239..f4ad7c9497 100644
--- a/tests/datasets/GatherDataset.h
+++ b/tests/datasets/GatherDataset.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2019 Arm Limited.
+ * Copyright (c) 2018-2019, 2022 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -106,6 +106,18 @@ private:
std::vector<int> _axis{};
};
+
+class SmallGatherMultiDimIndicesDataset final : public GatherDataset
+{
+public:
+ SmallGatherMultiDimIndicesDataset()
+ {
+ add_config(TensorShape(15U, 15U), TensorShape(4U, 13U, 2U), 0);
+ add_config(TensorShape(15U, 15U), TensorShape(2U, 12U), 0);
+ }
+};
+
+
class SmallGatherDataset final : public GatherDataset
{
public: