From 816504bb223f349cc71941a467b4d98545b9b25b Mon Sep 17 00:00:00 2001 From: test2 Date: Tue, 10 Mar 2020 17:02:13 +0200 Subject: [PATCH] examples 18 --- swarmlab/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 swarmlab/Makefile diff --git a/swarmlab/Makefile b/swarmlab/Makefile new file mode 100644 index 0000000..351f6d3 --- /dev/null +++ b/swarmlab/Makefile @@ -0,0 +1,17 @@ +config: + + IP_ADDR=$(ip addr show | grep "inet " | grep "eth0" | awk '{print $2}') + nmap -sP $IP_ADDR | grep ondemand_mpi_worker | awk -F "[()]" '{ for (i=2; i /project/hosts + +run: + + sudo -u mpi 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 /tmp/output.log + + +log: + + cat /project/output.log