|
RAJA
RAJA provides a collection of platform portability abstractions for C++ HPC applications.
|
Min reducer class template. More...
Min reducer class template.
Usage example:
Real_ptr data = ...;
ReduceMin<reduce_policy, Real_type> my_min(init_val);
forall<exec_policy>( ..., [=] (Index_type i) {
my_min.min(data[i]);
}
Real_type minval = my_min.get();
*