From 55e167814d462a803dbac82db17603cbe1258b4f Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Tue, 15 Jan 2019 13:21:57 +0000 Subject: COMPMID-1724: CL Implement Prod fix Change-Id: I9cf07afe6198e3364ede06faaa9a09a782a34792 Reviewed-on: https://review.mlplatform.org/519 Tested-by: Arm Jenkins Reviewed-by: Michalis Spyrou --- src/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.cpp') diff --git a/src/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.cpp b/src/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.cpp index d9aa50d9e1..ba05838920 100644 --- a/src/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.cpp +++ b/src/runtime/GLES_COMPUTE/functions/GCDepthwiseConvolutionLayer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -43,7 +43,7 @@ void GCDepthwiseConvolutionLayer3x3::configure(IGCTensor *input, const IGCTensor _kernel = std::move(k); // Configure border handler - _border_handler.configure(input, _kernel->border_size(), BorderMode::CONSTANT, PixelValue(0)); + _border_handler.configure(input, _kernel->border_size(), BorderMode::CONSTANT, PixelValue()); _shift_handler.configure(input); -- cgit v1.2.1