profiling.py 7.27 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
4
5
from abc import ABC, abstractmethod
from collections.abc import Mapping
from dataclasses import dataclass, field
6
from typing import Generic, TypeVar
7
8
9
10
11

import numpy as np
import numpy.typing as npt
from PIL import Image

12
13
import vllm.envs as envs
from vllm.inputs import DummyData
14
15
from vllm.logger import init_logger

16
from .inputs import MultiModalDataDict, MultiModalInputs
17
from .processing import BaseMultiModalProcessor, BaseProcessingInfo
18
19
20
21
22
23

logger = init_logger(__name__)


@dataclass
class ProcessorInputs:
24
25
26
27
    """
    Represents the keyword arguments to
    :meth:`vllm.multimodal.processing.BaseMultiModalProcessor.apply`.
    """
28
29
30
31
32
    prompt_text: str
    mm_data: MultiModalDataDict
    hf_processor_mm_kwargs: Mapping[str, object] = field(default_factory=dict)


33
34
35
36
_I = TypeVar("_I", bound=BaseProcessingInfo)


class BaseDummyInputsBuilder(ABC, Generic[_I]):
37
    """
38
    Abstract base class that constructs the dummy data to profile
39
40
41
    multi-modal models.
    """

42
    def __init__(self, info: _I) -> None:
43
44
        super().__init__()

45
        self.info = info
46
47
48
49
50
51
52
53

    @abstractmethod
    def get_dummy_processor_inputs(
        self,
        seq_len: int,
        mm_counts: Mapping[str, int],
    ) -> ProcessorInputs:
        """
54
        Build the input which, after processing, results in
55
        :code:`self.info.get_mm_max_tokens_per_item()` placeholder tokens.
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
        """
        raise NotImplementedError

    def _get_dummy_audios(
        self,
        *,
        length: int,
        num_audios: int,
    ) -> list[npt.NDArray]:
        audio = np.zeros((length, ))
        return [audio] * num_audios

    def _get_dummy_images(
        self,
        *,
        width: int,
        height: int,
        num_images: int,
    ) -> list[Image.Image]:
        image = Image.new("RGB", (width, height), color=0)
        return [image] * num_images

    def _get_dummy_videos(
        self,
        *,
        width: int,
        height: int,
        num_frames: int,
        num_videos: int,
    ) -> list[npt.NDArray]:
        video = np.zeros((num_frames, width, height, 3))
        return [video] * num_videos

89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110

class MultiModalProfiler(Generic[_I]):
    """
    Contains code for running memory profiling for multi-modal models.
    """

    def __init__(
        self,
        processor: BaseMultiModalProcessor[_I],
    ) -> None:
        super().__init__()

        self.processor = processor

    @property
    def processing_info(self) -> BaseProcessingInfo:
        return self.processor.info

    @property
    def dummy_inputs(self) -> BaseDummyInputsBuilder[_I]:
        return self.processor.dummy_inputs

111
    def get_mm_limits(self) -> Mapping[str, int]:
112
        mm_config = self.processing_info.ctx.get_mm_config()
113
114
        mm_limit_per_prompt = mm_config.limit_per_prompt

115
        supported_mm_limits = self.processing_info.get_supported_mm_limits()
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130

        mm_limits = {
            modality: mm_limit_per_prompt.get(modality, 1)
            for modality in supported_mm_limits
        }

        for modality, supported_limit in supported_mm_limits.items():
            limit = mm_limits[modality]
            if supported_limit is not None and supported_limit < limit:
                raise ValueError(
                    f"You set {modality}={limit} (or defaulted to 1) in "
                    f"`--limit-mm-per-prompt`, but this model only supports "
                    f"at most {supported_limit} {modality} items.")

        return mm_limits
131
132
133
134
135

    def _get_dummy_mm_inputs(
        self,
        seq_len: int,
        mm_counts: Mapping[str, int],
136
    ) -> MultiModalInputs:
