Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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:main
base:main
Choose a base branch
Loading
fromleejuyuu:trtllm

Conversation

leejuyuu
Copy link

What does this PR do?

Trtllm backend improvements

  • feat: add new finish reasons
  • fix: fix prometheus_port CLI short arg conflict
  • fix: fix segfault when canceling request
  • feat: add stop sequence support
  • feat: catch broader exception
  • feat: check existence of config files

Fixes#3205

Before submitting

  • This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case).
  • Did you read thecontributor guideline,
    Pull Request section?
  • Was this discussed/approved via a Github issue or theforum? Please add a link
    to it if that's the case.
  • Did you make sure to update the documentation with your changes? Here are the
    documentation guidelines, and
    here are tips on formatting docstrings.
  • Did you write any new necessary tests?

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

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
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

Conflicting short argument -p
1 participant
@leejuyuu

[8]ページ先頭

©2009-2025 Movatter.jp