Skip to content

Commit 5bf8fdc

Browse files
authored
fix: nvbugs/5231298: pytorch allreduce issue (#3673)
Signed-off-by: Xiwen Yu <[email protected]>
1 parent 56c9dd4 commit 5bf8fdc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tensorrt_llm/plugin/plugin.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,8 @@ def set_workspace_tensor(self,
704704
)
705705

706706
@staticmethod
707-
def max_workspace_size_auto(tp_size: int, support_deterministic) -> int:
707+
def max_workspace_size_auto(tp_size: int,
708+
support_deterministic=True) -> int:
708709
if force_all_reduce_deterministic() and support_deterministic:
709710
workspace_size = os.getenv("FORCE_ALLREDUCE_KERNEL_WORKSPACE_SIZE",
710711
"1000000000")

0 commit comments

Comments
 (0)