| 1512 | |
| 1513 | |
| 1514 | class DummyWork(dist._Work): |
| 1515 | def wait(self, timeout=5.0): |
| 1516 | if torch.cuda.is_available(): |
| 1517 | torch.cuda.current_stream().synchronize() |
| 1518 | return True |
| 1519 | |
| 1520 | |
| 1521 | class DummyProcessGroup(dist.ProcessGroup): |
no outgoing calls
searching dependent graphs…