(self)
| 37 | class DummyWorker(Worker): |
| 38 | |
| 39 | def __init__(self): |
| 40 | super().__init__() |
| 41 | dist.init_process_group() |
| 42 | |
| 43 | @register(dispatch_mode=Dispatch.DP_COMPUTE, blocking=False) |
| 44 | def do_nothing(self, data): |
nothing calls this directly
no outgoing calls
no test coverage detected