(x)
| 69 | # From PyTorch internals |
| 70 | def _ntuple(n): |
| 71 | def parse(x): |
| 72 | if isinstance(x, collections.abc.Iterable): |
| 73 | return x |
| 74 | return tuple(repeat(x, n)) |
| 75 | return parse |
| 76 | |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected