Find minimum

Hi, is there an implementation of a algorithm in CUDA to find a minimum within an array? Or a paper how to do it in parallel?

Hi,

use cudpp library.

The min is found by using parallel prefix scan algo and fold the min operator on the array.