You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add stateless forward impl.
- Efficient for training (but training is not yet implemented).
- Input requires the entire sequence, and requires no state cache.
- Generates one output for each input sequence.
- Add stateful forward impl.
- Efficient for inference.
- Input requires the last single sequence point, and requires the last state cache.
- Generates a single output referring to the last input.
0 commit comments