Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,12 @@ for token in generated_token_ids: # each tensor has shape [2]
state.reset()
```

Experimental top-1 RLBWT backends are also available: `rlbwt` is the Python
oracle, `rlbwt_native` is the exact fused implementation, and
`rlbwt_compact256` is optimized for externally encoded IDs in `[0, 255]`.
`rlbwt_mc128` and `rlbwt_mc192` provide explicitly opt-in Monte-Carlo LCEs.
These backends are uniform-only and are never selected by `backend="auto"`.

Capacity is fixed at initialization for predictable memory use. Exceeding it
raises `RuntimeError` before mutation. States are mutable, isolated, and must
not be shared concurrently between decoding requests. `forward_step` implements
Expand Down
Loading
Loading