summaryrefslogtreecommitdiff
path: root/src/kernels/level1/xswap.opencl
diff options
context:
space:
mode:
authorD. Van Assche <dimitri.vanassche@macq.eu>2016-08-18 17:33:13 +0200
committerD. Van Assche <dimitri.vanassche@macq.eu>2016-08-18 17:33:13 +0200
commit57f1aa76857cf0566e05b43b9b2a98a3a6139c8b (patch)
tree4ed277095302ea0870b764dde32936dad56bb410 /src/kernels/level1/xswap.opencl
parent7c13bacf129291e3e295ecb6e833788477085fa0 (diff)
Adapt opencl files for 1.1 OpenCL
In OpenCL 1.1 __kernel has to be before __attribute__, at least with Vivante compiler.
Diffstat (limited to 'src/kernels/level1/xswap.opencl')
-rw-r--r--src/kernels/level1/xswap.opencl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernels/level1/xswap.opencl b/src/kernels/level1/xswap.opencl
index f6487b58..40336a67 100644
--- a/src/kernels/level1/xswap.opencl
+++ b/src/kernels/level1/xswap.opencl
@@ -22,8 +22,8 @@ R"(
// =================================================================================================
// Full version of the kernel with offsets and strided accesses
-__attribute__((reqd_work_group_size(WGS, 1, 1)))
-__kernel void Xswap(const int n,
+__kernel __attribute__((reqd_work_group_size(WGS, 1, 1)))
+void Xswap(const int n,
__global real* xgm, const int x_offset, const int x_inc,
__global real* ygm, const int y_offset, const int y_inc) {
@@ -40,8 +40,8 @@ __kernel void Xswap(const int n,
// Faster version of the kernel without offsets and strided accesses. Also assumes that 'n' is
// dividable by 'VW', 'WGS' and 'WPT'.
-__attribute__((reqd_work_group_size(WGS, 1, 1)))
-__kernel void XswapFast(const int n,
+__kernel __attribute__((reqd_work_group_size(WGS, 1, 1)))
+void XswapFast(const int n,
__global realV* xgm,
__global realV* ygm) {
#pragma unroll