(self)
| 792 | return cur_scale_cache.get(key, None) |
| 793 | |
| 794 | def __repr__(self) -> str: |
| 795 | return f"SparseTensor(shape={self.shape}, dtype={self.dtype}, device={self.device})" |
| 796 | |
| 797 | def sparse_cat(inputs: List[SparseTensor], dim: int = 0) -> SparseTensor: |
| 798 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected