summaryrefslogtreecommitdiff
path: root/silx/resources/opencl/medfilt.cl
diff options
context:
space:
mode:
Diffstat (limited to 'silx/resources/opencl/medfilt.cl')
-rw-r--r--silx/resources/opencl/medfilt.cl2
1 files changed, 1 insertions, 1 deletions
diff --git a/silx/resources/opencl/medfilt.cl b/silx/resources/opencl/medfilt.cl
index f1e342b..0680230 100644
--- a/silx/resources/opencl/medfilt.cl
+++ b/silx/resources/opencl/medfilt.cl
@@ -64,7 +64,7 @@ __kernel void medfilt2d(__global float *image, // input image
int width) // Image size along dim2 (nb columns)
{
int threadid = get_local_id(0);
- int wg = get_local_size(0);
+ //int wg = get_local_size(0);
int x = get_global_id(1);
if (x < width)