(self)
| 611 | return self.replace(new_feats, new_coords) |
| 612 | |
| 613 | def cuda(self) -> 'SparseTensor': |
| 614 | new_feats = self.feats.cuda() |
| 615 | new_coords = self.coords.cuda() |
| 616 | return self.replace(new_feats, new_coords) |
| 617 | |
| 618 | def half(self) -> 'SparseTensor': |
| 619 | new_feats = self.feats.half() |