Enqueue a map operation of the allocated buffer. * * @param[in] blocking If true, then the mapping will be ready to use by the time * this method returns, else it is the caller's responsibility * to flush the queue and wait for the mapping operation to have completed. */
| 69 | * to flush the queue and wait for the mapping operation to have completed. |
| 70 | */ |
| 71 | void map(bool blocking = true) |
| 72 | { |
| 73 | ICLArray<T>::map(CLScheduler::get().queue(), blocking); |
| 74 | } |
| 75 | using ICLArray<T>::map; |
| 76 | /** Enqueue an unmap operation of the allocated and mapped buffer. |
| 77 | * |