(self, pytorch_version_tuple)
| 314 | with PyTorch versions older than that given.""" |
| 315 | |
| 316 | def __init__(self, pytorch_version_tuple): |
| 317 | self.min_version = pytorch_version_tuple |
| 318 | self.version_too_old = not pytorch_after(*pytorch_version_tuple) |
| 319 | |
| 320 | def __call__(self, obj): |
| 321 | return unittest.skipIf( |
nothing calls this directly
no test coverage detected