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

4
5
6
7
import pytest

from vllm import LLM

8
from ...utils import create_new_process_for_each_test
9
10
11
12


@pytest.mark.parametrize("tp_size", [1, 2])
@pytest.mark.parametrize("backend", ["mp", "ray"])
13
@create_new_process_for_each_test()
14
def test_collective_rpc(tp_size, backend, monkeypatch):
15
16
17
18
19
20
21
22
23
24
    if tp_size == 1 and backend == "ray":
        pytest.skip("Skip duplicate test case")
    if tp_size == 1:
        backend = None

    # intentionally define the method and class in the test function,
    # to test if they can be serialized and sent to the workers
    def echo_rank(self):
        return self.rank

25
    monkeypatch.setenv("VLLM_ALLOW_INSECURE_SERIALIZATION", "1")
26
    llm = LLM(model="meta-llama/Llama-3.2-1B-Instruct",
27
28
29
              enforce_eager=True,
              load_format="dummy",
              tensor_parallel_size=tp_size,
30
31
              distributed_executor_backend=backend)
    assert llm.collective_rpc(echo_rank) == list(range(tp_size))