aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-02-22 12:56:51 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:47:40 +0000
commit5b2191ed680fa90b90df13f23d7cc252adc4e382 (patch)
tree55b873e96c970903de4eb47709ca68b4b8acf468 /src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
parentb4e3e1c371d8091e86ee1c6e704057559bbe1554 (diff)
downloadComputeLibrary-5b2191ed680fa90b90df13f23d7cc252adc4e382.tar.gz
COMPMID-765: Fix incorrect comma position in DepthwiseConv cl kernel.
Change-Id: Ica047a92d3ab199ffc65a512b9ba10e865639dfe Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/121806 Reviewed-by: Les Bell <les.bell@arm.com> Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/CL/cl_kernels/depthwise_convolution_quantized.cl')
-rw-r--r--src/core/CL/cl_kernels/depthwise_convolution_quantized.cl3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl b/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
index b2527a4c7d..40538a156d 100644
--- a/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
+++ b/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
@@ -97,8 +97,9 @@
__kernel void depthwise_convolution_3x3_quantized(
TENSOR3D_DECLARATION(src),
TENSOR3D_DECLARATION(dst),
- TENSOR3D_DECLARATION(weights),
+ TENSOR3D_DECLARATION(weights)
#if defined(HAS_BIAS)
+ ,
VECTOR_DECLARATION(biases)
#endif //defined(HAS_BIAS)
)