- Notifications
You must be signed in to change notification settings - Fork1.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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
leejuyuu wants to merge9 commits intohuggingface:mainChoose a base branch fromleejuyuu: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
Uh oh!
There was an error while loading.Please reload this page.
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 theshort arg variant.Fixeshuggingface#3205
When a request is cancelled, the `tensorrt_llm::executor::Result`contains `outputTokenIds` with size 1, but `outputTokenIds[0]` has size0. This causes `as_generation_step` to segfault.Check the size of `outputTokenIds` and `logProbs` before attempting toaccess the inner vector. The `finishReasons` can be skipped because ithas only one dimension and the minimum beam size is 1.Because cxx have not added Option support yet, include two boolean flagsto 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 thebroader `std::exception` instead. This is beneficial becausenlohmann/json also throws exception.
When the required config files are not present, nlohmann/json throwsparsing error, which does not help much for identifying what was wrong.Check the existence of these files early and return specific errormessages.
Currently, the do_sample option is ignored and the executor will alwayssample. 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 referencepoints on both sides and return duration relative to the referencepoint instead.
The executor_status_looper runs a spin loop, even if there are no activerequests. This makes the service constantly wasting a CPU core.Make the loop block on receiving requests if there are no running onesto reduce CPU usage when idle.
Sign up for freeto 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