aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
)