| 354 | } |
| 355 | |
| 356 | bool CLDevice::IsAdreno6xx() const { |
| 357 | return IsAdreno() && |
| 358 | isGPUVersionInRange(info_.adreno_info.gpu_version, 600, 700); |
| 359 | } |
| 360 | |
| 361 | bool CLDevice::IsAdreno6xxOrHigher() const { |
| 362 | return IsAdreno() && info_.adreno_info.gpu_version >= 600; |
nothing calls this directly
no test coverage detected