(self, pin_memory: bool = False)
| 209 | return self |
| 210 | |
| 211 | def cpu(self, pin_memory: bool = False) -> "GGMLTensor": |
| 212 | self.data = self.data.cpu() |
| 213 | return self |
| 214 | |
| 215 | def to(self, *args, **kwargs) -> "GGMLTensor": |
| 216 | self.data = self.data.to(*args, **kwargs) |
no outgoing calls