boostorg / compute

A C++ GPU Computing Library for OpenCL
http://boostorg.github.io/compute/
Boost Software License 1.0
1.52k stars 333 forks source link

Fix min-max extrema kernel code #880

Open e-kud opened 1 year ago

e-kud commented 1 year ago

Due to ceiling of block size, the index may be out of bounds. As index is always used, we must have it valid regardless while (index < end) condition.