This commit is contained in:
2025-09-13 05:49:07 +02:00
parent 581fb0c0f0
commit dea3b0ec7f
6 changed files with 294 additions and 12 deletions

View File

@@ -13,8 +13,13 @@ exit 0
touch "$0.done"
exit 0
uv pip install --pre torch==2.9.0.dev20250804+cu128 \
--index-url https://download.pytorch.org/whl/nightly/cu128
cd /root
uv venv
source .venv/bin/activate
uv pip install --pre torch==2.9.0.dev20250804+cu129 \
--index-url https://download.pytorch.org/whl/nightly/cu129
uv pip install tiktoken ipython numpy psutil
@@ -22,7 +27,6 @@ uv pip install tiktoken ipython numpy psutil
python -c "import torch; print(torch.__version__, torch.version.cuda)"
# 2.9.0.dev20250804+cu128 12.8
cd /root
source .venv/bin/activate
uv pip install --upgrade pip setuptools wheel ninja
export MAX_JOBS=8
@@ -31,12 +35,13 @@ export NCCL_P2P_DISABLE=0
export NCCL_DEBUG=INFO
export CUDA_DEVICE_MAX_CONNECTIONS=1
pip install flash-attn --no-build-isolation
uv pip install vllm --torch-backend=auto
uv pip install flash-attn --no-build-isolation
uv pip install --pre vllm==0.10.1+gptoss \
--extra-index-url https://wheels.vllm.ai/gpt-oss/ \
--extra-index-url https://download.pytorch.org/whl/nightly/cu128 \
--index-strategy unsafe-best-match
# uv pip install --pre vllm==0.10.1+gptoss \
# --extra-index-url https://wheels.vllm.ai/gpt-oss/ \
# --extra-index-url https://download.pytorch.org/whl/nightly/cu128 \
# --index-strategy unsafe-best-match
mark_done