(self)
| 202 | |
| 203 | @property |
| 204 | def device(self) -> torch.device: |
| 205 | return self._materialized_data.device if self._materialized_data is not None else self._device |
| 206 | |
| 207 | def __repr__(self): |
| 208 | return f"LazyTensor(..., size={tuple(self.shape)}, device='{self.device}', dtype={self.dtype})" |
no outgoing calls