summaryrefslogtreecommitdiff
path: root/src/kernels/levelx/col2im.opencl
diff options
context:
space:
mode:
authorAngus, Alexander <aangus@qti.qualcomm.com>2023-01-17 08:35:29 -0800
committerAngus, Alexander <aangus@qti.qualcomm.com>2023-01-17 08:35:29 -0800
commit73f49e9b3d4abc4214122e4b8c07a736e01626ee (patch)
tree588a426b6350a5c982d89d98749ae78667fd23b4 /src/kernels/levelx/col2im.opencl
parentff6a5689dff31ed3c1f1906a6b425252fd60a9ee (diff)
Updated according to feedback from CNugteren
Diffstat (limited to 'src/kernels/levelx/col2im.opencl')
-rw-r--r--src/kernels/levelx/col2im.opencl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernels/levelx/col2im.opencl b/src/kernels/levelx/col2im.opencl
index fcc307c6..ab0ffbfa 100644
--- a/src/kernels/levelx/col2im.opencl
+++ b/src/kernels/levelx/col2im.opencl
@@ -94,7 +94,7 @@ INLINE_FUNC void Xcol2im(const int input_h, const int input_w, const int channel
// Kernel flip version of the Xcol2im kernel (for convolution)
#if RELAX_WORKGROUP_SIZE == 1
__kernel
-#elif
+#else
__kernel __attribute__((reqd_work_group_size(COPY_DIMX, COPY_DIMY, 1)))
#endif
void Xcol2imKernelFlip(const int input_h, const int input_w, const int channels,
@@ -119,7 +119,7 @@ void Xcol2imKernelFlip(const int input_h, const int input_w, const int channels,
// Normal version of the Xcol2im kernel (for cross-correlation)
#if RELAX_WORKGROUP_SIZE == 1
__kernel
-#elif
+#else
__kernel __attribute__((reqd_work_group_size(COPY_DIMX, COPY_DIMY, 1)))
#endif
void Xcol2imKernelNormal(const int input_h, const int input_w, const int channels,