kokkos-execution 0.0.1
Loading...
Searching...
No Matches
test_parallel_for.cpp
Go to the documentation of this file.
4
7
18
29
30namespace Tests::GraphImpl {
31
32using namespace Kokkos::utils::callbacks;
33
53
58template <template <typename...> class SndrAdptr, bool IsDispatchingSender, typename... Args>
59consteval bool test_sndr_traits() {
61 using schd_sndr_t = typename ParallelForTest::schedule_sender_t;
62
64 using label_t = std::string;
66 using policy_t = Kokkos::RangePolicy<TEST_EXECUTION_SPACE>;
67 using pfor_sndr_t = SndrAdptr<schd_sndr_t, label_t, functor_t, policy_t>;
68
71
73 static_assert(Kokkos::Execution::Impl::dispatching_sender<pfor_sndr_t> == IsDispatchingSender);
74
76 using completion_signatures_t = stdexec::__completion_signatures_of_t<pfor_sndr_t, stdexec::env<>>;
77
78 static_assert(stdexec::__mset_eq<
79 stdexec::__mset<stdexec::set_value_t(), stdexec::set_error_t(std::exception_ptr)>,
80 completion_signatures_t
81 >);
82
84 static_assert(std::same_as<
85 stdexec::__completion_domain_of_t<stdexec::set_value_t, pfor_sndr_t, stdexec::env<>>,
87 >);
88
90 static_assert(std::same_as<
93 >);
94
96 static_assert(stdexec::sender_to<pfor_sndr_t, Tests::Utils::SinkReceiver>);
97
98 static_assert(std::same_as<
99 stdexec::transform_sender_result_t<pfor_sndr_t, stdexec::env_of_t<Tests::Utils::SinkReceiver>>,
101 >);
102
104 static_assert(!stdexec::__nothrow_connectable<pfor_sndr_t, Tests::Utils::SinkReceiver>);
105
106 return true;
107}
110
112template <typename ViewType>
113consteval bool test_closure_traits() {
115 using policy_t = Kokkos::RangePolicy<TEST_EXECUTION_SPACE>;
117
120
121 static_assert(std::is_nothrow_move_constructible_v<closure_t>);
122
123 return true;
124}
126static_assert(test_closure_traits<std::span<int>>());
127
132 Kokkos::RangePolicy<TEST_EXECUTION_SPACE>,
134>());
135
140TEST_F(ParallelForTest, parallel_for_schedule) {
141 constexpr size_t size = 10;
142
143 const view_s_t data(Kokkos::view_alloc(exec, "data - shared space"));
144
145 const context_t gctx{exec};
146
147 auto sndr = stdexec::schedule(gctx.get_scheduler())
149 std::format("{}: hello from pfor", Kokkos::Impl::TypeInfo<TEST_EXECUTION_SPACE>::name()),
150 Kokkos::RangePolicy<TEST_EXECUTION_SPACE>(0, size),
152
153 const auto recorded_events = Tests::Utils::record_sync_wait<recorder_listener_t>(std::move(sndr));
154
155 ASSERT_THAT(
156 recorded_events,
157 testing::ElementsAre(
159 MATCHER_FOR_GRAPH_ADDNODE(recorded_events.at(0), device_handle, nullptr),
160 MATCHER_FOR_GRAPH_SUBMIT(exec, recorded_events.at(0)),
162
163 ASSERT_EQ(data(), size / 2 * (size - 1));
164}
165
170TEST_F(ParallelForTest, parallel_for_starts_on) {
171 constexpr size_t size = 10;
172
173 const view_s_t data(Kokkos::view_alloc(exec, "data - shared space"));
174
175 auto sndr = stdexec::just()
177 std::format("{}: hello from pfor", Kokkos::Impl::TypeInfo<TEST_EXECUTION_SPACE>::name()),
178 Kokkos::RangePolicy<TEST_EXECUTION_SPACE>(0, size),
180
181 const context_t gctx{exec};
182 auto starts_on = stdexec::starts_on(gctx.get_scheduler(), std::move(sndr));
183
184 const auto recorded_events = Tests::Utils::record_sync_wait<recorder_listener_t>(std::move(starts_on));
185
186 ASSERT_THAT(
187 recorded_events,
188 testing::ElementsAre(
190 MATCHER_FOR_GRAPH_ADDNODE(recorded_events.at(0), device_handle, nullptr),
191 MATCHER_FOR_GRAPH_SUBMIT(exec, recorded_events.at(0)),
193
194 ASSERT_EQ(data(), size / 2 * (size - 1));
195}
196
201TEST_F(ParallelForTest, parallel_for_schedule_tagged_operator) {
202 const view_s_t data(Kokkos::view_alloc(exec, "data - shared space"));
203
204 const context_t gctx{exec};
205
207
208 const auto recorded_events = Tests::Utils::record_sync_wait<recorder_listener_t>(
209 stdexec::schedule(gctx.get_scheduler())
211 Kokkos::RangePolicy<typename functor_t::Tag, TEST_EXECUTION_SPACE>(0, 1), functor_t{.data = data}));
212
213 ASSERT_THAT(
214 recorded_events,
215 testing::ElementsAre(
217 MATCHER_FOR_GRAPH_ADDNODE(recorded_events.at(0), device_handle, nullptr),
218 MATCHER_FOR_GRAPH_SUBMIT(exec, recorded_events.at(0)),
220
221 ASSERT_EQ(data(), 1);
222}
223
224} // namespace Tests::GraphImpl
constexpr std::string dispatch_label(const Exec &, Label &&label)
Get the dispatch label from Exec and label.
#define MATCHER_FOR_BEGIN_FENCE(_exec_, _label_)
typename recorder_listener_t::event_variant_t variant_t
RecorderListener< ConjunctionMatcher< EventDiscardMatcher< TEST_EXECUTION_SPACE >, GraphEventDiscardMatcher< TEST_EXECUTION_SPACE > >, BeginFenceEvent, BeginParallelForEvent, AllocateDataEvent, DeallocateDataEvent, Kokkos::Execution::Impl::RecordEvent, Kokkos::Execution::Impl::WaitEvent, Kokkos::Execution::GraphImpl::GraphAddNodeEvent, Kokkos::Execution::GraphImpl::GraphCreateEvent, Kokkos::Execution::GraphImpl::GraphInstantiateEvent, Kokkos::Execution::GraphImpl::GraphSubmitEvent > recorder_listener_t
Concept for a sender whose completion scheduler is Kokkos::Execution::GraphImpl::Scheduler.
Concept that constrains the type of a sender that dispatches a functor for execution.
std::invoke_result_t< stdexec::get_completion_scheduler_t< Tag >, stdexec::env_of_t< Sndr >, Env... > completion_scheduler_of_t
Retrieve the completion scheduler for a given completion tag.
constexpr parallel_for_t parallel_for
consteval bool test_closure_traits()
consteval bool test_sndr_traits()
Definition test_bulk.cpp:57
auto record_sync_wait(Sndr &&sndr)
Definition sync_wait.hpp:14
consteval bool check_continues_on_after_just_stopped()
auto get_scheduler() const noexcept -> GraphImpl::Scheduler< Exec >
Definition graph.hpp:117
Event to be sent to Kokkos::utils::callbacks::dispatch when a Kokkos graph node is added.
Definition events.hpp:33
Event to be sent to Kokkos::utils::callbacks::dispatch when a Kokkos graph is created.
Definition events.hpp:14
Event to be sent to Kokkos::utils::callbacks::dispatch when a Kokkos graph is instantiated.
Definition events.hpp:48
Event to be sent to Kokkos::utils::callbacks::dispatch when a Kokkos graph is submitted.
Definition events.hpp:59
Scheduler for a Kokkos::Experimental::Graph.
Definition graph.hpp:21
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
Custom algorithm for the Kokkos::parallel_for construct.
Similar to EventDiscardMatcher, for graph-related events.
Definition events.hpp:60
decltype(std::declval< const context_t >().get_scheduler()) scheduler_t
Definition context.hpp:28
decltype(stdexec::schedule(std::declval< scheduler_t >())) schedule_sender_t
Definition context.hpp:29
Kokkos::View< value_t, Kokkos::SharedSpace > view_s_t
Definition context.hpp:32
#define MATCHER_FOR_GRAPH_CREATE(_device_handle_)
Definition events.hpp:16
#define MATCHER_FOR_GRAPH_SUBMIT(_exec_, _graph_create_event_variant_)
Definition events.hpp:47
#define MATCHER_FOR_GRAPH_ADDNODE(_graph_create_event_variant_, _device_handle_, _predecessor_)
Definition events.hpp:23