| 339 | bool CLDevice::IsAdreno() const { return info_.vendor == Vendor::QUALCOMM; } |
| 340 | |
| 341 | bool CLDevice::IsAdreno3xx() const { |
| 342 | return IsAdreno() && |
| 343 | isGPUVersionInRange(info_.adreno_info.gpu_version, 300, 400); |
| 344 | } |
| 345 | |
| 346 | bool CLDevice::IsAdreno4xx() const { |
| 347 | return IsAdreno() && |
no test coverage detected