summaryrefslogtreecommitdiff
path: root/src/kernels/level3/convert_hermitian.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/level3/convert_hermitian.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/level3/convert_hermitian.opencl')
-rw-r--r--src/kernels/level3/convert_hermitian.opencl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernels/level3/convert_hermitian.opencl b/src/kernels/level3/convert_hermitian.opencl
index 53cc161a..272905eb 100644
--- a/src/kernels/level3/convert_hermitian.opencl
+++ b/src/kernels/level3/convert_hermitian.opencl
@@ -20,8 +20,8 @@ R"(
// Kernel to populate a squared hermitian matrix, given that the triangle which holds the data is
// stored as the lower-triangle of the input matrix. This uses the padding kernel's parameters.
-__attribute__((reqd_work_group_size(PAD_DIMX, PAD_DIMY, 1)))
-__kernel void HermLowerToSquared(const int src_dim,
+__kernel __attribute__((reqd_work_group_size(PAD_DIMX, PAD_DIMY, 1)))
+void HermLowerToSquared(const int src_dim,
const int src_ld, const int src_offset,
__global const real* restrict src,
const int dest_dim,
@@ -59,8 +59,8 @@ __kernel void HermLowerToSquared(const int src_dim,
}
// Same as above, but now the matrix' data is stored in the upper-triangle
-__attribute__((reqd_work_group_size(PAD_DIMX, PAD_DIMY, 1)))
-__kernel void HermUpperToSquared(const int src_dim,
+__kernel __attribute__((reqd_work_group_size(PAD_DIMX, PAD_DIMY, 1)))
+void HermUpperToSquared(const int src_dim,
const int src_ld, const int src_offset,
__global const real* restrict src,
const int dest_dim,