Compare commits

...

2 Commits

Author SHA1 Message Date
15f4710782 [simplefsdp] fix comm placeholder input bug 2025-11-10 14:04:21 -08:00
bc61c3d7ee add manual bucketing 2025-11-10 14:04:21 -08:00

View File

@ -138,6 +138,7 @@ def is_wait_tensor(node: torch.fx.Node) -> bool:
return (
node.op == "call_function"
and node.target is torch.ops._c10d_functional.wait_tensor.default
and node.args[0].op == "call_function"
)