- 08 Mar, 2025 1 commit
-
-
afeldman-nm authored
-
- 07 Mar, 2025 2 commits
-
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
Aaron Pham authored
Signed-off-by:
Aaron Pham <contact@aarnphm.xyz> Signed-off-by:
Russell Bryant <rbryant@redhat.com> Co-authored-by:
Russell Bryant <rbryant@redhat.com> Co-authored-by:
Michael Goin <mgoin64@gmail.com> Co-authored-by:
Nick Hill <nhill@redhat.com>
-
- 06 Mar, 2025 2 commits
-
-
Himanshu Jaju authored
Signed-off-by:
Himanshu Jaju <hj@mistral.ai> Signed-off-by:
Nick Hill <nhill@redhat.com> Co-authored-by:
Nick Hill <nhill@redhat.com>
-
Harry Mellor authored
Signed-off-by:Harry Mellor <19981378+hmellor@users.noreply.github.com>
-
- 05 Mar, 2025 5 commits
-
-
Vincent authored
Signed-off-by:
vincent-4 <vincentzhongy+githubvincent4@gmail.com> Signed-off-by:
Brayden Zhong <b8zhong@uwaterloo.ca> Signed-off-by:
Harry Mellor <19981378+hmellor@users.noreply.github.com> Co-authored-by:
Brayden Zhong <b8zhong@uwaterloo.ca> Co-authored-by:
Harry Mellor <19981378+hmellor@users.noreply.github.com>
-
Robert Shaw authored
Signed-off-by:rshaw@neuralmagic.com <rshaw@neuralmagic.com>
-
Lu Fang authored
Signed-off-by:Lu Fang <lufang@fb.com>
-
Roger Wang authored
Signed-off-by:Roger Wang <ywang@roblox.com>
-
Tyler Michael Smith authored
-
- 04 Mar, 2025 1 commit
-
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
- 03 Mar, 2025 4 commits
-
-
Mark McLoughlin authored
[WIP][[V1][Metrics] Implement max_num_generation_tokens, request_params_n, and request_params_max_tokens metrics (#14055) Signed-off-by:Mark McLoughlin <markmc@redhat.com>
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
Mark McLoughlin authored
Signed-off-by:Mark McLoughlin <markmc@redhat.com>
-
Harry Mellor authored
-
- 27 Feb, 2025 1 commit
-
-
Mark McLoughlin authored
-
- 25 Feb, 2025 2 commits
-
-
Varun Sundar Rabindranath authored
-
Mark McLoughlin authored
-
- 24 Feb, 2025 1 commit
-
-
afeldman-nm authored
Signed-off-by:
Andrew Feldman <afeldman@neuralmagic.com> Co-authored-by:
Nick Hill <nhill@redhat.com>
-
- 23 Feb, 2025 2 commits
-
-
Nick Hill authored
Even though ZMQ context.destroy() is meant to close open sockets before terminating the context, it appears to be necessary to do this explicitly or else it can hang in the context.term() method. Close zmq sockets explicitly before terminating context, make shutdown of client resource more robust, shut down engine core process prior to terminating zmq context. Signed-off-by:Nick Hill <nhill@redhat.com>
-
youkaichao authored
Signed-off-by:youkaichao <youkaichao@gmail.com>
-
- 22 Feb, 2025 3 commits
-
-
youkaichao authored
Signed-off-by:youkaichao <youkaichao@gmail.com>
-
youkaichao authored
Signed-off-by:youkaichao <youkaichao@gmail.com>
-
Lu Fang authored
Signed-off-by:Lu Fang <lufang@fb.com>
-
- 20 Feb, 2025 2 commits
-
-
youkaichao authored
Signed-off-by:
youkaichao <youkaichao@gmail.com> Signed-off-by:
cennn <2523403608@qq.com> Co-authored-by:
cennn <2523403608@qq.com>
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
- 19 Feb, 2025 1 commit
-
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
- 17 Feb, 2025 1 commit
-
-
Woosuk Kwon authored
Signed-off-by:Woosuk Kwon <woosuk.kwon@berkeley.edu>
-
- 16 Feb, 2025 1 commit
-
-
Lily Liu authored
Signed-off-by:LiuXiaoxuanPKU <lilyliupku@gmail.com>
-
- 15 Feb, 2025 2 commits
-
-
Cody Yu authored
-
Mark McLoughlin authored
-
- 14 Feb, 2025 2 commits
-
-
Varun Sundar Rabindranath authored
Signed-off-by:
Varun Sundar Rabindranath <varun@neuralmagic.com> Co-authored-by:
Varun Sundar Rabindranath <varun@neuralmagic.com>
-
Roger Wang authored
-
- 13 Feb, 2025 2 commits
-
-
Roger Wang authored
-
Rui Qiao authored
-
- 12 Feb, 2025 1 commit
-
-
bnellnm authored
-
- 11 Feb, 2025 1 commit
-
-
Mark McLoughlin authored
Signed-off-by:Mark McLoughlin <markmc@redhat.com>
-
- 10 Feb, 2025 1 commit
-
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
- 07 Feb, 2025 1 commit
-
-
afeldman-nm authored
This PR is adding support for sample logprobs & prompt logprobs to vLLM v1. New behavior: - During model execution, model runner computes sample logprobs (if user-provided logprobs setting is not None) and prompt logprobs (if user-provided prompt_logprobs setting is not None). For both sample and prompt logprobs, the engine core returns 3 vectors: token ids, token logprob values, token ranks. Ranks reflect tokens' 1-indexed positions in the vocabulary vector after sorting the vocabulary by log probability in descending order. - In scheduler.update_from_output(), sample and prompt logprobs are incorporated into the EngineCoreOutput data structure which is transferred to the engine client. If multiprocessing is enabled, then sample and prompt logprobs will be (de)serialized when the EngineCoreOutput data structure is (de)serialized. - During output processing, the LogprobsProcessor transforms the triplet of token ids, token logprobs values, and token ranks into the OpenAI-compatible List[Dict[token id,Logprob]] format (for sample and prompt logprobs respectively.) - Each Logprob instance (whether sample- or prompt-) consists of a token's log-probability, rank, and detokenized string representation. Note that logprob detokenization is handled by the LogprobsProcessor not the detokenizer. Signed-off-by:
Andrew Feldman <afeldman@neuralmagic.com> Signed-off-by:
Nick Hill <nhill@redhat.com> Signed-off-by:
rshaw@neuralmagic.com <rshaw@neuralmagic.com> Co-authored-by:
rshaw@neuralmagic.com <rshaw@neuralmagic.com> Co-authored-by:
Nick Hill <nhill@redhat.com>
-
- 05 Feb, 2025 1 commit
-
-
Nick Hill authored
-