aboutsummaryrefslogtreecommitdiff
path: root/tests/CL
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2017-07-21 10:08:48 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commita2611815f278334c801094d095901d36e111c3f9 (patch)
tree1a2bf86b37614ce5473669b283dc37c708dd4957 /tests/CL
parenta629da13544c361ba9580a233109b2418fd6bb73 (diff)
downloadComputeLibrary-a2611815f278334c801094d095901d36e111c3f9.tar.gz
COMPMID-417 NEON/CL MeanStdDev bugfix using FillBorderKernel
Change-Id: Ic48ba7f69783d0e1e80611264e2bc67d1732436e Reviewed-on: http://mpd-gerrit.cambridge.arm.com/81293 Reviewed-by: Anthony Barbier <anthony.barbier@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'tests/CL')
-rw-r--r--tests/CL/CLAccessor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/CL/CLAccessor.h b/tests/CL/CLAccessor.h
index 260da035c5..b1d7a078b1 100644
--- a/tests/CL/CLAccessor.h
+++ b/tests/CL/CLAccessor.h
@@ -59,6 +59,7 @@ public:
DataType data_type() const override;
int num_channels() const override;
int num_elements() const override;
+ PaddingSize padding() const override;
int fixed_point_position() const override;
const void *operator()(const Coordinates &coord) const override;
void *operator()(const Coordinates &coord) override;
@@ -113,6 +114,11 @@ inline int CLAccessor::num_elements() const
return _tensor.info()->tensor_shape().total_size();
}
+inline PaddingSize CLAccessor::padding() const
+{
+ return _tensor.info()->padding();
+}
+
inline int CLAccessor::fixed_point_position() const
{
return _tensor.info()->fixed_point_position();