|
| template<typename F , typename T_ParticleType , int NAR, int NAI> |
| __host__ __device__ auto | amrex::particle_detail::call_f (F const &f, const ConstParticleTileData< T_ParticleType, NAR, NAI > &p, const int i) noexcept |
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceSum (PC const &pc, F &&f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates over all particles on all levels.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceSum (PC const &pc, int lev, F &&f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates only on the specified level.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceSum (PC const &pc, int lev_min, int lev_max, F const &f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates from the specified lev_min to lev_max.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceMax (PC const &pc, F &&f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates over all particles on all levels.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceMax (PC const &pc, int lev, F &&f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates only on the specified level.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceMax (PC const &pc, int lev_min, int lev_max, F const &f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates from the specified lev_min to lev_max.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceMin (PC const &pc, F &&f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates over all particles on all levels.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceMin (PC const &pc, int lev, F &&f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates only on the specified level.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| auto | amrex::ReduceMin (PC const &pc, int lev_min, int lev_max, F const &f) -> decltype(particle_detail::call_f(f, typename PC::ConstPTDType(), int())) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates from the specified lev_min to lev_max.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| bool | amrex::ReduceLogicalAnd (PC const &pc, F &&f) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates over all particles on all levels.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| bool | amrex::ReduceLogicalAnd (PC const &pc, int lev, F &&f) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates only on the specified level.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| bool | amrex::ReduceLogicalAnd (PC const &pc, int lev_min, int lev_max, F const &f) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates from the specified lev_min to lev_max.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| bool | amrex::ReduceLogicalOr (PC const &pc, F &&f) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates over all particles on all levels.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| bool | amrex::ReduceLogicalOr (PC const &pc, int lev, F &&f) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates only on the specified level.
|
| |
| template<class PC , class F , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| bool | amrex::ReduceLogicalOr (PC const &pc, int lev_min, int lev_max, F const &f) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates from the specified lev_min to lev_max.
|
| |
| template<class RD , class PC , class F , class ReduceOps , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| RD::Type | amrex::ParticleReduce (PC const &pc, F &&f, ReduceOps &reduce_ops) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates over all particles on all levels.
|
| |
| template<class RD , class PC , class F , class ReduceOps , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| RD::Type | amrex::ParticleReduce (PC const &pc, int lev, F &&f, ReduceOps &reduce_ops) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates only on the specified level.
|
| |
| template<class RD , class PC , class F , class ReduceOps , std::enable_if_t< IsParticleContainer< PC >::value, int > foo = 0> |
| RD::Type | amrex::ParticleReduce (PC const &pc, int lev_min, int lev_max, F const &f, ReduceOps &reduce_ops) |
| | A general reduction method for the particles in a ParticleContainer that can run on either CPUs or GPUs. This version operates from the specified lev_min to lev_max.
|
| |