|
RAJA
RAJA provides a collection of platform portability abstractions for C++ HPC applications.
|
Header file providing RAJA scan declarations. More...
#include "RAJA/config.hpp"#include <algorithm>#include <functional>#include <iterator>#include "RAJA/util/macros.hpp"#include "RAJA/util/concepts.hpp"#include "RAJA/policy/sequential/policy.hpp"Go to the source code of this file.
Namespaces | |
| RAJA | |
| RAJA::impl | |
| RAJA::impl::scan | |
Functions | |
| template<typename ExecPolicy , typename Iter , typename BinFn > | |
| RAJA_INLINE concepts::enable_if_t< resources::EventProxy< resources::Host >, type_traits::is_sequential_policy< ExecPolicy > > | RAJA::impl::scan::inclusive_inplace (resources::Host host_res, const ExecPolicy &, Iter begin, Iter end, BinFn f) |
| template<typename ExecPolicy , typename Iter , typename BinFn , typename T > | |
| RAJA_INLINE concepts::enable_if_t< resources::EventProxy< resources::Host >, type_traits::is_sequential_policy< ExecPolicy > > | RAJA::impl::scan::exclusive_inplace (resources::Host host_res, const ExecPolicy &, Iter begin, Iter end, BinFn f, T v) |
| template<typename ExecPolicy , typename Iter , typename OutIter , typename BinFn > | |
| RAJA_INLINE concepts::enable_if_t< resources::EventProxy< resources::Host >, type_traits::is_sequential_policy< ExecPolicy > > | RAJA::impl::scan::inclusive (resources::Host host_res, const ExecPolicy &, const Iter begin, const Iter end, OutIter out, BinFn f) |
| template<typename ExecPolicy , typename Iter , typename OutIter , typename BinFn , typename T > | |
| RAJA_INLINE concepts::enable_if_t< resources::EventProxy< resources::Host >, type_traits::is_sequential_policy< ExecPolicy > > | RAJA::impl::scan::exclusive (resources::Host host_res, const ExecPolicy &, const Iter begin, const Iter end, OutIter out, BinFn f, T v) |
Header file providing RAJA scan declarations.