forked from verl-project/verl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
48 lines (40 loc) · 1.68 KB
/
Copy path__init__.py
File metadata and controls
48 lines (40 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2024 Bytedance Ltd. and/or its affiliates
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os
from importlib.metadata import PackageNotFoundError, version
from packaging.version import Version
def get_version(pkg):
try:
return version(pkg)
except PackageNotFoundError:
return None
vllm_package_name = "vllm"
vllm_package_version = get_version(vllm_package_name)
if vllm_package_version is None:
raise PackageNotFoundError("To use vllm rollout, please ensure the 'vllm' package is properly installed. See https://verl.readthedocs.io/en/latest/start/install.html for more details")
if "ROCM_PATH" in os.environ:
import re
match = re.match(r"(\d+\.\d+\.?\d*)", vllm_package_version)
if match:
vllm_package_version = match.group(1)
else:
raise ValueError(f"Warning: Could not parse version format: {vllm_package_version}")
###
if Version(vllm_package_version) <= Version("0.6.3"):
vllm_mode = "customized"
from .fire_vllm_rollout import FIREvLLMRollout # noqa: F401
from .vllm_rollout import vLLMRollout # noqa: F401
else:
vllm_mode = "spmd"
from .vllm_rollout_spmd import vLLMAsyncRollout, vLLMRollout # noqa: F401