aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/cl_kernels/winograd_output_transform.cl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/CL/cl_kernels/winograd_output_transform.cl')
-rw-r--r--src/core/CL/cl_kernels/winograd_output_transform.cl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/CL/cl_kernels/winograd_output_transform.cl b/src/core/CL/cl_kernels/winograd_output_transform.cl
index bb159a7f4c..7065da1cc5 100644
--- a/src/core/CL/cl_kernels/winograd_output_transform.cl
+++ b/src/core/CL/cl_kernels/winograd_output_transform.cl
@@ -507,7 +507,7 @@ __kernel void winograd_output_transform_4x4_3x3_nhwc(
// Add bias
Vector bias = CONVERT_TO_VECTOR_STRUCT_NO_STEP(bias);
- float b = (float) * ((__global float *)(vector_offset(&bias, z_out)));
+ float b = (float) * ((__global float *)(vector_offset(&bias, x_out)));
out00 += (float)b;
out01 += (float)b;
@@ -856,7 +856,7 @@ __kernel void winograd_output_transform_4x4_5x5_nhwc(
// Add bias
Vector bias = CONVERT_TO_VECTOR_STRUCT_NO_STEP(bias);
- float b = (float) * ((__global float *)(vector_offset(&bias, z_out)));
+ float b = (float) * ((__global float *)(vector_offset(&bias, x_out)));
out00 += (float)b;
out01 += (float)b;
@@ -981,7 +981,7 @@ __kernel void winograd_output_transform_4x4_5x5_nhwc(
// Add bias
Vector bias = CONVERT_TO_VECTOR_STRUCT_NO_STEP(bias);
- float b = (float) * ((__global float *)(vector_offset(&bias, z_out)));
+ float b = (float) * ((__global float *)(vector_offset(&bias, x_out)));
out_col0 += (float4)b;
out_col1 += (float4)b;