From f89a49f7bdd8d03400060488596c8757745e19cf Mon Sep 17 00:00:00 2001 From: John Richardson Date: Tue, 5 Sep 2017 11:21:56 +0100 Subject: COMPMID-503: Move MinMaxLocation to new validation Change-Id: I2d518b3a3f15e2c4786488593dac244c1d74a0f9 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/86533 Tested-by: Kaizen Reviewed-by: Moritz Pflanzer --- tests/CL/CLArrayAccessor.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'tests/CL/CLArrayAccessor.h') diff --git a/tests/CL/CLArrayAccessor.h b/tests/CL/CLArrayAccessor.h index a38907dd78..a516a9d96a 100644 --- a/tests/CL/CLArrayAccessor.h +++ b/tests/CL/CLArrayAccessor.h @@ -60,7 +60,7 @@ public: _array.unmap(); } - int num_values() const override + size_t num_values() const override { return _array.num_values(); } @@ -75,6 +75,13 @@ public: _array.resize(num); } + T &at(size_t index) const override + { + ARM_COMPUTE_ERROR_ON(_array.buffer() == nullptr); + ARM_COMPUTE_ERROR_ON(index >= num_values()); + return _array.buffer()[index]; + } + private: CLArray &_array; }; -- cgit v1.2.1