Add Ellesmere correctly (still just a Polaris alias)
This commit is contained in:
parent
cb8fc26cbe
commit
f0d80326ec
4 changed files with 8 additions and 1 deletions
|
@ -224,7 +224,11 @@ static OclDevice::Type getType(const String &name, const OclVendor platformVendo
|
|||
return OclDevice::Baffin;
|
||||
}
|
||||
|
||||
if (name == "gfx803" || name.contains("polaris") || name == "Ellesmere") {
|
||||
if (name.contains("Ellesmere")) {
|
||||
return OclDevice::Ellesmere;
|
||||
}
|
||||
|
||||
if (name == "gfx803" || name.contains("polaris")) {
|
||||
return OclDevice::Polaris;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue