From 1ff480b9537b19d0226e54d9f0027486a3465bbb Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Thu, 11 Jan 2018 09:23:37 +0000 Subject: COMPMID-765: Fixed unused variable warning Change-Id: I244954f748169cefcf71409bc9fdbc45de816ba5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/115878 Reviewed-by: Pablo Tello Tested-by: Jenkins --- src/runtime/NEON/functions/NEDeconvolutionLayer.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/runtime/NEON/functions') diff --git a/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp b/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp index c4bca11d14..7bce8a6b7c 100644 --- a/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp +++ b/src/runtime/NEON/functions/NEDeconvolutionLayer.cpp @@ -60,6 +60,7 @@ void NEDeconvolutionLayer::configure(ITensor *input, const ITensor *weights, con const TensorShape output_shape = deconvolution_output_shape(out_dims, input->info()->tensor_shape(), weights->info()->tensor_shape()); + ARM_COMPUTE_UNUSED(output_shape); ARM_COMPUTE_ERROR_ON_MSG(output->info()->dimension(Window::DimX) != output_shape.x(), "Output's width is invalid."); ARM_COMPUTE_ERROR_ON_MSG(output->info()->dimension(Window::DimY) != output_shape.y(), "Output's height is invalid."); ARM_COMPUTE_ERROR_ON_MSG(output->info()->dimension(Window::DimZ) != output_shape.z(), "Output's depth is invalid."); -- cgit v1.2.1