maximum nr of threads the device really can run in parallel, without scheduling
| 117 | // maximum nr of threads the device really can run in parallel, without |
| 118 | // scheduling |
| 119 | inline unsigned getMaxParallelThreads(const cl::Device& device) { |
| 120 | return getComputeUnits(device) * 2048; |
| 121 | } |
| 122 | |
| 123 | cl_device_type getDeviceType(); |
| 124 |
no test coverage detected