aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2019-10-22 10:29:03 +0100
committerMichele Di Giorgio <michele.digiorgio@arm.com>2019-10-22 11:09:30 +0000
commit1dce3101ef8d77c8cf0af7dfd4af6595a0136b91 (patch)
tree43482068113d40b86fcaa9d4fb0e08d7bad7d72f
parent314598f31a01ed9419fcd68c13df28cff1b2fc4b (diff)
downloadComputeLibrary-1dce3101ef8d77c8cf0af7dfd4af6595a0136b91.tar.gz
COMPMID-2452: Fix CLDepthwiseConvolutionLayerNativeKernel
Change-Id: I284e4f4200a4b688bfd908e417b00973b547abda Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/2140 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com>
-rw-r--r--src/core/CL/cl_kernels/depthwise_convolution.cl3
-rw-r--r--src/core/CL/cl_kernels/depthwise_convolution_quantized.cl3
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/CL/cl_kernels/depthwise_convolution.cl b/src/core/CL/cl_kernels/depthwise_convolution.cl
index 3a227282ff..c050175798 100644
--- a/src/core/CL/cl_kernels/depthwise_convolution.cl
+++ b/src/core/CL/cl_kernels/depthwise_convolution.cl
@@ -1377,8 +1377,9 @@ __kernel void depthwise_convolution_3x3_stridex2_stridey2_bifrost_f16(
__kernel void dwc_MxN_native_fp_nhwc(
TENSOR4D_DECLARATION(src),
TENSOR4D_DECLARATION(dst),
- TENSOR3D_DECLARATION(weights),
+ TENSOR3D_DECLARATION(weights)
#if defined(HAS_BIAS)
+ ,
VECTOR_DECLARATION(biases)
#endif // defined(HAS_BIAS)
)
diff --git a/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl b/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
index 10872d460a..94373b74e7 100644
--- a/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
+++ b/src/core/CL/cl_kernels/depthwise_convolution_quantized.cl
@@ -1434,8 +1434,9 @@ __kernel void dwc_3x3_reshaped_qasymm8_dot8_stride1_nhwc(
__kernel void dwc_MxN_native_quantized8_nhwc(
TENSOR4D_DECLARATION(src),
TENSOR4D_DECLARATION(dst),
- TENSOR3D_DECLARATION(weights),
+ TENSOR3D_DECLARATION(weights)
#if defined(HAS_BIAS)
+ ,
VECTOR_DECLARATION(biases)
#endif // defined(HAS_BIAS)
)