mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Correct AMD Navi 22 GPU combination logic in device selection
This commit is contained in:
@@ -114,9 +114,10 @@ class HardwareCustomizer:
|
|||||||
continue
|
continue
|
||||||
elif gpu_type == "Discrete GPU":
|
elif gpu_type == "Discrete GPU":
|
||||||
if gpu_codename.startswith("Navi"):
|
if gpu_codename.startswith("Navi"):
|
||||||
_navi_indices.add(index)
|
|
||||||
if gpu_codename == "Navi 22":
|
if gpu_codename == "Navi 22":
|
||||||
_navi_22_indices.add(index)
|
_navi_22_indices.add(index)
|
||||||
|
else:
|
||||||
|
_navi_indices.add(index)
|
||||||
continue
|
continue
|
||||||
elif gpu_manufacturer == "Intel":
|
elif gpu_manufacturer == "Intel":
|
||||||
_intel_gpu_indices.add(index)
|
_intel_gpu_indices.add(index)
|
||||||
|
|||||||
Reference in New Issue
Block a user