From a2611815f278334c801094d095901d36e111c3f9 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Fri, 21 Jul 2017 10:08:48 +0100 Subject: COMPMID-417 NEON/CL MeanStdDev bugfix using FillBorderKernel Change-Id: Ic48ba7f69783d0e1e80611264e2bc67d1732436e Reviewed-on: http://mpd-gerrit.cambridge.arm.com/81293 Reviewed-by: Anthony Barbier Tested-by: Kaizen --- tests/validation_new/SimpleTensor.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'tests/validation_new') diff --git a/tests/validation_new/SimpleTensor.h b/tests/validation_new/SimpleTensor.h index 6392e38e25..61d6f1cd04 100644 --- a/tests/validation_new/SimpleTensor.h +++ b/tests/validation_new/SimpleTensor.h @@ -127,6 +127,9 @@ public: /** Number of elements of the tensor. */ int num_elements() const override; + /** Available padding around the tensor. */ + PaddingSize padding() const override; + /** The number of bits for the fractional part of the fixed point numbers. */ int fixed_point_position() const override; @@ -291,6 +294,12 @@ int SimpleTensor::num_elements() const return _shape.total_size(); } +template +PaddingSize SimpleTensor::padding() const +{ + return PaddingSize(0); +} + template const T *SimpleTensor::data() const { -- cgit v1.2.1