From f349731d5498f484995514112551c1b60ca4f6d3 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Tue, 17 Oct 2017 19:53:09 +0200 Subject: CUDA kernel compilation fixes --- src/kernels/level2/level2.opencl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kernels/level2') diff --git a/src/kernels/level2/level2.opencl b/src/kernels/level2/level2.opencl index 505231ca..ff46c2a5 100644 --- a/src/kernels/level2/level2.opencl +++ b/src/kernels/level2/level2.opencl @@ -34,7 +34,7 @@ R"( // Returns an element from a vector INLINE_FUNC real LoadVector(const int id, const int max, - __global real* gm, const int offset, const int inc, + const __global real* gm, const int offset, const int inc, const int do_conjugate) { if (id < max) { real result = gm[id*inc + offset]; -- cgit v1.2.3