aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Helpers.inl
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2017-08-08 08:38:09 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:18:34 +0100
commit559d77179bfe8daaeb1f6754ee2287bd12a6aa04 (patch)
treef9a39dd27b1721f1f6a2794dcfde9a34cba03480 /arm_compute/core/Helpers.inl
parent6203153b25fda2c4b8d94fe71337d1145a36c132 (diff)
downloadComputeLibrary-559d77179bfe8daaeb1f6754ee2287bd12a6aa04.tar.gz
COMPMID-417 - Fixed auto-config in NEConvolutionLayer and in CLConvolutionLayer
Change-Id: Ibfd772200348b326738bb3b8357f0abbb7a583d7 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/82943 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-by: Moritz Pflanzer <moritz.pflanzer@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute/core/Helpers.inl')
-rw-r--r--arm_compute/core/Helpers.inl2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm_compute/core/Helpers.inl b/arm_compute/core/Helpers.inl
index d342a60987..78e0c70e1b 100644
--- a/arm_compute/core/Helpers.inl
+++ b/arm_compute/core/Helpers.inl
@@ -251,8 +251,8 @@ inline bool auto_init_if_empty(ITensorInfo &info, const TensorShape &shape, int
if(info.tensor_shape().total_size() == 0)
{
info.set_data_type(data_type);
- info.set_tensor_shape(shape);
info.set_num_channels(num_channels);
+ info.set_tensor_shape(shape);
info.set_fixed_point_position(fixed_point_position);
return true;
}