test_tensorizer.py 12.2 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
import gc
4
5
import json
import os
6
import pathlib
7
import subprocess
8
from functools import partial
9
10
from unittest.mock import MagicMock, patch

11
import openai
12
import pytest
13
import torch
14
from huggingface_hub import snapshot_download
15
16

from vllm import SamplingParams
17
from vllm.engine.arg_utils import EngineArgs
18
# yapf conflicts with isort for this docstring
19
20
21
22
23
24
# yapf: disable
from vllm.model_executor.model_loader.tensorizer import (TensorizerConfig,
                                                         TensorSerializer,
                                                         is_vllm_tensorized,
                                                         load_with_tensorizer,
                                                         open_stream,
25
26
                                                         serialize_vllm_model,
                                                         tensorize_vllm_model)
27
# yapf: enable
28
from vllm.utils import PlaceholderModule, import_from_path
29

30
from ..utils import VLLM_PATH, RemoteOpenAIServer
31

32
33
34
35
36
37
try:
    from tensorizer import EncryptionParams
except ImportError:
    tensorizer = PlaceholderModule("tensorizer")  # type: ignore[assignment]
    EncryptionParams = tensorizer.placeholder_attr("EncryptionParams")

38
EXAMPLES_PATH = VLLM_PATH / "examples"
39

40
41
42
43
44
45
46
47
48
49
prompts = [
    "Hello, my name is",
    "The president of the United States is",
    "The capital of France is",
    "The future of AI is",
]
# Create a sampling params object.
sampling_params = SamplingParams(temperature=0.8, top_p=0.95, seed=0)

model_ref = "facebook/opt-125m"
50
51
tensorize_model_for_testing_script = os.path.join(
    os.path.dirname(__file__), "tensorize_vllm_model_for_testing.py")
52

53

54
55
56
57
58
59
60
def is_curl_installed():
    try:
        subprocess.check_call(['curl', '--version'])
        return True
    except (subprocess.CalledProcessError, FileNotFoundError):
        return False

61

62
63
64
65
66
def write_keyfile(keyfile_path: str):
    encryption_params = EncryptionParams.random()
    pathlib.Path(keyfile_path).parent.mkdir(parents=True, exist_ok=True)
    with open(keyfile_path, 'wb') as f:
        f.write(encryption_params.key)
67
68


69
@patch('vllm.model_executor.model_loader.tensorizer.TensorizerAgent')
70
71
72
73
74
75
def test_load_with_tensorizer(mock_agent, tensorizer_config):
    mock_linear_method = MagicMock()
    mock_agent_instance = mock_agent.return_value
    mock_agent_instance.deserialize.return_value = MagicMock()

    result = load_with_tensorizer(tensorizer_config,
76
                                  quant_method=mock_linear_method)
77
78

    mock_agent.assert_called_once_with(tensorizer_config,
79
                                       quant_method=mock_linear_method)
80
81
82
83
84
85
86
87
88
    mock_agent_instance.deserialize.assert_called_once()
    assert result == mock_agent_instance.deserialize.return_value


@pytest.mark.skipif(not is_curl_installed(), reason="cURL is not installed")
def test_can_deserialize_s3(vllm_runner):
    model_ref = "EleutherAI/pythia-1.4b"
    tensorized_path = f"s3://tensorized/{model_ref}/fp16/model.tensors"

89
    with vllm_runner(model_ref,
90
91
92
93
94
95
                     load_format="tensorizer",
                     model_loader_extra_config=TensorizerConfig(
                         tensorizer_uri=tensorized_path,
                         num_readers=1,
                         s3_endpoint="object.ord1.coreweave.com",
                     )) as loaded_hf_model:
96
97
        deserialized_outputs = loaded_hf_model.generate(
            prompts, sampling_params)
98
        # noqa: E501
99

100
        assert deserialized_outputs
101
102
103
104
105


@pytest.mark.skipif(not is_curl_installed(), reason="cURL is not installed")
def test_deserialized_encrypted_vllm_model_has_same_outputs(
        vllm_runner, tmp_path):
106
107
108
    with vllm_runner(model_ref) as vllm_model:
        model_path = tmp_path / (model_ref + ".tensors")
        key_path = tmp_path / (model_ref + ".key")
109
110
        write_keyfile(key_path)

111
        outputs = vllm_model.generate(prompts, sampling_params)
112

113
114
        config_for_serializing = TensorizerConfig(tensorizer_uri=model_path,
                                                  encryption_keyfile=key_path)
115
116
117
118

        vllm_model.apply_model(
            partial(serialize_vllm_model,
                    tensorizer_config=config_for_serializing))
