kokkos-execution 0.0.1
Loading...
Searching...
No Matches
test_split.cpp
Go to the documentation of this file.
2PRAGMA_DIAGNOSTIC_PUSH
4#include "exec/split.hpp"
5#include "exec/static_thread_pool.hpp"
6PRAGMA_DIAGNOSTIC_POP
7
9
12
17
29
31
32using namespace Kokkos::utils::callbacks;
33
46
48TEST_F(SplitTest, split_and_sync_wait) {
49 const context_t esc{exec};
50
51 stdexec::sender auto chain = stdexec::schedule(esc.get_scheduler()) | experimental::execution::split();
52
53 ASSERT_THAT(Tests::Utils::record_sync_wait<recorder_listener_t>(std::move(chain)), testing::IsEmpty());
54}
55
60TEST_F(SplitTest, within) {
61 const view_s_t data(Kokkos::view_alloc(exec, "data - shared space"));
62
63 experimental::execution::static_thread_pool pool{4};
64 const context_t esc{exec};
65
66 stdexec::sender auto fork = stdexec::schedule(pool.get_scheduler()) | experimental::execution::split();
67
68 static_assert(!stdexec::dependent_sender<decltype(fork)>);
69
70 auto branch_a = fork | stdexec::continues_on(esc.get_scheduler()) | THEN_INCREMENT_ATOMIC(data)
72 auto branch_b = fork | stdexec::continues_on(pool.get_scheduler()) | THEN_INCREMENT_ATOMIC(data)
73 | stdexec::continues_on(esc.get_scheduler());
74 auto branch_c = std::move(fork) | stdexec::continues_on(esc.get_scheduler()) | THEN_INCREMENT_ATOMIC(data)
76
77 static_assert(!stdexec::dependent_sender<decltype(branch_a)>);
78 static_assert(stdexec::dependent_sender<decltype(branch_b)>);
79 static_assert(!stdexec::dependent_sender<decltype(branch_c)>);
80
81 stdexec::sender auto w_a = stdexec::when_all(std::move(branch_a), std::move(branch_b), std::move(branch_c));
82
83 static_assert(stdexec::dependent_sender<decltype(w_a)>);
84
85 static_assert(std::same_as<
86 stdexec::__completion_domain_of_t<stdexec::set_value_t, decltype(w_a), stdexec::env<>>,
88 >);
89
90 stdexec::sender auto sndr = std::move(w_a) | stdexec::continues_on(stdexec::inline_scheduler{})
91 | stdexec::then([&data]() { EXPECT_EQ(data(), 5); });
92
93 static_assert(stdexec::dependent_sender<decltype(sndr)>);
94
95 static_assert(std::same_as<
96 stdexec::__completion_domain_of_t<stdexec::set_value_t, decltype(sndr), stdexec::env<>>,
97 stdexec::default_domain
98 >);
99
100 ASSERT_EQ(data(), 0) << "Eager execution is not allowed.";
101
103
104 const auto recorded_events = Tests::Utils::record_sync_wait<recorder_listener_t>(std::move(sndr));
105
108 ASSERT_THAT(recorded_events, ::testing::SizeIs(8));
109 ASSERT_THAT(
110 recorded_events, ::testing::Contains(MATCHER_FOR_BEGIN_PFOR(exec, dispatch_label(exec, "then"))).Times(4));
111 ASSERT_THAT(recorded_events, ::testing::Contains(MATCHER_FOR_RECORD_EVENT(exec)).Times(2));
112 std::ranges::for_each(
113 recorded_events | std::views::filter([](const auto& event) -> bool {
114 return std::holds_alternative<Kokkos::Execution::Impl::RecordEvent>(event);
115 }),
116 [&](const auto& event) {
117 ASSERT_THAT(recorded_events, ::testing::Contains(MATCHER_FOR_WAIT_EVENT(event)).Times(1));
118 });
119 } else {
120 ASSERT_THAT(
121 recorded_events,
122 testing::UnorderedElementsAre(
125 MATCHER_FOR_BEGIN_FENCE(exec, dispatch_label(exec, "after dispatch")),
128 MATCHER_FOR_BEGIN_FENCE(exec, dispatch_label(exec, "after dispatch"))));
129 }
130
131 ASSERT_EQ(data(), 5);
132}
133
134} // namespace Tests::ExecutionSpaceImpl
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_THREADS_THROWS_ON_SYNC_WAIT_ASSERT_AND_SKIP(_sndr_)
Definition context.hpp:69
#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...
Definition increment.hpp:39
auto record_sync_wait(Sndr &&sndr)
Definition sync_wait.hpp:14
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 calling record.
Definition event.hpp:52
Event to be sent to Kokkos::utils::callbacks::dispatch when calling wait.
Definition event.hpp:73
Kokkos::Execution::ExecutionSpaceContext< Exec > context_t
Definition context.hpp:27