From 9012bc2b2a45fe9477d452518c3ab6966dda3041 Mon Sep 17 00:00:00 2001 From: empresa Date: Thu, 16 Oct 2025 00:37:28 +0700 Subject: [PATCH] dev: more debug --- lib/get_specs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/get_specs.py b/lib/get_specs.py index 4a64182..3057f1c 100644 --- a/lib/get_specs.py +++ b/lib/get_specs.py @@ -312,10 +312,12 @@ def get_gpu_info(): if bool(re.match(r'^[0-9]+$', parts[0])): gpu_name = parts[1] + print("parts") + print(parts) print("p1" + gpu_name) if gpu_name == "NVIDIA Graphics Device" and parts[5] in GPU_ID_TO_NAME: gpu_name = GPU_ID_TO_NAME[parts[5]] - print("p1" + gpu_name) + print("p2" + gpu_name) gpu_str = f"{len(lines)-1}x {gpu_name.strip()}" print(gpu_str)