kokkos-execution 0.0.1
Loading...
Searching...
No Matches
domain.hpp
Go to the documentation of this file.
1#ifndef KOKKOS_EXECUTION_EXECUTION_SPACE_DOMAIN_HPP
2#define KOKKOS_EXECUTION_EXECUTION_SPACE_DOMAIN_HPP
3
5
8
10
11struct Domain
12 : public Impl::ApplySender<Domain, ApplySenderFor>
13 , public Impl::TransformSender<Domain, TransformSenderFor> {
16};
17
18} // namespace Kokkos::Execution::ExecutionSpaceImpl
19
20#endif // KOKKOS_EXECUTION_EXECUTION_SPACE_DOMAIN_HPP
static auto apply_sender(Tag, Sndr &&sndr, Args &&... args) noexcept(stdexec::__nothrow_callable< ApplySenderFor< Tag >, Sndr &&, Args &&... >)
Definition domain.hpp:18
static auto transform_sender(stdexec::set_value_t, Sndr &&sndr, const Env &env) noexcept(stdexec::__nothrow_applicable< TransformSenderFor< stdexec::tag_of_t< Sndr > >, Sndr &&, const Env & >)
Definition domain.hpp:32