- 22 Apr, 2025 1 commit
-
-
Jeffrey Li authored
Signed-off-by:Jeffrey Li <jeffrey.dot.li@gmail.com>
-
- 22 Mar, 2025 1 commit
-
-
Andy Lo authored
Signed-off-by:Andy Lo <andy@mistral.ai>
-
- 12 Mar, 2025 1 commit
-
-
Nick Hill authored
Signed-off-by:Nick Hill <nhill@redhat.com>
-
- 03 Mar, 2025 1 commit
-
-
Harry Mellor authored
-
- 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>
-
- 02 Feb, 2025 1 commit
-
-
Russell Bryant authored
- **Add SPDX license headers to python source files** - **Check for SPDX headers using pre-commit** commit 9d7ef44c3cfb72ca4c32e1c677d99259d10d4745 Author: Russell Bryant <rbryant@redhat.com> Date: Fri Jan 31 14:18:24 2025 -0500 Add SPDX license headers to python source files This commit adds SPDX license headers to python source files as recommended to the project by the Linux Foundation. These headers provide a concise way that is both human and machine readable for communicating license information for each source file. It helps avoid any ambiguity about the license of the code and can also be easily used by tools to help manage license compliance. The Linux Foundation runs license scans against the codebase to help ensure we are in compliance with the licenses of the code we use, including dependencies. Having these headers in place helps that tool do its job. More information can be found on the SPDX site: - https://spdx.dev/learn/handling-license-info/ Signed-off-by:Russell Bryant <rbryant@redhat.com> commit 5a1cf1cb3b80759131c73f6a9dddebccac039dea Author: Russell Bryant <rbryant@redhat.com> Date: Fri Jan 31 14:36:32 2025 -0500 Check for SPDX headers using pre-commit Signed-off-by:
Russell Bryant <rbryant@redhat.com> --------- Signed-off-by:
Russell Bryant <rbryant@redhat.com>
-
- 24 Jan, 2025 1 commit
-
-
Nick Hill authored
Signed-off-by:
Nick Hill <nhill@redhat.com> Co-authored-by:
Robert Shaw <rshaw@neuralmagic.com>
-
- 21 Jan, 2025 1 commit
-
-
Andy Lo authored
Signed-off-by:Andy Lo <andy@mistral.ai>
-
- 24 Dec, 2024 1 commit
-
-
Cyrus Leung authored
Signed-off-by:DarkLight1337 <tlleungac@connect.ust.hk>
-
- 13 Dec, 2024 2 commits
-
-
Cyrus Leung authored
Signed-off-by:DarkLight1337 <tlleungac@connect.ust.hk>
-
Cyrus Leung authored
Signed-off-by:DarkLight1337 <tlleungac@connect.ust.hk>
-
- 01 Dec, 2024 1 commit
-
-
Cyrus Leung authored
Signed-off-by:DarkLight1337 <tlleungac@connect.ust.hk>
-
- 25 Nov, 2024 1 commit
-
-
Maximilien de Bayser authored
Signed-off-by:
Max de Bayser <maxdebayser@gmail.com> Signed-off-by:
Max de Bayser <mbayser@br.ibm.com> Signed-off-by:
Flavia Beo <flavia.beo@ibm.com> Co-authored-by:
Flavia Beo <flavia.beo@ibm.com>
-
- 18 Nov, 2024 1 commit
-
-
lkchen authored
Signed-off-by:Linkun Chen <lkchen+anyscale@github.com>
-
- 12 Nov, 2024 1 commit
-
-
zifeitong authored
-
- 11 Nov, 2024 1 commit
-
-
Robert Shaw authored
Signed-off-by:
Nick Hill <nickhill@us.ibm.com> Signed-off-by:
rshaw@neuralmagic.com <rshaw@neuralmagic.com> Signed-off-by:
Nick Hill <nhill@redhat.com> Co-authored-by:
Nick Hill <nickhill@us.ibm.com> Co-authored-by:
Varun Sundar Rabindranath <varun@neuralmagic.com> Co-authored-by:
Nick Hill <nhill@redhat.com> Co-authored-by:
Tyler Michael Smith <tyler@neuralmagic.com>
-
- 22 Oct, 2024 1 commit
-
-
youkaichao authored
-
- 18 Oct, 2024 1 commit
-
-
Nick Hill authored
-
- 16 Oct, 2024 1 commit
-
-
Russell Bryant authored
Signed-off-by:Russell Bryant <rbryant@redhat.com>
-
- 11 Oct, 2024 1 commit
-
-
youkaichao authored
Co-authored-by:Brendan Wong <bjwpokemon@gmail.com>
-
- 07 Oct, 2024 1 commit
-
-
youkaichao authored
-
- 23 Sep, 2024 1 commit
-
-
Alexander Matveev authored
-
- 12 Sep, 2024 1 commit
-
-
Nick Hill authored
-
- 13 Aug, 2024 1 commit
-
-
Cyrus Leung authored
-
- 09 Aug, 2024 1 commit
-
-
Alexander Matveev authored
-
- 06 Aug, 2024 1 commit
-
-
afeldman-nm authored
[Core] Subclass ModelRunner to support cross-attention & encoder sequences (towards eventual encoder/decoder model support) (#4942) Co-authored-by:
Andrew Feldman <afeld2012@gmail.com> Co-authored-by:
Nick Hill <nickhill@us.ibm.com>
-
- 29 Jul, 2024 1 commit
-
-
Peng Guanwen authored
-
- 02 Jul, 2024 1 commit
-
-
Alexander Matveev authored
-
- 28 May, 2024 1 commit
-
-
Cyrus Leung authored
Co-authored-by:Roger Wang <ywang@roblox.com>
-
- 11 May, 2024 1 commit
-
-
Chang Su authored
-
- 11 Apr, 2024 1 commit
-
-
Nick Hill authored
-
- 29 Mar, 2024 1 commit
-
-
Roy authored
-
- 26 Mar, 2024 1 commit
-
-
Nick Hill authored
Co-authored-by:Sahil Suneja <sahilsuneja@gmail.com>
-
- 25 Mar, 2024 1 commit
-
-
SangBin Cho authored
-
- 11 Mar, 2024 1 commit
-
-
Nick Hill authored
-
- 05 Mar, 2024 1 commit
-
-
Nick Hill authored
-
- 21 Feb, 2024 1 commit
-
-
Antoni Baum authored
-
- 23 Jan, 2024 1 commit
-
-
Antoni Baum authored
Co-authored-by:
Chen Shen <scv119@gmail.com> Co-authored-by:
Shreyas Krishnaswamy <shrekris@anyscale.com> Co-authored-by:
Avnish Narayan <avnish@anyscale.com>
-
- 03 Nov, 2023 1 commit
-
-
lots-o authored
-
- 16 Oct, 2023 1 commit
-
-
Zhuohan Li authored
Co-authored-by:Yunmo Chen <16273544+wanmok@users.noreply.github.com>
-