119
120
121
122

    config_for_deserializing = TensorizerConfig(tensorizer_uri=model_path,
                                                encryption_keyfile=key_path)

123
124
125
126
    with vllm_runner(model_ref,
                     load_format="tensorizer",
                     model_loader_extra_config=config_for_deserializing
                     ) as loaded_vllm_model:  # noqa: E501
127

128
129
        deserialized_outputs = loaded_vllm_model.generate(
            prompts, sampling_params)
130
        # noqa: E501
131

132
        assert outputs == deserialized_outputs
133
134
135
136


def test_deserialized_hf_model_has_same_outputs(hf_runner, vllm_runner,
                                                tmp_path):
137
138
139
140
141
142
143
144
    with hf_runner(model_ref) as hf_model:
        model_path = tmp_path / (model_ref + ".tensors")
        max_tokens = 50
        outputs = hf_model.generate_greedy(prompts, max_tokens=max_tokens)
        with open_stream(model_path, "wb+") as stream:
            serializer = TensorSerializer(stream)
            serializer.write_module(hf_model.model)

145
    with vllm_runner(model_ref,
146
147
148
149
150
                     load_format="tensorizer",
                     model_loader_extra_config=TensorizerConfig(
                         tensorizer_uri=model_path,
                         num_readers=1,
                     )) as loaded_hf_model:
151
152
        deserialized_outputs = loaded_hf_model.generate_greedy(
            prompts, max_tokens=max_tokens)
153

154
        assert outputs == deserialized_outputs
155
156
157


def test_vllm_model_can_load_with_lora(vllm_runner, tmp_path):
158
    multilora_inference = import_from_path(
159
160
        "examples.offline_inference.multilora_inference",
        EXAMPLES_PATH / "offline_inference/multilora_inference.py",
161
    )
162
163
164

    model_ref = "meta-llama/Llama-2-7b-hf"
    lora_path = snapshot_download(repo_id="yard1/llama-2-7b-sql-lora-test")
165
    test_prompts = multilora_inference.create_test_prompts(lora_path)
166
167

    # Serialize model before deserializing and binding LoRA adapters
168
    with vllm_runner(model_ref) as vllm_model:
169
        model_path = tmp_path / (model_ref + ".tensors")
170

171
172
173
174
        vllm_model.apply_model(
            partial(
                serialize_vllm_model,
                tensorizer_config=TensorizerConfig(tensorizer_uri=model_path)))
175

176
    with vllm_runner(
177
178
179
180
181
182
183
184
185
186
187
188
            model_ref,
            load_format="tensorizer",
            model_loader_extra_config=TensorizerConfig(
                tensorizer_uri=model_path,
                num_readers=1,
            ),
            enable_lora=True,
            max_loras=1,
            max_lora_rank=8,
            max_cpu_loras=2,
            max_num_seqs=50,
            max_model_len=1000,
189
    ) as loaded_vllm_model:
190
191
        multilora_inference.process_requests(
            loaded_vllm_model.model.llm_engine, test_prompts)
192

193
        assert loaded_vllm_model
194
195
196


def test_load_without_tensorizer_load_format(vllm_runner):
197
    model = None
198
    with pytest.raises(ValueError):
199
        model = vllm_runner(
200
201
            model_ref,
            model_loader_extra_config=TensorizerConfig(tensorizer_uri="test"))
202
203
204
    del model
    gc.collect()
    torch.cuda.empty_cache()
205
206
207


@pytest.mark.skipif(not is_curl_installed(), reason="cURL is not installed")
208
def test_openai_apiserver_with_tensorizer(vllm_runner, tmp_path):
209
    ## Serialize model
210
    with vllm_runner(model_ref) as vllm_model:
211
        model_path = tmp_path / (model_ref + ".tensors")
212

213
214
215
216
        vllm_model.apply_model(
            partial(
                serialize_vllm_model,
                tensorizer_config=TensorizerConfig(tensorizer_uri=model_path)))
217

218
219
220
        model_loader_extra_config = {
            "tensorizer_uri": str(model_path),
        }
221

222
223
    ## Start OpenAI API server
    openai_args = [
224
225
226
227
228
        "--dtype",
        "float16",
        "--load-format",
        "tensorizer",
        "--model-loader-extra-config",
229
        json.dumps(model_loader_extra_config),
230
231
    ]

232
    with RemoteOpenAIServer(model_ref, openai_args) as server:
233
        print("Server ready.")
234

235
236
        client = server.get_client()
        completion = client.completions.create(model=model_ref,
237
238
239
                                               prompt="Hello, my name is",
                                               max_tokens=5,
                                               temperature=0.0)
