| 118 | r"""Dummy class used to signal the end of an IterableDataset""" |
| 119 | @dataclass(frozen=True) |
| 120 | class _IterableDatasetStopIteration: |
| 121 | worker_id: int |
| 122 | |
| 123 | r"""Dummy class used to resume the fetching when worker reuse is enabled""" |
| 124 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected
searching dependent graphs…