From 728d3cf79fb268c3069c31840271ae08b3993842 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Fri, 21 Sep 2018 13:41:35 +0100 Subject: COMPMID-1598 : Fix compilation error in CLDepthwiseConvolutionQS8 kernel Change-Id: I65eeb0cba2af462c6ef64a536ad263c407d62811 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/149609 Reviewed-by: Michalis Spyrou Tested-by: bsgcomp --- src/core/CL/cl_kernels/depthwise_convolution_quantized.cl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/CL/cl_kernels') diff --git a/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl b/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl index b3edc52612..7cd48790c6 100644 --- a/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl +++ b/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl @@ -138,7 +138,7 @@ __kernel void depthwise_convolution_3x3_quantized_nchw( #if defined(HAS_BIAS) Vector biases = CONVERT_TO_VECTOR_STRUCT_NO_STEP(biases); - int bias_value = *((__global int *)(vector_offset(&biases, channel)); + int bias_value = *((__global int *)(vector_offset(&biases, channel))); #endif //defined(HAS_BIAS) // Load relevant input and weights data (Accounts depth multiplier when indexing input, OFM = IFM * DEPTH_MULTIPLIER) -- cgit v1.2.1