test_encode.py 2.64 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
5
6
import weakref

import pytest
7
import os
8

9
from vllm import LLM, PoolingParams
10
from vllm.distributed import cleanup_dist_env_and_memory
11

12
from vllm.platforms import current_platform
13
from ....utils import models_path_prefix
14

zhuwenwen's avatar
zhuwenwen committed
15
MODEL_NAME = os.path.join(models_path_prefix, "intfloat/multilingual-e5-small")
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

PROMPTS = [
    "Hello, my name is",
    "The president of the United States is",
    "The capital of France is",
    "The future of AI is",
]

TOKEN_IDS = [
    # Using ID={0, 1, 2, 3} results in NaN values,
    # so we add this offset of 1000
    [1000],
    [1000, 1001],
    [1000, 1002, 1001],
    [1000, 1003, 1001, 1002],
]


@pytest.fixture(scope="module")
def llm():
36
37
38
39
40
41
    # ROCm: Use FLEX_ATTENTION backend as it's the only attention backend
    # that supports encoder-only models on ROCm.
    attention_config = None
    if current_platform.is_rocm():
        attention_config = {"backend": "FLEX_ATTENTION"}

42
43
    # pytest caches the fixture so we use weakref.proxy to
    # enable garbage collection
44
45
46
47
48
49
50
    llm = LLM(
        model=MODEL_NAME,
        max_num_batched_tokens=32768,
        tensor_parallel_size=1,
        gpu_memory_utilization=0.75,
        enforce_eager=True,
        seed=0,
51
        attention_config=attention_config,
52
    )
53

54
    yield weakref.proxy(llm)
55

56
    del llm
57

58
    cleanup_dist_env_and_memory()
59
60
61
62
63
64
65
66
67
68
69
70


@pytest.mark.skip_global_cleanup
def test_multiple_pooling_params(llm: LLM):
    pooling_params = [
        PoolingParams(),
        PoolingParams(),
        PoolingParams(),
        PoolingParams(),
    ]

    # Multiple PoolingParams should be matched with each prompt
71
    outputs = llm.encode(PROMPTS, pooling_params=pooling_params, pooling_task="embed")
72
73
74
75
    assert len(PROMPTS) == len(outputs)

    # Exception raised, if the size of params does not match the size of prompts
    with pytest.raises(ValueError):
76
77
78
        outputs = llm.encode(
            PROMPTS, pooling_params=pooling_params[:3], pooling_task="embed"
        )
79
80
81

    # Single PoolingParams should be applied to every prompt
    single_pooling_params = PoolingParams()
82
83
84
    outputs = llm.encode(
        PROMPTS, pooling_params=single_pooling_params, pooling_task="embed"
    )
85
86
87
    assert len(PROMPTS) == len(outputs)

    # pooling_params is None, default params should be applied
88
    outputs = llm.encode(PROMPTS, pooling_params=None, pooling_task="embed")
89
    assert len(PROMPTS) == len(outputs)
90
91
92
93
94
95


def test_right_side_truncation(llm: LLM):
    # Embeddings models should truncate the end of the prompt
    tokenizer = llm.get_tokenizer()
    assert tokenizer.truncation_side == "right"