MCPcopy Create free account
hub / github.com/boostorg/compute / wait_for_all

Function wait_for_all

include/boost/compute/async/wait.hpp:45–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43/// \see event, wait_list
44template<class... Events>
45inline void wait_for_all(Events&&... events)
46{
47 wait_list l;
48 detail::insert_events_variadic(l, std::forward<Events>(events)...);
49 l.wait();
50}
51#endif // BOOST_COMPUTE_NO_VARIADIC_TEMPLATES
52
53} // end compute namespace

Callers 1

BOOST_AUTO_TEST_CASEFunction · 0.85

Calls 2

insert_events_variadicFunction · 0.85
waitMethod · 0.45

Tested by 1

BOOST_AUTO_TEST_CASEFunction · 0.68