qwen-dflash2-spark / scripts /03-replicate.sh
cfontes's picture
Qwen3.8-27B DFlash2 on 2x DGX Spark: one-stop stack (135 tok/s C1, lm_head BF16 fix)
5be2256 verified
Raw
History Blame Contribute Delete
370 Bytes
#!/usr/bin/env bash
# Replicate the bf16head checkpoint + draft dir to node 2 (once).
# Run from node 1 after 02. Adjust NODE2.
set -euo pipefail
BASE="${BASE:-/home/admin/qwen-repro}"
NODE2="${NODE2:-192.168.1.206}"
rsync -a --info=stats1 "$BASE/unsloth-nvfp4-bf16head" "$NODE2:$BASE/"
rsync -a --info=stats1 "$BASE/dflash2" "$NODE2:$BASE/"
echo "replicated to $NODE2"