Use to count events that occurs during Monte-Carlo processing cycles.
More...
#include <events.hpp>
|
| EventContainer () |
| Default container, initalise counter.
|
|
std::span< std::size_t > | get_span () const |
| Get std const view of _events counter.
|
|
KOKKOS_INLINE_FUNCTION void | clear () const |
| Reset counters.
|
|
template<EventType event> |
constexpr std::size_t | get () const |
| Getter to specific event counter.
|
|
template<EventType event> |
KOKKOS_FORCEINLINE_FUNCTION constexpr void | incr () const |
| Increment specific event counter.
|
|
template<EventType event> |
KOKKOS_FORCEINLINE_FUNCTION constexpr void | add (size_t val) const |
|
template<EventType event> |
KOKKOS_FORCEINLINE_FUNCTION constexpr void | wrap_incr () const |
|
template<class Archive > |
void | save (Archive &ar) const |
|
template<class Archive > |
void | load (Archive &ar) |
|
Use to count events that occurs during Monte-Carlo processing cycles.
◆ EventContainer()
MC::EventContainer::EventContainer |
( |
| ) |
|
|
inline |
Default container, initalise counter.
◆ add()
KOKKOS_FORCEINLINE_FUNCTION constexpr void MC::EventContainer::add |
( |
size_t | val | ) |
const |
|
inlineconstexpr |
◆ clear()
KOKKOS_INLINE_FUNCTION void MC::EventContainer::clear |
( |
| ) |
const |
|
inline |
◆ get()
std::size_t MC::EventContainer::get |
( |
| ) |
const |
|
inlinenodiscardconstexpr |
Getter to specific event counter.
- Template Parameters
-
- Warning
- This function is thread_safe because we get a copy of the current counter
◆ get_span()
std::span< std::size_t > MC::EventContainer::get_span |
( |
| ) |
const |
|
inlinenodiscard |
Get std const view of _events counter.
◆ incr()
KOKKOS_FORCEINLINE_FUNCTION constexpr void MC::EventContainer::incr |
( |
| ) |
const |
|
inlineconstexpr |
Increment specific event counter.
- Warning
- This function is thread_safe and can be use in kernel
- Template Parameters
-
◆ load()
template<class Archive >
void MC::EventContainer::load |
( |
Archive & | ar | ) |
|
|
inline |
◆ reduce()
EventContainer MC::EventContainer::reduce |
( |
std::span< std::size_t > | _data | ) |
|
|
static |
Transform a linear contiguous counter data obtained via MPI gather into EventContainer object.
- Parameters
-
- Warning
- _data size has to be a multiple of number_event_type
◆ save()
template<class Archive >
void MC::EventContainer::save |
( |
Archive & | ar | ) |
const |
|
inline |
◆ wrap_incr()
KOKKOS_FORCEINLINE_FUNCTION constexpr void MC::EventContainer::wrap_incr |
( |
| ) |
const |
|
inlineconstexpr |
◆ _events
Kokkos::View<std::size_t[number_event_type], Kokkos::SharedSpace> MC::EventContainer::_events |
The documentation for this struct was generated from the following files:
- apps/libs/mc/public/mc/events.hpp
- apps/libs/mc/src/events.cpp