(self, dst_type: Union[str, torch.dtype])
| 43 | return super().cpu() |
| 44 | |
| 45 | def type(self, dst_type: Union[str, torch.dtype]) -> Module: |
| 46 | self.__update_properties(dtype=dst_type) |
| 47 | return super().type(dst_type=dst_type) |
| 48 | |
| 49 | def float(self) -> Module: |
| 50 | self.__update_properties(dtype=torch.float) |
nothing calls this directly
no test coverage detected