kokkos-execution 0.0.1
Loading...
Searching...
No Matches
Kokkos::Execution::Impl::dispatching_sender Concept Reference

Concept that constrains the type of a sender that dispatches a functor for execution. More...

#include <sender_concepts.hpp>

Concept definition

template<typename Sndr>
concept Kokkos::Execution::Impl::dispatching_sender = stdexec::sender<Sndr> && requires {
typename stdexec::tag_of_t<Sndr>;
requires stdexec::__one_of<
stdexec::tag_of_t<Sndr>,
stdexec::bulk_t,
stdexec::then_t,
>;
}
Concept that constrains the type of a sender that dispatches a functor for execution.
Custom algorithm for the Kokkos::parallel_for construct.

Detailed Description

Concept that constrains the type of a sender that dispatches a functor for execution.

Definition at line 11 of file sender_concepts.hpp.