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

Method finish

include/boost/compute/command_queue.hpp:1516–1521  ·  view source on GitHub ↗

Blocks until all outstanding commands in the queue have finished. \see_opencl_ref{clFinish}

Source from the content-addressed store, hash-verified

1514 ///
1515 /// \see_opencl_ref{clFinish}
1516 void finish()
1517 {
1518 BOOST_ASSERT(m_queue != 0);
1519
1520 clFinish(m_queue);
1521 }
1522
1523 /// Enqueues a barrier in the queue.
1524 void enqueue_barrier()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected