(self)
| 55 | return super().double() |
| 56 | |
| 57 | def half(self) -> Module: |
| 58 | self.__update_properties(dtype=torch.half) |
| 59 | return super().half() |
| 60 | |
| 61 | def __update_properties( |
| 62 | self, device: Optional[torch.device] = None, dtype: Optional[torch.dtype] = None |
nothing calls this directly
no test coverage detected