Merge pull request #15809 from samcake/nut

BUGZ-776 : Detect AMD gpu on more than one possible token
This commit is contained in:
Andy Howell 2019-06-20 15:08:41 -07:00 committed by GitHub
commit 4cc6eae478
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ const char* Instance::findGPUVendorInDescription(const std::string& description)
return keys::gpu::vendor_Intel;
}
// AMD gpu
else if (description.find(keys::gpu::vendor_AMD) != std::string::npos) {
else if ((description.find(keys::gpu::vendor_AMD) != std::string::npos) || (description.find("Radeon") != std::string::npos)) {
return keys::gpu::vendor_AMD;
}
// NVIDIA gpu