Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions scripts/run-qwen3-4B-amd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ set -euxo pipefail


### AMD Support ###
SLIME_DIR="${SLIME_DIR:-/home/yushensu/projects/slime}" # Default path if not set in environment
SLIME_DIR="${SLIME_DIR:-/root}" # Default path if not set in environment
export SLIME_DIR

MODEL_DIR="${MODEL_DIR:-/home/yushensu/projects/model}" # Default path if not set in environment
MODEL_DIR="${MODEL_DIR:-/root}" # Default path if not set in environment
export MODEL_DIR

DATA_DIR="${DATA_DIR:-/home/yushensu/projects/data}" # Default path if not set in environment
DATA_DIR="${DATA_DIR:-/root}" # Default path if not set in environment
export DATA_DIR

# For AMD GPU
Expand Down Expand Up @@ -153,6 +153,8 @@ ray job submit --address="http://127.0.0.1:8265" \
--actor-num-nodes 1 \
--actor-num-gpus-per-node 8 \
--colocate \
--no-offload-train \
--no-offload-rollout \
${MODEL_ARGS[@]} \
${CKPT_ARGS[@]} \
${ROLLOUT_ARGS[@]} \
Expand Down