kokkos-utils 0.0.1
 
Loading...
Searching...
No Matches
Kokkos::utils::callbacks::IndexedEvent Concept Reference

Concept to constrain any event type that has a member variable event_id. More...

#include <Events.hpp>

Concept definition

template<typename EventType>
concept Kokkos::utils::callbacks::IndexedEvent = Event<EventType> && requires (EventType event) {
{ event.event_id } -> std::same_as<uint64_t&>;
}
Concept to constrain any event type that has a member variable event_id.
Definition Events.hpp:266

Detailed Description

Concept to constrain any event type that has a member variable event_id.

Definition at line 266 of file Events.hpp.