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