From e7526d48f93b4dc9d58a99c7c27bfa9274730d46 Mon Sep 17 00:00:00 2001 From: antheas Date: Mon, 3 Jun 2024 19:07:44 +0200 Subject: [PATCH] add more CPUs --- src/adjustor/core/const.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/adjustor/core/const.py b/src/adjustor/core/const.py index aaad3ed..e1149e0 100644 --- a/src/adjustor/core/const.py +++ b/src/adjustor/core/const.py @@ -36,6 +36,7 @@ ALIB_PARAMS_6040: dict[str, AlibParams] = ALIB_PARAMS DEV_PARAMS_6040: dict[str, DeviceParams] = DEV_PARAMS_7040 +DEV_PARAMS_8040: dict[str, DeviceParams] = DEV_PARAMS_7040 DEV_PARAMS_LEGO = DEV_PARAMS_7040 @@ -46,9 +47,11 @@ CPU_DATA: dict[str, tuple[dict[str, DeviceParams], dict[str, AlibParams]]] = { "AMD Ryzen Z1 Extreme": (DEV_PARAMS_7040, ALIB_PARAMS_7040), + "AMD Ryzen Z1": (DEV_PARAMS_7040, ALIB_PARAMS_7040), "AMD Ryzen 7 7840U": (DEV_PARAMS_7040, ALIB_PARAMS_7040), # GPD Win 4 # model name : AMD Ryzen 7 6800U with Radeon Graphics # 28W works fine, 30W is pushing it "AMD Ryzen 7 6800U": (DEV_PARAMS_6040, ALIB_PARAMS_6040), + "AMD Ryzen 7 8840U": (DEV_PARAMS_6040, ALIB_PARAMS_6040), }