137
138
139
140
141
        factory = self.dummy_inputs
        processor_inputs = factory.get_dummy_processor_inputs(
            seq_len, mm_counts)

        return self.processor.apply(
142
            prompt=processor_inputs.prompt_text,
143
144
145
146
            mm_data=processor_inputs.mm_data,
            hf_processor_mm_kwargs=processor_inputs.hf_processor_mm_kwargs,
        )

147
148
149
150
151
    def get_dummy_data(
        self,
        seq_len: int,
        is_encoder_data: bool = False,
    ) -> DummyData:
152
153
154
        # Avoid circular import
        from vllm.sequence import SequenceData

155
        mm_counts = self.get_mm_limits()
156
157

        info = self.processing_info
158
159
        mm_max_tokens_per_item = info.get_mm_max_tokens_per_item(
            seq_len, mm_counts)
160
161
162

        if mm_counts.keys() != mm_max_tokens_per_item.keys():
            raise AssertionError(
163
                "The keys returned by `get_supported_mm_limits` "
164
165
166
167
168
169
                f"({set(mm_counts.keys())}) should be the same as those "
                "returned by `get_mm_max_tokens_per_item` "
                f"({set(mm_max_tokens_per_item.keys())})")

        mm_inputs = self._get_dummy_mm_inputs(seq_len, mm_counts)
        placeholders_by_modality = mm_inputs["mm_placeholders"]
170
171
172
173
174
        # For encoder-decoder models, use encoder prompt token ids instead of
        # decoder prompt to construct dummy seq_data for encoder profiling.
        prompt_token_ids = (
            mm_inputs["prompt_token_ids"] if not is_encoder_data else
            mm_inputs["encoder_prompt_token_ids"])  # type: ignore
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193

        total_placeholders_by_modality = {
            modality: sum(item["length"] for item in placeholders)
            for modality, placeholders in placeholders_by_modality.items()
        }
        expected_placeholders_by_modality = {
            modality: mm_max_tokens_per_item[modality] * mm_counts[modality]
            for modality in placeholders_by_modality
        }
        if total_placeholders_by_modality != expected_placeholders_by_modality:
            raise AssertionError(
                f"The processed dummy data has a total of "
                f"{total_placeholders_by_modality} placeholder tokens, which "
                f"is not the expected {expected_placeholders_by_modality} "
                "tokens.")

        total_len = len(prompt_token_ids)

        # V0 does not support chunked prefill.
194
        if (total_len > seq_len and not envs.VLLM_USE_V1) or is_encoder_data:
195
            if total_len > seq_len and not is_encoder_data:
196
197
198
199
200
201
202
203
204
205
                logger.warning(
                    "The context length (%d) of the model is too short "
                    "to hold the multi-modal embeddings in the worst case "
                    "(%d tokens in total, out of which %s are reserved for "
                    "multi-modal embeddings). This may cause certain "
                    "multi-modal inputs to fail during inference, even when "
                    "the input text is short. To avoid this, you should "
                    "increase `max_model_len`, reduce `max_num_seqs`, "
                    "and/or reduce `mm_counts`.", seq_len, total_len,
                    total_placeholders_by_modality)
206

207
208
209
            num_tokens_to_pad = max(total_len, seq_len) - total_len
            prompt_token_ids.extend([0] * num_tokens_to_pad)

210
            return DummyData(
211
                seq_data=SequenceData.from_seqs(prompt_token_ids),
212
213
214
215
216
217
218
219
220
221
222
                multi_modal_data=None,
                multi_modal_placeholders=None,
            )

        prompt_token_ids.extend([0] * (seq_len - len(prompt_token_ids)))

        return DummyData(
            seq_data=SequenceData.from_seqs(prompt_token_ids),
            multi_modal_data=mm_inputs["mm_kwargs"],
            multi_modal_placeholders=placeholders_by_modality,
        )