(self)
| 47 | print(input) |
| 48 | |
| 49 | def test_empty(self): |
| 50 | print(f"{self.__class__.__name__}: test_empty SparseTensor") |
| 51 | feats = torch.FloatTensor(0, 16) |
| 52 | coords = torch.IntTensor(0, 4) |
| 53 | input = SparseTensor(feats, coordinates=coords) |
| 54 | print(input) |
| 55 | |
| 56 | def test_tensor_stride(self): |
| 57 | print(f"{self.__class__.__name__}: test_tensor_stride SparseTensor") |
nothing calls this directly
no test coverage detected