(self, *args, **kwargs)
| 709 | # backward() on future micro-batches. But we can modify .data directly so the autograd engine doesn't detect in-place modifications. |
| 710 | # TODO: this is unbelievably hacky and not mathematically sound, I'm just seeing if it works at all. |
| 711 | def add_(self, *args, **kwargs): |
| 712 | self.data.add_(*args, **kwargs) |
| 713 | for p in model_parameters: |
| 714 | p.add_ = add_.__get__(p) |
| 715 |
nothing calls this directly
no outgoing calls
no test coverage detected