From 73f49e9b3d4abc4214122e4b8c07a736e01626ee Mon Sep 17 00:00:00 2001 From: "Angus, Alexander" Date: Tue, 17 Jan 2023 08:35:29 -0800 Subject: Updated according to feedback from CNugteren --- src/kernels/level1/xamax.opencl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernels/level1/xamax.opencl') diff --git a/src/kernels/level1/xamax.opencl b/src/kernels/level1/xamax.opencl index 3600b9d2..06a6773b 100644 --- a/src/kernels/level1/xamax.opencl +++ b/src/kernels/level1/xamax.opencl @@ -32,7 +32,7 @@ R"( // The main reduction kernel, performing the loading and the majority of the operation #if RELAX_WORKGROUP_SIZE == 1 __kernel -#elif +#else __kernel __attribute__((reqd_work_group_size(WGS1, 1, 1))) #endif void Xamax(const int n, @@ -102,7 +102,7 @@ void Xamax(const int n, // be launched with a single workgroup only. #if RELAX_WORKGROUP_SIZE == 1 __kernel -#elif +#else __kernel __attribute__((reqd_work_group_size(WGS2, 1, 1))) #endif void XamaxEpilogue(const __global singlereal* restrict maxgm, -- cgit v1.2.3