(self)
| 49 | return self.tensors[0].new_ones(*args, **kwargs) |
| 50 | |
| 51 | def float(self): |
| 52 | return self.to(dtype=torch.float) |
| 53 | |
| 54 | def chunk(self, *args, **kwargs): |
| 55 | return self.apply_operation(None, lambda x, y: x.chunk(*args, **kwargs)) |
no test coverage detected