From 517055bbb99b899d366bc79446188548ba0aeda0 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 25 Oct 2018 16:01:01 +0100 Subject: COMPMID-1451: Remove invalid bias check in NEDeconvolutionLayer Change-Id: Ibb6b0ceed19111c01fcc96eb50e461f9811b61b9 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/155260 Reviewed-by: Michele DiGiorgio Tested-by: bsgcomp --- src/runtime/NEON/functions/NEDeconvolutionLayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/runtime/NEON/functions') diff --git a/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp b/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp index 23def5959b..c2d7d6a9d9 100644 --- a/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp +++ b/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp @@ -66,7 +66,7 @@ Status NEDeconvolutionLayer::validate(const ITensorInfo *input, const ITensorInf auto out_dims = deconvolution_output_dimensions(input->dimension(0), input->dimension(1), weights->dimension(0), weights->dimension(1), info.pad().first, info.pad().second, stride_x, stride_y); - ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights, bias); + ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, weights); if(bias != nullptr) { -- cgit v1.2.1