(self)
| 39 | return super().cuda(device=device) |
| 40 | |
| 41 | def cpu(self) -> Module: |
| 42 | self.__update_properties(device=torch.device("cpu")) |
| 43 | return super().cpu() |
| 44 | |
| 45 | def type(self, dst_type: Union[str, torch.dtype]) -> Module: |
| 46 | self.__update_properties(dtype=dst_type) |
no test coverage detected