From af486c11dd122a3bb9af8a835b46e4ea94b90eb3 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 10 Dec 2019 18:13:30 +0000 Subject: COMPMID-2819: Remove invalid check in NEDirectConvolutionLayerOutputStageKernel Signed-off-by: Georgios Pinitas Change-Id: Ife0d6e5e2a1c7fd2d76302053676de05446bdb02 Reviewed-on: https://review.mlplatform.org/c/2441 Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp b/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp index 7c029a6b54..4313a5e312 100644 --- a/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp +++ b/src/core/NEON/kernels/NEDirectConvolutionLayerOutputStageKernel.cpp @@ -70,10 +70,6 @@ Status validate_arguments(const ITensorInfo *input, const ITensorInfo *bias, con ARM_COMPUTE_RETURN_ERROR_ON(bias->dimension(0) != input->dimension(get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::CHANNEL))); ARM_COMPUTE_RETURN_ERROR_ON(bias->num_dimensions() > 1); } - else - { - ARM_COMPUTE_RETURN_ERROR_ON_MSG(is_data_type_float(input->data_type()), "Calling output stage kernel with floating point arguments"); - } // Checks performed when output is configured if((output != nullptr) && (output->total_size() != 0)) -- cgit v1.2.1