Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
qubvel committed Jan 15, 2025
1 parent a2b97d8 commit 17a4b70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/encoders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ For each encoder, the table below provides detailed information:
Indicates whether the encoder can be scripted with ``torch.jit.script``.

4. **Compile**:
Indicates whether the encoder is compatible with ``torch.compile`` for enhanced performance.
Indicates whether the encoder is compatible with ``torch.compile(model, fullgraph=True, dynamic=True, backend="eager")``.
You may still get some issues with another backends, such as ``inductor``, depending on the torch/cuda/... dependencies version,
but most of the time it will work.

5. **Export**:
Indicates whether the encoder can be exported using ``torch.export.export``, making it suitable for deployment in different environments (e.g., ONNX).
Expand Down

0 comments on commit 17a4b70

Please sign in to comment.