mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-09 02:54:59 +08:00
15 lines
712 B
Plaintext
15 lines
712 B
Plaintext
# Common dependencies
|
|
-r common.txt
|
|
|
|
numba == 0.60.0; python_version == '3.9' # v0.61 doesn't support Python 3.9. Required for N-gram speculative decoding
|
|
numba == 0.61.2; python_version > '3.9'
|
|
|
|
# Dependencies for NVIDIA GPUs
|
|
ray[cgraph]>=2.43.0, !=2.44.* # Ray Compiled Graph, required for pipeline parallelism in V1.
|
|
torch==2.7.1
|
|
torchaudio==2.7.1
|
|
# These must be updated alongside torch
|
|
torchvision==0.22.1 # Required for phi3v processor. See https://github.com/pytorch/vision?tab=readme-ov-file#installation for corresponding version
|
|
# https://github.com/facebookresearch/xformers/releases/tag/v0.0.31
|
|
xformers==0.0.31; platform_system == 'Linux' and platform_machine == 'x86_64' # Requires PyTorch >= 2.7
|