[BugFix] fix mm cudagraph (#5266)
CE Compile Job / ce_job_pre_check (push) Has been cancelled
CE Compile Job / print_ce_job_pre_check_outputs (push) Has been cancelled
CE Compile Job / FD-Clone-Linux (push) Has been cancelled
CE Compile Job / Show Code Archive Output (push) Has been cancelled
CE Compile Job / BUILD_SM8090 (push) Has been cancelled
CE Compile Job / BUILD_SM8689 (push) Has been cancelled
CE Compile Job / CE_UPLOAD (push) Has been cancelled
Deploy GitHub Pages / deploy (push) Has been cancelled

* fix mm cudagraph

* fix test_prompt_ids bug

* update code

* update ci code

* update ci code

* update ci code
This commit is contained in:
kevin
2025-12-09 11:51:00 +08:00
committed by GitHub
parent c06a6234b9
commit f7e832efaf
3 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ def build_command(config):
# 添加配置参数
for key, value in config.items():
if "--enable" in key:
if "--enable" in key or "--no-enable" in key:
value = bool(value if isinstance(value, bool) else eval(value))
if value:
cmd.append(key)