(self, input: torch.Tensor)
| 333 | return fp8_autocast_fn(enabled=True, fp8_recipe=self._recipe) |
| 334 | |
| 335 | def forward(self, input: torch.Tensor) -> torch.Tensor: |
| 336 | with self._autocast_context(): |
| 337 | return self.linear(input) |
| 338 | |
| 339 | def extra_repr(self) -> str: |
| 340 | return ( |
nothing calls this directly
no test coverage detected