aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/GatherDataset.h
diff options
context:
space:
mode:
authorPablo Marquez Tello <pablo.tello@arm.com>2022-05-13 12:20:16 +0100
committerPablo Marquez Tello <pablo.tello@arm.com>2022-06-13 19:33:57 +0000
commit894659a98e76d84bf209da27d8ecb6d9ed05b13d (patch)
tree867fa2bbf6fc25895ad1bb153b887c28f23075bf /tests/datasets/GatherDataset.h
parentc3bc093552158165381f8c642004ed20b8fd99b2 (diff)
downloadComputeLibrary-894659a98e76d84bf209da27d8ecb6d9ed05b13d.tar.gz
Add support for 2d and 3d indices for axis 1
* Resolves COMPMID-5055 Change-Id: I2d14de29d3ec913d20c971bc8bbc9ad71e2d998f Signed-off-by: Pablo Marquez Tello <pablo.tello@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7547 Reviewed-by: SiCong Li <sicong.li@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets/GatherDataset.h')
-rw-r--r--tests/datasets/GatherDataset.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/datasets/GatherDataset.h b/tests/datasets/GatherDataset.h
index 444b62c052..8fec5441b1 100644
--- a/tests/datasets/GatherDataset.h
+++ b/tests/datasets/GatherDataset.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2022 Arm Limited.
+ * Copyright (c) 2018-2019, 2022 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -106,6 +106,19 @@ private:
std::vector<int> _axis{};
};
+class SmallGatherMultiDimIndicesDataset final : public GatherDataset
+{
+public:
+ SmallGatherMultiDimIndicesDataset()
+ {
+ add_config(TensorShape(2U, 6U), TensorShape(4U, 9U), 1);
+ add_config(TensorShape(15U, 15U), TensorShape(3U, 2U, 2U), 1);
+ add_config(TensorShape(15U, 15U), TensorShape(2U, 11U), 1);
+ add_config(TensorShape(5U, 3U, 4U), TensorShape(2U, 7U), 1);
+ add_config(TensorShape(1U, 5U, 3U), TensorShape(1U, 7U, 3U), 1);
+ }
+};
+
class SmallGatherDataset final : public GatherDataset
{
public: