From 66d2358f4a04b3763727c50a335de97eae16385d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Prasanna=20R/System=20SW=20/SRI-Bangalore/Engineer/?= =?utf8?q?=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 19 Oct 2018 05:53:40 +0530 Subject: [PATCH] Initialize Objects and other variables (#3237) This patch will initialize Objects and other variables in BatchToSpaceND Signed-off-by: prasannar --- runtimes/pure_arm_compute/src/internal/layers/SimpleBatchToSpaceNd.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtimes/pure_arm_compute/src/internal/layers/SimpleBatchToSpaceNd.h b/runtimes/pure_arm_compute/src/internal/layers/SimpleBatchToSpaceNd.h index e4f3f42..e15566a 100644 --- a/runtimes/pure_arm_compute/src/internal/layers/SimpleBatchToSpaceNd.h +++ b/runtimes/pure_arm_compute/src/internal/layers/SimpleBatchToSpaceNd.h @@ -25,6 +25,11 @@ class SimpleBatchToSpaceND : public ::arm_compute::IFunction { public: + SimpleBatchToSpaceND(void) : _input(nullptr), _output(nullptr), _block_size(nullptr), _axises{} + { + // DO NOTHING + } + /** Initialise input and output * * @param[in] input First tensor input. -- 2.7.4