From 21fda6ffee167d4f84a6976dfd94a711fb17a342 Mon Sep 17 00:00:00 2001 From: Sheri Zhang Date: Tue, 13 Apr 2021 10:26:37 +0100 Subject: Fix T_LOAD too few parameters issue Resolve: COMPMID-4370 Signed-off-by: Sheri Zhang Change-Id: I4b2a8bf252405fe9006784fa1769ad5b6e708a71 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5414 Reviewed-by: Giorgio Arena Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- src/core/CL/cl_kernels/winograd_output_transform.cl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/CL/cl_kernels/winograd_output_transform.cl') diff --git a/src/core/CL/cl_kernels/winograd_output_transform.cl b/src/core/CL/cl_kernels/winograd_output_transform.cl index 6bd90604e5..f257825967 100644 --- a/src/core/CL/cl_kernels/winograd_output_transform.cl +++ b/src/core/CL/cl_kernels/winograd_output_transform.cl @@ -254,7 +254,7 @@ __kernel void winograd_output_transform_2x2_7x7_nhwc( // Add bias TILE(DATA_TYPE, 1, N0, b); - T_LOAD(DATA_TYPE, 1, N0, BUFFER, bias, cout, 0, 0, b); + T_LOAD(DATA_TYPE, 1, N0, BUFFER, bias, cout, 0, 1, 0, b); T_ADD_BROADCAST_X(DATA_TYPE, 2, N0, out, b, out); #endif // defined(HAS_BIAS) @@ -314,7 +314,7 @@ __kernel void winograd_output_transform_2x2_7x7_nhwc( // Add bias TILE(DATA_TYPE, 1, N0, b); - T_LOAD(DATA_TYPE, 1, N0, BUFFER, bias, cout, 0, 0, b); + T_LOAD(DATA_TYPE, 1, N0, BUFFER, bias, cout, 0, 1, 0, b); T_ADD_BROADCAST_X(DATA_TYPE, 4, N0, out, b, out); #endif // defined(HAS_BIAS) -- cgit v1.2.1