Skip to content

Quick Start Guide for ROCm Support#293

Closed
pancake0003 wants to merge 4 commits into
vllm-project:mainfrom
pancake0003:main
Closed

Quick Start Guide for ROCm Support#293
pancake0003 wants to merge 4 commits into
vllm-project:mainfrom
pancake0003:main

Conversation

@pancake0003

Copy link
Copy Markdown

No description provided.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request introduces a new quick start guide for AMD ROCm, detailing environment setup, model and dataset downloading, weight conversion, and training. The feedback suggests improving the guide's accuracy and usability by using the standard uppercase $WANDB_API_KEY environment variable in the Docker command and replacing the non-standard hf command with huggingface-cli for downloading assets.

docker run -d --name vime --ulimit nofile=1048576:1048576 \
--ipc=host --network=host --device=/dev/kfd --device=/dev/dri \
--security-opt seccomp=unconfined --group-add video --privileged \
-e WANDB_API_KEY=$wandb_key vllm/vime-rocm

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Using the standard uppercase environment variable $WANDB_API_KEY is more idiomatic and aligns with how users typically store and export their Weights & Biases API keys in their environment.

Suggested change
-e WANDB_API_KEY=$wandb_key vllm/vime-rocm
-e WANDB_API_KEY=$WANDB_API_KEY vllm/vime-rocm

Comment on lines +32 to +35
hf download Qwen/Qwen3-8B --local-dir /root/Qwen3-8B

# Download training dataset (dapo-math-17k)
hf download zhuzilin/dapo-math-17k --repo-type dataset --local-dir /root/dapo-math-17k

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The standard command-line tool provided by the huggingface_hub library is huggingface-cli, not hf. Using huggingface-cli download ensures the commands run successfully without requiring custom shell aliases.

Suggested change
hf download Qwen/Qwen3-8B --local-dir /root/Qwen3-8B
# Download training dataset (dapo-math-17k)
hf download zhuzilin/dapo-math-17k --repo-type dataset --local-dir /root/dapo-math-17k
huggingface-cli download Qwen/Qwen3-8B --local-dir /root/Qwen3-8B
# Download training dataset (dapo-math-17k)
huggingface-cli download zhuzilin/dapo-math-17k --repo-type dataset --local-dir /root/dapo-math-17k

@read-the-docs-community

Copy link
Copy Markdown

Documentation build overview

📚 vime | 🛠️ Build #33276621 | 📁 Comparing 45d2ff4 against latest (e62d44f)

  🔍 Preview build  

5 files changed · + 1 added · ± 4 modified

+ Added

± Modified

indianspeedster pushed a commit to indianspeedster/vime that referenced this pull request Jun 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant