├── .gitmodules ├── .travis.yml ├── LICENSE.TXT ├── Makefile.am ├── README.md ├── autoclean.sh ├── autogen.sh ├── configure.ac ├── example ├── Makefile.am ├── example1.c ├── example1.sh ├── example_x86.sh.in └── examplex_x86.sh.in ├── files ├── rempi-logo-white.svg ├── rempi_logo.pdf ├── rempi_logo.png └── rempi_logo.svg ├── io-watchdog ├── ReMPI └── kill_sigusr2.sh ├── m4 └── lx_find_mpi.m4 ├── scripts ├── Makefile.am ├── Makefile.in ├── list_mpi_functions.sh ├── rempi.in ├── rempi_record.in ├── rempi_replay.in └── stm.py ├── src ├── Makefile.am ├── common │ └── Makefile.am ├── rempi │ ├── Makefile.am │ ├── rempi_clock.cpp │ ├── rempi_clock.h │ ├── rempi_clock_delta_compression.cpp │ ├── rempi_clock_delta_compression.h │ ├── rempi_compress.cpp │ ├── rempi_compress.h │ ├── rempi_compression_util.cpp │ ├── rempi_compression_util.h │ ├── rempi_config.cpp │ ├── rempi_config.h │ ├── rempi_cp.cpp │ ├── rempi_cp.h │ ├── rempi_encoder.cpp │ ├── rempi_encoder.h │ ├── rempi_encoder_basic.cpp │ ├── rempi_encoder_cdc.cpp │ ├── rempi_encoder_cdc_permutation_diff.cpp │ ├── rempi_encoder_cdc_row_wise_diff.cpp │ ├── rempi_encoder_rep.cpp │ ├── rempi_encoder_simple_zlib.cpp │ ├── rempi_encoder_zlib.cpp │ ├── rempi_err.cpp │ ├── rempi_err.h │ ├── rempi_event.cpp │ ├── rempi_event.h │ ├── rempi_event_list.cpp │ ├── rempi_event_list.h │ ├── rempi_fortran.f90 │ ├── rempi_io_thread.cpp │ ├── rempi_io_thread.h │ ├── rempi_mem.cpp │ ├── rempi_mem.h │ ├── rempi_message_manager.cpp │ ├── rempi_message_manager.h │ ├── rempi_mf.cpp │ ├── rempi_mf.h │ ├── rempi_mpi_init.cpp │ ├── rempi_mpi_init.h │ ├── rempi_msg_buffer.cpp │ ├── rempi_msg_buffer.h │ ├── rempi_mutex.cpp │ ├── rempi_mutex.h │ ├── rempi_pmpi.cpp │ ├── rempi_re.cpp │ ├── rempi_re.h │ ├── rempi_recorder.cpp │ ├── rempi_recorder.h │ ├── rempi_recorder_cdc.cpp │ ├── rempi_recorder_rep.cpp │ ├── rempi_request_mg.cpp │ ├── rempi_request_mg.h │ ├── rempi_sig_handler.cpp │ ├── rempi_sig_handler.h │ ├── rempi_spsc_queue.h │ ├── rempi_status.cpp │ ├── rempi_status.h │ ├── rempi_stm.cpp │ ├── rempi_stm.h │ ├── rempi_thread.cpp │ ├── rempi_thread.h │ ├── rempi_translator.h │ ├── rempi_type.h │ ├── rempi_util.cpp │ └── rempi_util.h └── reomp │ ├── Makefile.am │ ├── mutil.cpp │ ├── mutil.h │ ├── reomp.cpp │ ├── reomp.h │ ├── reomp_config.cpp │ ├── reomp_config.h │ ├── reomp_drace.cpp │ ├── reomp_drace.h │ ├── reomp_err.cpp │ ├── reomp_gate.cpp │ ├── reomp_gate.h │ ├── reomp_gate_clock.cpp │ ├── reomp_gate_clock.h │ ├── reomp_gate_tid.cpp │ ├── reomp_gate_tid.h │ ├── reomp_ir_pass.cpp │ ├── reomp_ir_pass.h │ ├── reomp_mem.cpp │ ├── reomp_mem.h │ ├── reomp_mon.cpp │ ├── reomp_mon.h │ ├── reomp_omp_wrapper.cpp │ ├── reomp_omp_wrapper.h │ ├── reomp_profile.cpp │ ├── reomp_profile.h │ ├── reomp_rr.h │ └── reomp_util.cpp ├── test ├── Makefile.am ├── common │ ├── Makefile.am │ ├── rempi_test_util.c │ └── rempi_test_util.h ├── rempi │ ├── .io-watchdogrc │ ├── Makefile.am │ ├── build_mcb-bgq.sh │ ├── regression_test_x86.sh │ ├── regression_testx_x86.sh │ ├── rempi_test_compress.cpp │ ├── rempi_test_hypre_parasails.c │ ├── rempi_test_isendrecv.c │ ├── rempi_test_master_worker.c │ ├── rempi_test_master_worker_fortran.f90 │ ├── rempi_test_mini_mcb.c │ ├── rempi_test_msg_race.c │ ├── rempi_test_units.c │ ├── rempi_test_units_fortran.f90 │ ├── rempi_unit_test.sh │ ├── test-bgq.sh │ ├── test-mcb.sh │ ├── test.sh │ └── test_tv.sh └── reomp │ ├── Makefile.am │ ├── build_reomp_example.sh │ ├── build_run_reomp_example.sh │ ├── reomp_example.cpp │ ├── reomp_test_units.cpp │ ├── run_reomp.sh │ └── run_reomps.sh └── travis-test ├── run-all.sh ├── test.sh └── update-mpi.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src scripts test example 2 | ACLOCAL_AMFLAGS = -I m4 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/README.md -------------------------------------------------------------------------------- /autoclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/autoclean.sh -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/configure.ac -------------------------------------------------------------------------------- /example/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/example/Makefile.am -------------------------------------------------------------------------------- /example/example1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/example/example1.c -------------------------------------------------------------------------------- /example/example1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/example/example1.sh -------------------------------------------------------------------------------- /example/example_x86.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/example/example_x86.sh.in -------------------------------------------------------------------------------- /example/examplex_x86.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/example/examplex_x86.sh.in -------------------------------------------------------------------------------- /files/rempi-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/files/rempi-logo-white.svg -------------------------------------------------------------------------------- /files/rempi_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/files/rempi_logo.pdf -------------------------------------------------------------------------------- /files/rempi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/files/rempi_logo.png -------------------------------------------------------------------------------- /files/rempi_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/files/rempi_logo.svg -------------------------------------------------------------------------------- /io-watchdog/ReMPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/io-watchdog/ReMPI -------------------------------------------------------------------------------- /io-watchdog/kill_sigusr2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/io-watchdog/kill_sigusr2.sh -------------------------------------------------------------------------------- /m4/lx_find_mpi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/m4/lx_find_mpi.m4 -------------------------------------------------------------------------------- /scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/Makefile.am -------------------------------------------------------------------------------- /scripts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/Makefile.in -------------------------------------------------------------------------------- /scripts/list_mpi_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/list_mpi_functions.sh -------------------------------------------------------------------------------- /scripts/rempi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/rempi.in -------------------------------------------------------------------------------- /scripts/rempi_record.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/rempi_record.in -------------------------------------------------------------------------------- /scripts/rempi_replay.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/rempi_replay.in -------------------------------------------------------------------------------- /scripts/stm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/scripts/stm.py -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/common/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rempi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/Makefile.am -------------------------------------------------------------------------------- /src/rempi/rempi_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_clock.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_clock.h -------------------------------------------------------------------------------- /src/rempi/rempi_clock_delta_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_clock_delta_compression.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_clock_delta_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_clock_delta_compression.h -------------------------------------------------------------------------------- /src/rempi/rempi_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_compress.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_compress.h -------------------------------------------------------------------------------- /src/rempi/rempi_compression_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_compression_util.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_compression_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_compression_util.h -------------------------------------------------------------------------------- /src/rempi/rempi_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_config.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_config.h -------------------------------------------------------------------------------- /src/rempi/rempi_cp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_cp.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_cp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_cp.h -------------------------------------------------------------------------------- /src/rempi/rempi_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder.h -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_basic.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_cdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_cdc.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_cdc_permutation_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_cdc_permutation_diff.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_cdc_row_wise_diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_cdc_row_wise_diff.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_rep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_rep.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_simple_zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_simple_zlib.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_encoder_zlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_encoder_zlib.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_err.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_err.h -------------------------------------------------------------------------------- /src/rempi/rempi_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_event.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_event.h -------------------------------------------------------------------------------- /src/rempi/rempi_event_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_event_list.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_event_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_event_list.h -------------------------------------------------------------------------------- /src/rempi/rempi_fortran.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_fortran.f90 -------------------------------------------------------------------------------- /src/rempi/rempi_io_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_io_thread.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_io_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_io_thread.h -------------------------------------------------------------------------------- /src/rempi/rempi_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mem.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mem.h -------------------------------------------------------------------------------- /src/rempi/rempi_message_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_message_manager.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_message_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_message_manager.h -------------------------------------------------------------------------------- /src/rempi/rempi_mf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mf.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mf.h -------------------------------------------------------------------------------- /src/rempi/rempi_mpi_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mpi_init.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_mpi_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mpi_init.h -------------------------------------------------------------------------------- /src/rempi/rempi_msg_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_msg_buffer.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_msg_buffer.h -------------------------------------------------------------------------------- /src/rempi/rempi_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mutex.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_mutex.h -------------------------------------------------------------------------------- /src/rempi/rempi_pmpi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_pmpi.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_re.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_re.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_re.h -------------------------------------------------------------------------------- /src/rempi/rempi_recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_recorder.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_recorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_recorder.h -------------------------------------------------------------------------------- /src/rempi/rempi_recorder_cdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_recorder_cdc.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_recorder_rep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_recorder_rep.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_request_mg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_request_mg.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_request_mg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_request_mg.h -------------------------------------------------------------------------------- /src/rempi/rempi_sig_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_sig_handler.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_sig_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_sig_handler.h -------------------------------------------------------------------------------- /src/rempi/rempi_spsc_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_spsc_queue.h -------------------------------------------------------------------------------- /src/rempi/rempi_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_status.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_status.h -------------------------------------------------------------------------------- /src/rempi/rempi_stm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_stm.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_stm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_stm.h -------------------------------------------------------------------------------- /src/rempi/rempi_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_thread.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_thread.h -------------------------------------------------------------------------------- /src/rempi/rempi_translator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_translator.h -------------------------------------------------------------------------------- /src/rempi/rempi_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_type.h -------------------------------------------------------------------------------- /src/rempi/rempi_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_util.cpp -------------------------------------------------------------------------------- /src/rempi/rempi_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/rempi/rempi_util.h -------------------------------------------------------------------------------- /src/reomp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/Makefile.am -------------------------------------------------------------------------------- /src/reomp/mutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/mutil.cpp -------------------------------------------------------------------------------- /src/reomp/mutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/mutil.h -------------------------------------------------------------------------------- /src/reomp/reomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp.cpp -------------------------------------------------------------------------------- /src/reomp/reomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp.h -------------------------------------------------------------------------------- /src/reomp/reomp_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_config.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_config.h -------------------------------------------------------------------------------- /src/reomp/reomp_drace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_drace.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_drace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_drace.h -------------------------------------------------------------------------------- /src/reomp/reomp_err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_err.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_gate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_gate.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_gate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_gate.h -------------------------------------------------------------------------------- /src/reomp/reomp_gate_clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_gate_clock.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_gate_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_gate_clock.h -------------------------------------------------------------------------------- /src/reomp/reomp_gate_tid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_gate_tid.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_gate_tid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_gate_tid.h -------------------------------------------------------------------------------- /src/reomp/reomp_ir_pass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_ir_pass.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_ir_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_ir_pass.h -------------------------------------------------------------------------------- /src/reomp/reomp_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_mem.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_mem.h -------------------------------------------------------------------------------- /src/reomp/reomp_mon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_mon.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_mon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_mon.h -------------------------------------------------------------------------------- /src/reomp/reomp_omp_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_omp_wrapper.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_omp_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_omp_wrapper.h -------------------------------------------------------------------------------- /src/reomp/reomp_profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_profile.cpp -------------------------------------------------------------------------------- /src/reomp/reomp_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_profile.h -------------------------------------------------------------------------------- /src/reomp/reomp_rr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/src/reomp/reomp_rr.h -------------------------------------------------------------------------------- /src/reomp/reomp_util.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/common/Makefile.am: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/common/rempi_test_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/common/rempi_test_util.c -------------------------------------------------------------------------------- /test/common/rempi_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/common/rempi_test_util.h -------------------------------------------------------------------------------- /test/rempi/.io-watchdogrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/.io-watchdogrc -------------------------------------------------------------------------------- /test/rempi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/Makefile.am -------------------------------------------------------------------------------- /test/rempi/build_mcb-bgq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/build_mcb-bgq.sh -------------------------------------------------------------------------------- /test/rempi/regression_test_x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/regression_test_x86.sh -------------------------------------------------------------------------------- /test/rempi/regression_testx_x86.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/regression_testx_x86.sh -------------------------------------------------------------------------------- /test/rempi/rempi_test_compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_compress.cpp -------------------------------------------------------------------------------- /test/rempi/rempi_test_hypre_parasails.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_hypre_parasails.c -------------------------------------------------------------------------------- /test/rempi/rempi_test_isendrecv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_isendrecv.c -------------------------------------------------------------------------------- /test/rempi/rempi_test_master_worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_master_worker.c -------------------------------------------------------------------------------- /test/rempi/rempi_test_master_worker_fortran.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_master_worker_fortran.f90 -------------------------------------------------------------------------------- /test/rempi/rempi_test_mini_mcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_mini_mcb.c -------------------------------------------------------------------------------- /test/rempi/rempi_test_msg_race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_msg_race.c -------------------------------------------------------------------------------- /test/rempi/rempi_test_units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_units.c -------------------------------------------------------------------------------- /test/rempi/rempi_test_units_fortran.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_test_units_fortran.f90 -------------------------------------------------------------------------------- /test/rempi/rempi_unit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/rempi_unit_test.sh -------------------------------------------------------------------------------- /test/rempi/test-bgq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/test-bgq.sh -------------------------------------------------------------------------------- /test/rempi/test-mcb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/test-mcb.sh -------------------------------------------------------------------------------- /test/rempi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/test.sh -------------------------------------------------------------------------------- /test/rempi/test_tv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/rempi/test_tv.sh -------------------------------------------------------------------------------- /test/reomp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/Makefile.am -------------------------------------------------------------------------------- /test/reomp/build_reomp_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/build_reomp_example.sh -------------------------------------------------------------------------------- /test/reomp/build_run_reomp_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/build_run_reomp_example.sh -------------------------------------------------------------------------------- /test/reomp/reomp_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/reomp_example.cpp -------------------------------------------------------------------------------- /test/reomp/reomp_test_units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/reomp_test_units.cpp -------------------------------------------------------------------------------- /test/reomp/run_reomp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/run_reomp.sh -------------------------------------------------------------------------------- /test/reomp/run_reomps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/test/reomp/run_reomps.sh -------------------------------------------------------------------------------- /travis-test/run-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/travis-test/run-all.sh -------------------------------------------------------------------------------- /travis-test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/travis-test/test.sh -------------------------------------------------------------------------------- /travis-test/update-mpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRUNERS/ReMPI/HEAD/travis-test/update-mpi.sh --------------------------------------------------------------------------------