(s)
| 193 | |
| 194 | def test_split(self): |
| 195 | def tensor(s): return torch.arange(math.prod(s), dtype=torch.int32).reshape(s), Tensor.arange(math.prod(s)).reshape(s) |
| 196 | test_cases = [ |
| 197 | (tensor((10,)), 5, {}), |
| 198 | (tensor((10,)), [1,4,5], {}), |
no test coverage detected