f95e20e2e1
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.
15 строки
209 B
Makefile
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) *~
|