test_offline.py 1.85 KB
Newer Older
1
2
3
4
5
6
7
8
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project

import weakref

import pytest
import torch

9
from tests.models.utils import softmax
10
11
12
13
14
15
16
17
18
19
20
21
from vllm import LLM, PoolingParams
from vllm.distributed import cleanup_dist_env_and_memory

MODEL_NAME = "internlm/internlm2-1_8b-reward"

prompts = ["The chef prepared a delicious meal."]


@pytest.fixture(scope="module")
def llm():
    # pytest caches the fixture so we use weakref.proxy to
    # enable garbage collection
22
23
24
25
26
27
28
29
30
    llm = LLM(
        model=MODEL_NAME,
        max_num_batched_tokens=32768,
        tensor_parallel_size=1,
        gpu_memory_utilization=0.75,
        enforce_eager=True,
        trust_remote_code=True,
        seed=0,
    )
31

32
    yield weakref.proxy(llm)
33

34
    del llm
35
36
37
38

    cleanup_dist_env_and_memory()


39
40
41
42
43
44
45
@pytest.mark.skip_global_cleanup
def test_config(llm: LLM):
    vllm_config = llm.llm_engine.vllm_config
    assert vllm_config.cache_config.enable_prefix_caching
    assert vllm_config.scheduler_config.enable_chunked_prefill


46
def test_pooling_params(llm: LLM):
47
    def get_outputs(use_activation):
48
        outputs = llm.reward(
49
50
51
            prompts,
            pooling_params=PoolingParams(use_activation=use_activation),
            use_tqdm=False,
52
        )
53
54
        return torch.cat([x.outputs.data for x in outputs])

55
56
57
    default = get_outputs(use_activation=None)
    w_activation = get_outputs(use_activation=True)
    wo_activation = get_outputs(use_activation=False)
58

59
60
    assert torch.allclose(default, w_activation, atol=1e-2), (
        "Default should use activation."
61
    )
62
63
64
65
66
    assert not torch.allclose(w_activation, wo_activation, atol=1e-2), (
        "wo_activation should not use activation."
    )
    assert torch.allclose(softmax(wo_activation), w_activation, atol=1e-2), (
        "w_activation should be close to activation(wo_activation)."
67
    )