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

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

#include <Events.hpp>

Concept definition

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

Detailed Description

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

Definition at line 272 of file Events.hpp.