aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/winograd_output_transform.cl
diff options
context:
space:
mode:
authorSheri Zhang <sheri.zhang@arm.com>2021-04-13 10:26:37 +0100
committerSheri Zhang <sheri.zhang@arm.com>2021-04-13 12:51:38 +0000
commit21fda6ffee167d4f84a6976dfd94a711fb17a342 (patch)
treea9f2578454967192456670159579d93632948269 /src/core/CL/cl_kernels/winograd_output_transform.cl
parent63825e8259508dc7731b6de2e008c5ef8c738d79 (diff)
downloadComputeLibrary-21fda6ffee167d4f84a6976dfd94a711fb17a342.tar.gz
Fix T_LOAD too few parameters issue
Resolve: COMPMID-4370 Signed-off-by: Sheri Zhang <sheri.zhang@arm.com> Change-Id: I4b2a8bf252405fe9006784fa1769ad5b6e708a71 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5414 Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/core/CL/cl_kernels/winograd_output_transform.cl')
-rw-r--r--src/core/CL/cl_kernels/winograd_output_transform.cl4
1 files changed, 2 insertions, 2 deletions
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)