[Core] fix custom allreduce default value (#4040)

This commit is contained in:
youkaichao
2024-04-12 16:40:39 -07:00
committed by GitHub
parent 09473ee41c
commit fbb9d9eef4

View File

@ -86,7 +86,7 @@ class LLM:
swap_space: int = 4,
enforce_eager: bool = False,
max_context_len_to_capture: int = 8192,
disable_custom_all_reduce: bool = True,
disable_custom_all_reduce: bool = False,
**kwargs,
) -> None:
if "disable_log_stats" not in kwargs: