Enqueue an unmap operation of the allocated and mapped buffer. * * @note This method simply enqueues the unmap operation, it is the caller's responsibility to flush the queue and make sure the unmap is finished before * the memory is accessed by the device. */
| 79 | * the memory is accessed by the device. |
| 80 | */ |
| 81 | void unmap() |
| 82 | { |
| 83 | ICLArray<T>::unmap(CLScheduler::get().queue()); |
| 84 | } |
| 85 | using ICLArray<T>::unmap; |
| 86 | |
| 87 | // Inherited methods overridden: |