Skip to content

Commit 9fafd98

Browse files
committed
Default VLLM_ASCEND_ENABLE_ASYNC_EXPONENTIAL switch to OFF
Signed-off-by: YuhanBai <[email protected]>
1 parent 4c63262 commit 9fafd98

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vllm_ascend/envs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,9 @@
176176
# Whether to anbale dynamic EPLB
177177
"DYNAMIC_EPLB":
178178
lambda: os.getenv("DYNAMIC_EPLB", "false").lower(),
179+
# Whether to enable exponential overlap with model executing.
179180
"VLLM_ASCEND_ENABLE_ASYNC_EXPONENTIAL":
180-
lambda: int(os.getenv("VLLM_ASCEND_ENABLE_ASYNC_EXPONENTIAL", 1)),
181+
lambda: bool(int(os.getenv("VLLM_ASCEND_ENABLE_ASYNC_EXPONENTIAL", '0'))),
181182
}
182183

183184
# end-env-vars-definition

0 commit comments

Comments
 (0)