![Ralph Castain](/assets/img/avatar_default.png)
Add new mca params to test: orte_debugger_test_daemon: Name of the executable to be used to simulate a debugger colaunch orte_debugger_test_attach: Test debugger colaunch after debugger attachment To test co-launch at job start, just set the orte_debugger_test_daemon param. To test co-launch upon attach: set orte_debugger_test_daemon set orte_debugger_test_attach=1 set orte_enable_debug_cospawn_while_running=1 set orte_debugger_check_rate=<N> - defines the number of seconds to wait before "checking" for a debugger attaching Added a "debugger" program to orte/test/mpi that just spins to simulate a debugger daemon. This commit was SVN r23144.
24 строки
848 B
Makefile
24 строки
848 B
Makefile
PROGS = mpi_no_op mpi_barrier hello hello_nodename abort multi_abort simple_spawn concurrent_spawn spawn_multiple mpi_spin delayed_abort loop_spawn loop_child bad_exit pubsub hello_barrier segv accept connect hello_output hello_show_help crisscross read_write ziatest slave_spawn slave cell_spawn reduce-hang ziaprobe ziatest bcast_loop parallel_w8 parallel_w64 parallel_r8 parallel_r64 sio sendrecv_blaster hello++ hellof90 early_abort debugger
|
|
|
|
all: $(PROGS)
|
|
|
|
# These guys need additional -I flags
|
|
|
|
hello_output: hello_output.c
|
|
$(CC) $(CFLAGS) $(CFLAGS_INTERNAL) $^ -o $@
|
|
|
|
hello_show_help: hello_show_help.c
|
|
$(CC) $(CFLAGS) $(CFLAGS_INTERNAL) $^ -o $@
|
|
|
|
CC = mpicc
|
|
CFLAGS = -g
|
|
CFLAGS_INTERNAL = -I../../.. -I../../../orte/include -I../../../opal/include
|
|
CXX = mpic++
|
|
CXXFLAGS = -g
|
|
F77 = mpif77
|
|
FC = mpif90
|
|
FFLAGS = -g
|
|
|
|
clean:
|
|
rm -f $(PROGS) *~
|