update env docs for Machete (#3959)

This commit is contained in:
Sunny-bot1
2025-09-08 14:44:31 +08:00
committed by GitHub
parent 17169a14f2
commit ed5133f704
2 changed files with 5 additions and 0 deletions

View File

@@ -72,5 +72,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
"FD_USE_DEEP_GEMM":
lambda: bool(int(os.getenv("FD_USE_DEEP_GEMM", "0"))),
# Whether to use Machete for wint4 dense GEMM.
"FD_USE_MACHETE": lambda: os.getenv("FD_USE_MACHETE", "0"),
}
```