Skip to content
Draft
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,26 @@ cmake --build . --target rrun
./tools/rrun -v -n 4 -g 0,1,2,3 ./benchmarks/bench_comm -C ucxx
```

#### Multi-Node Usage (SSH)

```bash
# Create hostfile
cat > hosts.txt << EOF
node1 slots=8 gpus=0,1,2,3,4,5,6,7
node2 slots=8 gpus=0,1,2,3,4,5,6,7
EOF

# Launch across multiple nodes
./tools/rrun --hostfile hosts.txt \
-d /shared/nfs/coord \
./benchmarks/bench_comm -C ucxx

# With processes per node override
./tools/rrun --hostfile hosts.txt --ppn 4 \
-d /shared/nfs/coord \
./benchmarks/bench_comm -C ucxx
```

## Algorithms
### Table Shuffle Service
Example of a MPI program that uses the shuffler:
Expand Down
Loading