Skip to content

Commit fa23692

Browse files
authored
update env docs for Machete (#3960)
1 parent 8903f93 commit fa23692

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

docs/usage/environment_variables.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
7272
"FD_USE_DEEP_GEMM":
7373
lambda: bool(int(os.getenv("FD_USE_DEEP_GEMM", "0"))),
7474

75+
# Whether to use Machete for wint4 dense GEMM.
76+
"FD_USE_MACHETE": lambda: os.getenv("FD_USE_MACHETE", "0"),
7577
}
7678
```

docs/zh/usage/environment_variables.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,8 @@ environment_variables: dict[str, Callable[[], Any]] = {
7171
# 是否使用DeepGemm后端的FP8 blockwise MoE.
7272
"FD_USE_DEEP_GEMM":
7373
lambda: bool(int(os.getenv("FD_USE_DEEP_GEMM", "0"))),
74+
75+
# 是否使用 Machete 后端的 wint4 GEMM.
76+
"FD_USE_MACHETE": lambda: os.getenv("FD_USE_MACHETE", "0"),
7477
}
7578
```

0 commit comments

Comments
 (0)