MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / WaitForEvents

Function WaitForEvents

include/CL/opencl.hpp:3611–3618  ·  view source on GitHub ↗

! \brief Blocks the calling thread until every event specified is complete. * * Wraps clWaitForEvents(). */

Source from the content-addressed store, hash-verified

3609 * Wraps clWaitForEvents().
3610 */
3611inline static cl_int
3612WaitForEvents(const vector<Event>& events)
3613{
3614 return detail::errHandler(
3615 ::clWaitForEvents(
3616 (cl_uint) events.size(), (events.size() > 0) ? (cl_event*)&events.front() : nullptr),
3617 __WAIT_FOR_EVENTS_ERR);
3618}
3619
3620/*! \brief Class interface for cl_mem.
3621 *

Callers

nothing calls this directly

Calls 3

errHandlerFunction · 0.85
clWaitForEventsFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected