| 9580 | */ |
| 9581 | template<typename T, class Alloc> |
| 9582 | inline cl_int mapSVM(cl::vector<T, Alloc> &container) |
| 9583 | { |
| 9584 | return enqueueMapSVM(container, CL_TRUE, CL_MAP_READ | CL_MAP_WRITE); |
| 9585 | } |
| 9586 | |
| 9587 | /** |
| 9588 | * Blocking SVM map operation - performs a blocking map underneath. |
nothing calls this directly
no test coverage detected