From 000d33a0e4bfc129a8f2968d4e5ee0793df70a1e Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Mon, 3 Sep 2018 16:59:20 +0100 Subject: COMPMID-1552: support kernels sizes 1x7, 7x1, 1x5, 5x1 in NEWinograd Refactored the validate method to make it easier to maintain in the future when adding support for new kernels sizes Change-Id: I12d9fe7af15ceb0e655cef61ca94407558fb29e8 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/146713 Tested-by: Jenkins Reviewed-by: Michalis Spyrou Reviewed-by: Anthony Barbier --- .../core/NEON/kernels/convolution/winograd/transforms/output.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arm_compute/core') diff --git a/arm_compute/core/NEON/kernels/convolution/winograd/transforms/output.hpp b/arm_compute/core/NEON/kernels/convolution/winograd/transforms/output.hpp index 6ed146bf85..00327f5102 100644 --- a/arm_compute/core/NEON/kernels/convolution/winograd/transforms/output.hpp +++ b/arm_compute/core/NEON/kernels/convolution/winograd/transforms/output.hpp @@ -217,7 +217,7 @@ namespace winograd _matrix_base + start_channel, _matrix_stride, _matrix_row_stride, - (_biases)?(_biases + start_channel):(nullptr), + (_biases != nullptr) ? _biases + start_channel : nullptr, _outptr + start_channel ); } -- cgit v1.2.1