File Transfer Speed Test Results | Generated by AI

Home 2026.07

Done. Here’s what I found and what changed:

Speed test results on this machine (12.5 MB/s link cap):

Method Workers Aggregate
Sequential wget 1 14.0 MB/s
Parallel wget 8 12.5 MB/s
hf_transfer + wget 1 11.4 MB/s

Bottleneck: the machine’s link to HF is saturated at ~12-14 MB/s total. Parallel workers don’t help here because the entire pipe is already maxed by a single stream.

Still worth having parallel architecture because:

Updated script at codeparrot/download.py:

# 8 parallel workers
python3.11 download.py

# 16 parallel workers (good for cloud)
python3.11 download.py --workers 16

# With hf_transfer too
HF_HUB_ENABLE_HF_TRANSFER=1 python3.11 download.py --workers 16

Run the full pipeline:

bash codeparrot/run_pipeline.sh

For your workstation at 192.168.1.36, it’ll be similar (home ISP). For cloud boxes (AMD Dev Cloud, RunPod), crank --workers to 16-32 and it’ll actually help.


Back Donate