Skip to content

Commit

Permalink
[Kernel] changing fused moe kernel chunk size default to 32k (vllm-pr…
Browse files Browse the repository at this point in the history
  • Loading branch information
avshalomman authored Aug 30, 2024
1 parent 80c7b08 commit 34a0e96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def get_default_config_root():
os.path.join(get_default_cache_root(), "vllm", "xla_cache"),
)),
"VLLM_FUSED_MOE_CHUNK_SIZE":
lambda: int(os.getenv("VLLM_FUSED_MOE_CHUNK_SIZE", "65536")),
lambda: int(os.getenv("VLLM_FUSED_MOE_CHUNK_SIZE", "32768")),

# If set, vllm will skip the deprecation warnings.
"VLLM_NO_DEPRECATION_WARNING":
Expand Down

0 comments on commit 34a0e96

Please sign in to comment.