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

Zhuohan Li's avatar
Zhuohan Li committed
4
import uuid
Zhuohan Li's avatar
Zhuohan Li committed
5
6

import torch
7

8
9
MASK_64_BITS = (1 << 64) - 1

10

Cyrus Leung's avatar
Cyrus Leung committed
11
def random_uuid() -> str:
12
    return f"{uuid.uuid4().int & MASK_64_BITS:016x}"  # 16 hex chars
13
14


15
def length_from_prompt_token_ids_or_embeds(
16
    prompt_token_ids: list[int] | torch.Tensor | None,
17
    prompt_embeds: torch.Tensor | None,
18
) -> int:
19
    """Calculate the request length (in number of tokens) give either
20
21
    prompt_token_ids or prompt_embeds.
    """
22
23
    prompt_token_len = None if prompt_token_ids is None else len(prompt_token_ids)
    prompt_embeds_len = None if prompt_embeds is None else len(prompt_embeds)
24
25
26

    if prompt_token_len is None:
        if prompt_embeds_len is None:
27
            raise ValueError("Neither prompt_token_ids nor prompt_embeds were defined.")
28
29
        return prompt_embeds_len
    else:
30
        if prompt_embeds_len is not None and prompt_embeds_len != prompt_token_len:
31
32
33
            raise ValueError(
                "Prompt token ids and prompt embeds had different lengths"
                f" prompt_token_ids={prompt_token_len}"
34
35
                f" prompt_embeds={prompt_embeds_len}"
            )
36
        return prompt_token_len
37
38
39
40
41
42
43
44
45
46
47
48
49


def is_moe_layer(module: torch.nn.Module) -> bool:
    # TODO(bnell): Should use isinstance but can't due to circular dependencies.
    def _check_bases(cls):
        if cls.__name__ == "FusedMoE":
            return True

        for b in cls.__bases__:
            if _check_bases(b):
                return True

    return _check_bases(module.__class__)