(self, pytorch_version_tuple)
| 328 | with PyTorch versions newer than or equal to that given.""" |
| 329 | |
| 330 | def __init__(self, pytorch_version_tuple): |
| 331 | self.max_version = pytorch_version_tuple |
| 332 | self.version_too_new = pytorch_after(*pytorch_version_tuple) |
| 333 | |
| 334 | def __call__(self, obj): |
| 335 | return unittest.skipIf( |
nothing calls this directly
no test coverage detected