Fix typo in layers documentation (#116)

This commit is contained in:
Madeesh Kannan
2025-07-23 17:13:14 +02:00
committed by GitHub
parent 967ac581b8
commit c540d1e1d6

View File

@ -107,7 +107,7 @@ model = kernelize(model, device="cuda", mode=Mode.INFERENCE)
If the `TRAINING` and/or `TORCH_COMPILE` modes are used, but a registered
kernel does not support backward passes or `torch.compile` respectively,
`kernenize` will fall back to the original, non-kernelized, layer. You
`kernelize` will fall back to the original, non-kernelized, layer. You
can let `kernelize` raise an exception instead by using `use_fallback=False`:
```python