From 056b5d9dc6a87dc220792b7fe5ddea33692cc471 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 13 Feb 2018 18:50:55 +0000 Subject: COMPMID-765: Switch 1x1 DeconvolutionLayer to use the ConvolutionLayer -Swithes the 1x1 DeconvolutionLayer to use the ConvolutionLayer instead of the DirectConvolutionLayer. Change-Id: I3ffe152c42c3b1c7ea572f264cd3215df01aedc2 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/120292 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h') diff --git a/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h b/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h index 1b3297e8d0..7566131488 100644 --- a/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h +++ b/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h @@ -95,14 +95,12 @@ public: void run() override; private: - MemoryGroup _memory_group; - NEDirectConvolutionLayer _direct_conv_f; - NEConvolutionLayer _conv_f; - Tensor _scaled_output; - ITensor *_input; - PadStrideInfo _info; + MemoryGroup _memory_group; + NEConvolutionLayer _conv_f; + Tensor _scaled_output; + ITensor *_input; + PadStrideInfo _info; std::pair _inner_border; - bool _run_direct_convolution; }; } // arm_compute #endif /* __ARM_COMPUTE_NEDECONVOLUTIONLAYER_H__ */ -- cgit v1.2.1