__init__.py 313 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project

from .utils import calculate_total_bytes, is_ray_initialized, maybe_disable_pin_memory_for_ray

__all__ = [
    "calculate_total_bytes",
    "is_ray_initialized",
    "maybe_disable_pin_memory_for_ray",
]