test2
5 years ago
2 changed files with 9 additions and 3 deletions
@ -0,0 +1,3 @@ |
|||
#!/bin/bash |
|||
|
|||
cat /project/output.log |
@ -1,5 +1,8 @@ |
|||
#!/bin/bash |
|||
|
|||
mpicc -o /project/mpi_hello_world ../examples/mpi_hello_world.c |
|||
sudo -u mpi scp /projects/mpi_hello_world mpi@10.0.8.10:/project/mpi_hello_world |
|||
sudo -u mpi mpirun -n 10 -f /projects/hosts /project/mpi_hello_world 2>&1 | tee /project/output.log |
|||
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 |
|||
sudo -u mpi mpirun -n 10 -f /project/hosts /project/mpi_hello_world 2>&1 | tee /project/output.log |
|||
|
|||
|
Loading…
Reference in new issue