From 21bb3a5f53ab68b55c00d99cf2d66ce79943616f Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Mon, 5 Aug 2024 19:31:04 +0700 Subject: [PATCH] Add missing UHD 620 in Kaby Lake-R --- Scripts/gpu_identifier.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Scripts/gpu_identifier.py b/Scripts/gpu_identifier.py index 1bece8e..f69f7de 100644 --- a/Scripts/gpu_identifier.py +++ b/Scripts/gpu_identifier.py @@ -15,7 +15,10 @@ class GPUIdentifier: elif device_id.startswith(("09", "19")): gpu_codename = "Skylake" elif device_id.startswith("59"): - gpu_codename = "Kaby Lake" + if device_id.endswith("17"): + gpu_codename = "Kaby Lake-R" + else: + gpu_codename = "Kaby Lake" elif device_id.startswith("87"): gpu_codename = "Amber Lake" elif device_id.startswith(("3E", "5A")):