| 349 | } |
| 350 | |
| 351 | bool CLDevice::IsAdreno5xx() const { |
| 352 | return IsAdreno() && |
| 353 | isGPUVersionInRange(info_.adreno_info.gpu_version, 500, 600); |
| 354 | } |
| 355 | |
| 356 | bool CLDevice::IsAdreno6xx() const { |
| 357 | return IsAdreno() && |
nothing calls this directly
no test coverage detected