| 113 | |
| 114 | template<typename T> |
| 115 | void memUnlock(const sycl::buffer<T> *ptr) { |
| 116 | memoryManager().userUnlock(static_cast<const void *>(ptr)); |
| 117 | } |
| 118 | |
| 119 | bool isLocked(const void *ptr) { |
| 120 | return memoryManager().isUserLocked(const_cast<void *>(ptr)); |
nothing calls this directly
no test coverage detected