You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
443 B

5 years ago
#!/bin/bash
5 years ago
# compile
5 years ago
mpicc -o /project/mpi_hello_world ../examples/mpi_hello_world.c
5 years ago
5 years ago
# scp hello wrold to all clients. sudo -u mpi for auto scp connect. see /home/mpi/.ssh
5 years ago
while read -r line;
do
sudo -u mpi scp /project/mpi_hello_world mpi@$line:/project/mpi_hello_world
done < /project/hosts
5 years ago
# cd to work dir
5 years ago
cd /project
5 years ago
# run it!
5 years ago
sudo -u mpi mpirun -n 10 -f /project/hosts /project/mpi_hello_world 2>&1 | tee /tmp/output.log
5 years ago