(self)
| 210 | return self.replace(new_feats, new_coords) |
| 211 | |
| 212 | def cuda(self) -> 'SparseTensor': |
| 213 | new_feats = self.feats.cuda() |
| 214 | new_coords = self.coords.cuda() |
| 215 | return self.replace(new_feats, new_coords) |
| 216 | |
| 217 | def half(self) -> 'SparseTensor': |
| 218 | new_feats = self.feats.half() |