We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As of the parallel sampling work, we are maintaining prompt and decode tokens separately. However, to preserve the output of detokenization, I had to concat them repeatedly: https://github.com/octoml/mlc-llm/blob/batch-serving/serve/mlc_serve/engine/engine_common.py#L97-L99
It seems very wasteful to do concat and detokenization of the entire tokens repeatedly while what we really need is only the new delta at the postfix.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of the parallel sampling work, we are maintaining prompt and decode tokens separately. However, to preserve the output of detokenization, I had to concat them repeatedly:
https://github.com/octoml/mlc-llm/blob/batch-serving/serve/mlc_serve/engine/engine_common.py#L97-L99
It seems very wasteful to do concat and detokenization of the entire tokens repeatedly while what we really need is only the new delta at the postfix.
The text was updated successfully, but these errors were encountered: