| 854 | |
| 855 | |
| 856 | class FNBlock(nn.Module): |
| 857 | def __init__(self, fn): |
| 858 | super().__init__() |
| 859 | self.fn = fn |
| 860 | |
| 861 | def forward(self, *args, **kwargs): |
| 862 | return self.fn(*args, **kwargs) |
| 863 | |
| 864 | |
| 865 | class FakeDDP(nn.Module): |
no outgoing calls
no test coverage detected