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.cl18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/CL/cl_kernels/winograd_output_transform.cl b/src/core/CL/cl_kernels/winograd_output_transform.cl
index a56ce3de6f..59402bf9b3 100644
--- a/src/core/CL/cl_kernels/winograd_output_transform.cl
+++ b/src/core/CL/cl_kernels/winograd_output_transform.cl
@@ -690,9 +690,9 @@ __kernel void winograd_output_transform_4x4_3x3_nhwc(
#if defined(WINOGRAD_OUTPUT_TRANSFORM_HORIZONTAL) || defined(WINOGRAD_OUTPUT_TRANSFORM_VERTICAL)
- TILE(DATA_TYPE, 6, N0, in) = { { 0 } };
- TILE(DATA_TYPE, 4, N0, out) = { { 0 } };
- TILE(uint, 6, 1, src_indirect_y) = { { 0 } };
+ TILE(DATA_TYPE, 6, N0, in) = {{ { 0 } }};
+ TILE(DATA_TYPE, 4, N0, out) = {{ { 0 } }};
+ TILE(uint, 6, 1, src_indirect_y) = {{ { 0 } }};
LOOP_UNROLLING(int, i, 0, 6, 1)
{
@@ -723,7 +723,7 @@ __kernel void winograd_output_transform_4x4_3x3_nhwc(
T_ACTIVATION(DATA_TYPE, 4, N0, ACTIVATION_TYPE, A_VAL, B_VAL, out, out);
- TILE(uint, 4, 1, dst_indirect_y) = { { 0 } };
+ TILE(uint, 4, 1, dst_indirect_y) = {{ { 0 } }};
// Calculate the destination indirect Y
#if defined(WINOGRAD_OUTPUT_TRANSFORM_VERTICAL)
@@ -748,9 +748,9 @@ __kernel void winograd_output_transform_4x4_3x3_nhwc(
#else // defined(WINOGRAD_OUTPUT_TRANSFORM_HORIZONTAL) || defined(WINOGRAD_OUTPUT_TRANSFORM_VERTICAL)
// Calculate the indirect Y for the source tensor
- TILE(DATA_TYPE, 36, N0, in) = { { 0 } };
- TILE(DATA_TYPE, 4, N0, tmp) = { { 0 } };
- TILE(uint, 36, 1, src_indirect_y) = { { 0 } };
+ TILE(DATA_TYPE, 36, N0, in) = {{ { 0 } }};
+ TILE(DATA_TYPE, 4, N0, tmp) = {{ { 0 } }};
+ TILE(uint, 36, 1, src_indirect_y) = {{ { 0 } }};
LOOP_UNROLLING(int, i, 0, 36, 1)
{
@@ -775,7 +775,7 @@ __kernel void winograd_output_transform_4x4_3x3_nhwc(
}
// Compute the output tile
- TILE(DATA_TYPE, 16, N0, out) = { { 0 } };
+ TILE(DATA_TYPE, 16, N0, out) = {{ { 0 } }};
LOOP_UNROLLING(int, i, 0, 4, 1)
{
@@ -804,7 +804,7 @@ __kernel void winograd_output_transform_4x4_3x3_nhwc(
T_ACTIVATION(DATA_TYPE, 16, N0, ACTIVATION_TYPE, A_VAL, B_VAL, out, out);
- TILE(uint, 16, 1, dst_indirect_y) = { { 0 } };
+ TILE(uint, 16, 1, dst_indirect_y) = {{ { 0 } }};
// Calculate the destination indirect Y
LOOP_UNROLLING(int, yk, 0, 4, 1)