(self, dim: int)
| 633 | return self.replace(new_feats) |
| 634 | |
| 635 | def unbind(self, dim: int) -> List['SparseTensor']: |
| 636 | return sparse_unbind(self, dim) |
| 637 | |
| 638 | def replace(self, feats: torch.Tensor, coords: Optional[torch.Tensor] = None) -> 'SparseTensor': |
| 639 | if config.CONV == 'torchsparse': |
nothing calls this directly
no test coverage detected