Rev 319 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
MPICC = mpiccCC = gccCFLAGS = -O2 -pipe -DSOLARISMPIRUN = mpirunMACFILE = machines# targets:all: proj2-groupclean:rm -f *~ *.o proj2-groupproj2-group:$(MPICC) $(CFLAGS) proj2-group.c -o proj2-grouprun: allecho "Running tests of size 100"$(MPIRUN) -machinefile $(MACFILE) -np 1 ./proj1-par -n 100$(MPIRUN) -machinefile $(MACFILE) -np 2 ./proj1-par -n 100$(MPIRUN) -machinefile $(MACFILE) -np 4 ./proj1-par -n 100echo "Running tests of size 1,000"$(MPIRUN) -machinefile $(MACFILE) -np 1 ./proj1-par -n 1000$(MPIRUN) -machinefile $(MACFILE) -np 2 ./proj1-par -n 1000$(MPIRUN) -machinefile $(MACFILE) -np 4 ./proj1-par -n 1000echo "Running tests of size 10,000"$(MPIRUN) -machinefile $(MACFILE) -np 1 ./proj1-par -n 10000$(MPIRUN) -machinefile $(MACFILE) -np 2 ./proj1-par -n 10000$(MPIRUN) -machinefile $(MACFILE) -np 4 ./proj1-par -n 10000