Blocks until all outstanding commands in the queue have finished. \see_opencl_ref{clFinish}
| 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() |
nothing calls this directly
no outgoing calls
no test coverage detected