Skip to content

Commit

Permalink
Add intel Lunar Lake support
Browse files Browse the repository at this point in the history
  • Loading branch information
honjow committed Jan 26, 2025
1 parent c6ec348 commit 47a979a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions py_modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ def setup_logger():
"ROG Ally RC71L": 30,
"Jupiter": 20,
"V3": 45,
"Claw 8 AI+ A2VM": 30,
}
TDP_LIMIT_CONFIG_CPU = {
"7735HS": 65,
Expand All @@ -162,6 +163,15 @@ def setup_logger():
"8840": 45,
"8850U": 40,
"8850": 45,
"238V": 37,
"256V": 37,
"228V": 37,
"266V": 37,
"258V": 37,
"268V": 37,
"236V": 37,
"226V": 37,
"288V": 37,
}
except Exception as e:
logger.error(f"TDP配置异常|{e}")
Expand Down
2 changes: 1 addition & 1 deletion py_modules/cpu.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def set_smt(self, value: bool) -> bool:
"""
try:
if not self.get_isSupportSMT():
logger.info("Failed to set SMT: system does not support SMT")
logger.debug("Failed to set SMT: system does not support SMT")
return False
logger.debug("set_smt {}".format(value))
self.cpu_smt = value
Expand Down

0 comments on commit 47a979a

Please sign in to comment.