1
1
openmpi/orte/test/mpi/Makefile
Ralph Castain f95e20e2e1 Add another test program - an MPI app that just spins. This supports testing of system response to signal-terminated processes.
Add some debugger output to the ODLS default component.

Modify the orted command communication system so that it is done via non-blocking sends. This removes the linearity of the transmission and improves the response time.

This commit was SVN r12585.
2006-11-13 21:51:34 +00:00

15 строки
209 B
Makefile

PROGS = mpi_no_op hello hello_nodename abort multi_abort simple_spawn mpi_spin
all: $(PROGS)
CC = mpicc
CFLAGS = -g
CXX = mpic++
CXXFLAGS = -g
F77 = mpif77
FC = mpif77
FFLAGS = -g
clean:
rm -f $(PROGS) *~