aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-05-13 13:38:16 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2020-05-13 14:12:58 +0000
commit4efe5dc9b39a87eface43e7468e08279976ae9ef (patch)
tree8e56a972b072b19a68104cfc5431af8b76394512
parente37662a34659a2d6649b9793e62f6a9110437684 (diff)
downloadComputeLibrary-4efe5dc9b39a87eface43e7468e08279976ae9ef.tar.gz
COMPMID-3484: Regression in Transpose convolution Android R CTS test.
- Removing _flip_axis from _memory_group management Change-Id: Ica3039fa7b545b34de231bcd7620d76914681808 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3191 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/runtime/NEON/functions/NEDeconvolutionLayer.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp b/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp
index c87dac60dc..dd53fbbdc3 100644
--- a/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp
+++ b/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp
@@ -161,7 +161,6 @@ void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, con
_flip_axis.allocator()->init(TensorInfo(TensorShape(2U), 1, DataType::U32));
_memory_group.manage(&_scaled_output);
- _memory_group.manage(&_flip_axis);
_weights_flipped.allocator()->init(weights->info()->clone()->set_data_layout(data_layout));
_flip_weights.configure(weights, &_weights_flipped, &_flip_axis);