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.

12 lines
492 B

4 years ago
#!/bin/bash
4 years ago
mpicc -o /project/mpi_hello_world ../examples/mpi_hello_world.c
sudo -u mpi scp /project/mpi_hello_world mpi@10.0.8.10:/project/mpi_hello_world
sudo -u mpi scp /project/mpi_hello_world mpi@10.0.8.11:/project/mpi_hello_world
cd /project
4 years ago
#sudo -u mpi mpirun -n 10 -f /project/hosts /project/mpi_hello_world 2>&1 | tee /project/output.log
sudo -u mpi mpirun -n 10 -f /project/hosts /project/mpi_hello_world > /project/output.log
4 years ago
#cat /project/output.log
4 years ago
cat /project/output.log
4 years ago