From 2d388d687165592a57f8fdbe1dc7de261b8c3292 Mon Sep 17 00:00:00 2001 From: JeanBiza Date: Thu, 11 Jun 2026 19:32:28 -0400 Subject: [PATCH 1/2] fix(#3): Add missing entry-level GPUs to KNOWN_GPUS --- src/modelinfo/hardware.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/modelinfo/hardware.py b/src/modelinfo/hardware.py index 1fb8205..0d2ebad 100644 --- a/src/modelinfo/hardware.py +++ b/src/modelinfo/hardware.py @@ -2,6 +2,14 @@ import subprocess from typing import Tuple + +gtx1660super: 6.0 + + + +rx580: 8.0 +rx570: 4.0 + KNOWN_GPUS = { # --- NVIDIA Consumer (RTX 50/40/30/20/10 Series & Titans) --- "rtx5090": 32.0, @@ -21,6 +29,7 @@ "rtx4060ti16gb": 16.0, "rtx4060ti": 8.0, "rtx4060": 8.0, + "rtx4050" : 6.0, "rtx3090ti": 24.0, "rtx3090": 24.0, "rtx3080ti": 12.0, @@ -31,6 +40,7 @@ "rtx3060ti": 8.0, "rtx306012gb": 12.0, "rtx3060": 8.0, + "rtx3050ti" : 4.0, "rtx3050": 8.0, "rtx2080ti": 11.0, "rtx2080super": 8.0, @@ -40,6 +50,10 @@ "rtx2060super": 8.0, "rtx206012gb": 12.0, "rtx2060": 6.0, + "gtx1660ti" : 6.0, + "gtx1660": 6.0, + "gtx1650super": 4.0, + "gtx1650": 4.0, "gtx1080ti": 11.0, "gtx1080": 8.0, "gtx1070ti": 8.0, From 000789bfd8e5c227973dd952f0f5cd81bf58bb47 Mon Sep 17 00:00:00 2001 From: JeanBiza Date: Thu, 11 Jun 2026 19:43:04 -0400 Subject: [PATCH 2/2] fix(#3): Add missing entry-level GPUs to KNOWN_GPUS --- src/modelinfo/hardware.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/modelinfo/hardware.py b/src/modelinfo/hardware.py index 0d2ebad..0d75165 100644 --- a/src/modelinfo/hardware.py +++ b/src/modelinfo/hardware.py @@ -2,14 +2,6 @@ import subprocess from typing import Tuple - -gtx1660super: 6.0 - - - -rx580: 8.0 -rx570: 4.0 - KNOWN_GPUS = { # --- NVIDIA Consumer (RTX 50/40/30/20/10 Series & Titans) --- "rtx5090": 32.0, @@ -50,6 +42,7 @@ "rtx2060super": 8.0, "rtx206012gb": 12.0, "rtx2060": 6.0, + "gtx1660super": 6.0, "gtx1660ti" : 6.0, "gtx1660": 6.0, "gtx1650super": 4.0, @@ -120,6 +113,9 @@ "rx6650xt": 8.0, "rx6600xt": 8.0, "rx6600": 8.0, + "rx580": 8.0, + "rx570": 4.0, + # --- AMD Data Center / Pro --- "mi300x": 192.0,