aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2019-07-10 17:06:12 +0100
committerManuel Bottini <manuel.bottini@arm.com>2019-07-19 09:49:54 +0000
commitd25af6786c0a714f2b4f099d0338dab17a5dc7e1 (patch)
treeb8a1eafa1d01be903a238fff92ad6acd34b6a499 /arm_compute
parentdb9116ff15170ff734aad0300b46c48abc2a3b7b (diff)
downloadComputeLibrary-d25af6786c0a714f2b4f099d0338dab17a5dc7e1.tar.gz
COMPMID-2456: NEDeconvolutionLayer.cpp, NHWC is not supported
Support of NHWC for NEDeconvolutionLayer Bugfix for QASYMM8 in CPPUpsample when offset is different than 0 QASYMM8 tests added in NEUpsample with offset different than 0 Change-Id: I8283fa5e5e323fd4d5777136359ddb33025674bb Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/1517 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Marquez <pablo.tello@arm.com>
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h b/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
index 62977a7647..360bb23f22 100644
--- a/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
+++ b/arm_compute/runtime/NEON/functions/NEDeconvolutionLayer.h
@@ -118,8 +118,15 @@ private:
NEConvolutionLayer _conv_f;
CPPUpsample _upsample_f;
CPPFlipWeightsKernel _flip_weights;
+ NEPermute _permute_input;
+ NEPermute _permute_weights;
+ NEPermute _permute_output;
Tensor _scaled_output;
Tensor _weights_flipped;
+ Tensor _permuted_input;
+ Tensor _permuted_weights;
+ Tensor _permuted_output;
+ bool _is_nchw;
const ITensor *_original_weights;
ITensor *_input;
PadStrideInfo _info;