From 8905da259df201919f86ca0c5be9dc1a577ac038 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Tue, 5 Sep 2017 18:49:23 +0200 Subject: Fixed a modulo and division issue manifesting on Apple OpenCL for im2col --- src/kernels/levelx/im2col.opencl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernels') diff --git a/src/kernels/levelx/im2col.opencl b/src/kernels/levelx/im2col.opencl index a64d6538..e7f69420 100644 --- a/src/kernels/levelx/im2col.opencl +++ b/src/kernels/levelx/im2col.opencl @@ -37,8 +37,8 @@ void im2col(const int input_h, const int input_w, const int channels, // Thread IDs const int w_id = get_global_id(0); // image width, max 'output_w' - const int h_id = get_global_id(1) % output_h; // image height, max 'output_h' - const int c_id = get_global_id(1) / output_h; // input channels + const int h_id = ((int)get_global_id(1)) % output_h; // image height, max 'output_h' + const int c_id = ((int)get_global_id(1)) / output_h; // input channels if (h_id < output_h && w_id < output_w && c_id < channels) { #pragma unroll -- cgit v1.2.3