mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-25 21:52:54 -05:00
Add Ellesmere correctly (still just a Polaris alias)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
@@ -45,6 +45,7 @@ public:
|
||||
enum Type {
|
||||
Unknown,
|
||||
Baffin,
|
||||
Ellesmere,
|
||||
Polaris,
|
||||
Lexa,
|
||||
Vega_10,
|
||||
|
||||
Reference in New Issue
Block a user