-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Trtllm backend improvements #3231
New issue
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
Open
leejuyuu
wants to merge
13
commits into
huggingface:main
Choose a base branch
from
leejuyuu:trtllm
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add new finish reasons introduced in TensorRT-LLM v0.16.0.
The short arg of `prometheus_port` conflicts with `port`. Remove the short arg variant. Fixes huggingface#3205
When a request is cancelled, the `tensorrt_llm::executor::Result` contains `outputTokenIds` with size 1, but `outputTokenIds[0]` has size 0. This causes `as_generation_step` to segfault. Check the size of `outputTokenIds` and `logProbs` before attempting to access the inner vector. The `finishReasons` can be skipped because it has only one dimension and the minimum beam size is 1. Because cxx have not added Option support yet, include two boolean flags to denote whether the value is valid. Change log level when request is cancelled to debug.
Support per request stop sequences.
The trycatch only uses the `what()` method, which means we can catch the broader `std::exception` instead. This is beneficial because nlohmann/json also throws exception.
When the required config files are not present, nlohmann/json throws parsing error, which does not help much for identifying what was wrong. Check the existence of these files early and return specific error messages.
Currently, the do_sample option is ignored and the executor will always sample. Set top_k to 1 if do_sample is false.
Get a more accurate inference start time from the trtllm response. Because `Instant` does not expose absolute value, create reference points on both sides and return duration relative to the reference point instead.
The executor_status_looper runs a spin loop, even if there are no active requests. This makes the service constantly wasting a CPU core. Make the loop block on receiving requests if there are no running ones to reduce CPU usage when idle.
Make `tensorrt_llm_backend_t` interior mutable by marking the `inner_` struct as a `mutable` field, so we can make the methods `const`. This makes the pointer accessible from multiple threads at the Rust side without wrapping a Mutex. The underlying tensorrt_llm::executor::Executor already contains a mutex.
The executor_status_looper spend CPU time polling at the number of tokens. Because the function is protected by mutex inside, this also interferes with the Executor. Because now the TensorRtLlmBackendImpl is interior mutable, we can mark it as `Send` and share it in multiple threads. Therefore, the loop can be split into request and response parts, and we can await for tokens instead of constantly polling.
The type of `eos_token_id` in `transformers.GenerationConfig` is `Union[int, list[int]]` (as of transformers 4.57.0). The original code only parses this field when the value is an array, so the stop_words is not populated for some models. Add code to handle the `int` case as well.
TGI already accepts grammar for guided decoding through its HTTP API, however, this feature has been disabled for the trtllm backend. To enable this feature: - Replace the hard-coded disable of the grammar support with the `disable_grammar_support` arg present in the v3 backend. - Pass tokenizer information when constructing the trtllm Executor and enable guided decoding by default. - Pass the validated grammar type and value from requests to the Executor.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Trtllm backend improvements
Fixes #3205
Before submitting
Pull Request section?
to it if that's the case.
documentation guidelines, and
here are tips on formatting docstrings.
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.
@mfuntowicz