mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 20:35:01 +08:00
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>
91 lines
3.4 KiB
Python
91 lines
3.4 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
from typing import List, Tuple
|
|
|
|
import pytest
|
|
import torch
|
|
from transformers import AutoTokenizer
|
|
|
|
from tests.v1.engine.utils import (NUM_PROMPT_LOGPROBS_UNDER_TEST,
|
|
NUM_SAMPLE_LOGPROBS_UNDER_TEST, PROMPT_LEN,
|
|
TOKENIZER_NAME,
|
|
DummyOutputProcessorTestVectors,
|
|
generate_dummy_prompt_logprobs_tensors,
|
|
generate_dummy_sample_logprobs)
|
|
from vllm.engine.arg_utils import EngineArgs
|
|
from vllm.transformers_utils.tokenizer_group import init_tokenizer_from_configs
|
|
|
|
from tests.v1.engine.utils import FULL_STRINGS # isort: skip
|
|
|
|
EngineCoreSampleLogprobsType = List[Tuple[torch.Tensor, torch.Tensor]]
|
|
EngineCorePromptLogprobsType = Tuple[torch.Tensor, torch.Tensor]
|
|
|
|
|
|
def _build_test_vectors_no_logprobs() -> DummyOutputProcessorTestVectors:
|
|
"""Generate output processor dummy test vectors, without logprobs
|
|
|
|
Returns:
|
|
DummyOutputProcessorTestVectors instance with no logprobs
|
|
"""
|
|
|
|
tokenizer = AutoTokenizer.from_pretrained(TOKENIZER_NAME)
|
|
vllm_config = EngineArgs(model=TOKENIZER_NAME).create_engine_config()
|
|
# Tokenize prompts under test & create dummy generated tokens
|
|
prompt_tokens = [
|
|
tokenizer(text).input_ids[:PROMPT_LEN] for text in FULL_STRINGS
|
|
]
|
|
generation_tokens = [
|
|
tokenizer(text).input_ids[PROMPT_LEN:] for text in FULL_STRINGS
|
|
]
|
|
# Generate prompt strings
|
|
prompt_strings = [
|
|
tokenizer.decode(prompt_tokens, skip_special_tokens=True)
|
|
for prompt_tokens in prompt_tokens
|
|
]
|
|
prompt_strings_len = [
|
|
len(prompt_string) for prompt_string in prompt_strings
|
|
]
|
|
return DummyOutputProcessorTestVectors(
|
|
tokenizer=tokenizer,
|
|
tokenizer_group=init_tokenizer_from_configs(
|
|
vllm_config.model_config, vllm_config.scheduler_config,
|
|
vllm_config.parallel_config, vllm_config.lora_config),
|
|
vllm_config=vllm_config,
|
|
full_tokens=[tokenizer(text).input_ids for text in FULL_STRINGS],
|
|
prompt_tokens=prompt_tokens,
|
|
generation_tokens=generation_tokens,
|
|
prompt_strings=prompt_strings,
|
|
prompt_strings_len=prompt_strings_len,
|
|
generation_strings=[
|
|
text[prompt_len:]
|
|
for text, prompt_len in zip(FULL_STRINGS, prompt_strings_len)
|
|
],
|
|
prompt_logprobs=[],
|
|
generation_logprobs=[])
|
|
|
|
|
|
@pytest.fixture
|
|
def dummy_test_vectors() -> DummyOutputProcessorTestVectors:
|
|
"""Generate output processor dummy test vectors, with logprobs
|
|
|
|
Returns:
|
|
DummyOutputProcessorTestVectors instance with logprobs
|
|
"""
|
|
# Build dummy test vectors without logprobs
|
|
dtv = _build_test_vectors_no_logprobs()
|
|
# Inject logprobs into dummy test vectors
|
|
# data structure
|
|
dtv.generation_logprobs = [
|
|
generate_dummy_sample_logprobs(
|
|
sampled_tokens_list=tokens_list,
|
|
num_logprobs=NUM_SAMPLE_LOGPROBS_UNDER_TEST,
|
|
tokenizer=dtv.tokenizer) for tokens_list in dtv.generation_tokens
|
|
]
|
|
dtv.prompt_logprobs = [
|
|
generate_dummy_prompt_logprobs_tensors(
|
|
prompt_tokens_list=tokens_list,
|
|
num_logprobs=NUM_PROMPT_LOGPROBS_UNDER_TEST,
|
|
tokenizer=dtv.tokenizer) for tokens_list in dtv.prompt_tokens
|
|
]
|
|
return dtv
|