4#include "exec/split.hpp"
5#include "exec/static_thread_pool.hpp"
31using namespace Kokkos::utils::callbacks;
50 stdexec::sender
auto chain = stdexec::schedule(esc.
get_scheduler()) | experimental::execution::split();
53 recorder_listener_t::record([chain = std::move(chain)]()
mutable { stdexec::sync_wait(std::move(chain)); }),
62 const view_s_t data(Kokkos::view_alloc(
exec,
"data - shared space"));
64 experimental::execution::static_thread_pool pool{4};
67 stdexec::sender
auto fork = stdexec::schedule(pool.get_scheduler()) | experimental::execution::split();
75 auto chain = stdexec::when_all(std::move(branch_a), std::move(branch_b), std::move(branch_c))
76 | stdexec::then([&data]() {
78 Kokkos::abort(
"Synchronization issue.");
81 ASSERT_EQ(data(), 0) <<
"Eager execution is not allowed.";
83 const auto recorded_events = recorder_listener_t::record(
84 [chain = std::move(chain)]()
mutable { stdexec::sync_wait(std::move(chain)); });
88 ASSERT_THAT(recorded_events, ::testing::SizeIs(8));
92 std::ranges::for_each(
93 recorded_events | std::views::filter([](
const auto& event) ->
bool {
94 return std::holds_alternative<Kokkos::Execution::Impl::RecordEvent>(event);
96 [&](
const auto& event) {
102 testing::UnorderedElementsAre(
111 ASSERT_EQ(data(), 5);
constexpr std::string dispatch_label(const Exec &, Label &&label)
Get the dispatch label from Exec and label.
#define MATCHER_FOR_WAIT_EVENT(_record_event_variant_)
#define MATCHER_FOR_BEGIN_PFOR(_exec_, _label_)
#define MATCHER_FOR_RECORD_EVENT(_exec_)
#define MATCHER_FOR_BEGIN_FENCE(_exec_, _label_)
RecorderListener< EventDiscardMatcher< TEST_EXECUTION_SPACE >, BeginFenceEvent, BeginParallelForEvent, Kokkos::Execution::Impl::RecordEvent, Kokkos::Execution::Impl::WaitEvent > recorder_listener_t
#define KOKKOS_EXECUTION_STDEXEC_PRAGMA_DIAGNOSTIC_IGNORED
Basic list of ignored diagnostics when including anything from stdexec.
#define THEN_INCREMENT_ATOMIC(_data_)
Same as THEN_INCREMENT, using Tests::Utils::atomic_add. // NOLINTNEXTLINE(cppcoreguidelines-macro-usa...
Matcher to filter out events that are just noise for tests.
auto get_scheduler() const noexcept -> ExecutionSpaceImpl::Scheduler< Exec >
Event to be sent to Kokkos::utils::callbacks::dispatch when an event is recorded on an execution spac...
Event to be sent to Kokkos::utils::callbacks::dispatch when an event is being waited for.
Kokkos::View< value_t, Kokkos::SharedSpace > view_s_t
Kokkos::Execution::ExecutionSpaceContext< Exec > context_t