(self, device: str)
| 357 | self._runnable_graph(GraphDeployCommand(device=self._device)) |
| 358 | |
| 359 | def to(self, device: str): |
| 360 | # just keep TorchExecutor behaving like torch.nn.Module |
| 361 | self._device = torch.device(device) |
| 362 | self.deploy() |
| 363 | return self |
| 364 | |
| 365 | @ torch.no_grad() |
| 366 | def forward( |
no test coverage detected