240

241
242
243
244
245
246
        assert completion.id is not None
        assert len(completion.choices) == 1
        assert len(completion.choices[0].text) >= 5
        assert completion.choices[0].finish_reason == "length"
        assert completion.usage == openai.types.CompletionUsage(
            completion_tokens=5, prompt_tokens=6, total_tokens=11)
247
248
249


def test_raise_value_error_on_invalid_load_format(vllm_runner):
250
    model = None
251
    with pytest.raises(ValueError):
252
        model = vllm_runner(
253
254
255
            model_ref,
            load_format="safetensors",
            model_loader_extra_config=TensorizerConfig(tensorizer_uri="test"))
256
257
258
    del model
    gc.collect()
    torch.cuda.empty_cache()
259
260


261
@pytest.mark.skipif(torch.cuda.device_count() < 2, reason="Requires 2 GPUs")
262
def test_tensorizer_with_tp_path_without_template(vllm_runner):
263
264
265
266
267
268
269
    with pytest.raises(ValueError):
        model_ref = "EleutherAI/pythia-1.4b"
        tensorized_path = f"s3://tensorized/{model_ref}/fp16/model.tensors"

        vllm_runner(
            model_ref,
            load_format="tensorizer",
270
271
272
273
274
            model_loader_extra_config=TensorizerConfig(
                tensorizer_uri=tensorized_path,
                num_readers=1,
                s3_endpoint="object.ord1.coreweave.com",
            ),
275
            tensor_parallel_size=2,
276
            disable_custom_all_reduce=True,
277
        )
278

279

280
281
282
@pytest.mark.skipif(torch.cuda.device_count() < 2, reason="Requires 2 GPUs")
def test_deserialized_encrypted_vllm_model_with_tp_has_same_outputs(
        vllm_runner, tmp_path):
283
284
    model_ref = "EleutherAI/pythia-1.4b"
    # record outputs from un-sharded un-tensorized model
285
286
287
288
289
290
291
    with vllm_runner(
            model_ref,
            disable_custom_all_reduce=True,
            enforce_eager=True,
    ) as base_model:
        outputs = base_model.generate(prompts, sampling_params)
        base_model.model.llm_engine.model_executor.shutdown()
292
293
294
295
296
297
298
299
300
301
302
303

    # load model with two shards and serialize with encryption
    model_path = str(tmp_path / (model_ref + "-%02d.tensors"))
    key_path = tmp_path / (model_ref + ".key")

    tensorizer_config = TensorizerConfig(
        tensorizer_uri=model_path,
        encryption_keyfile=key_path,
    )

    tensorize_vllm_model(
        engine_args=EngineArgs(
304
305
306
307
308
            model=model_ref,
            tensor_parallel_size=2,
            disable_custom_all_reduce=True,
            enforce_eager=True,
        ),
309
310
311
312
313
        tensorizer_config=tensorizer_config,
    )
    assert os.path.isfile(model_path % 0), "Serialization subprocess failed"
    assert os.path.isfile(model_path % 1), "Serialization subprocess failed"

314
315
316
317
318
319
320
    with vllm_runner(
            model_ref,
            tensor_parallel_size=2,
            load_format="tensorizer",
            disable_custom_all_reduce=True,
            enforce_eager=True,
            model_loader_extra_config=tensorizer_config) as loaded_vllm_model:
321
322
        deserialized_outputs = loaded_vllm_model.generate(
            prompts, sampling_params)
323
324
325

    assert outputs == deserialized_outputs

326

327
@pytest.mark.flaky(reruns=3)
328
def test_vllm_tensorized_model_has_same_outputs(vllm_runner, tmp_path):
329
330
    gc.collect()
    torch.cuda.empty_cache()
331
332
333
334
    model_ref = "facebook/opt-125m"
    model_path = tmp_path / (model_ref + ".tensors")
    config = TensorizerConfig(tensorizer_uri=str(model_path))

335
336
    with vllm_runner(model_ref) as vllm_model:
        outputs = vllm_model.generate(prompts, sampling_params)
337
338
339

        vllm_model.apply_model(
            partial(serialize_vllm_model, tensorizer_config=config))
340

341
        assert is_vllm_tensorized(config)
342

343
    with vllm_runner(model_ref,
344
345
                     load_format="tensorizer",
                     model_loader_extra_config=config) as loaded_vllm_model:
346
347
        deserialized_outputs = loaded_vllm_model.generate(
            prompts, sampling_params)
348
        # noqa: E501
349

350
        assert outputs == deserialized_outputs