├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ChangeLog.md ├── LICENSE ├── README.md ├── docs ├── README.md ├── logos │ ├── Remora-logo-300px.png │ ├── Remora-logo-600px.jpeg │ ├── Remora-logo-600px.png │ ├── Remora-logo-KO-300px.png │ ├── Remora-logo-KO-600px.png │ ├── Remora-logo-lg.jpg │ └── Remora-logo.eps ├── modules_help ├── modules_whatis ├── remora_user_guide.pdf └── remora_user_guide.tex ├── extra ├── binutils-2.43.tar.gz ├── build_bfd.sh ├── build_test ├── build_unwind.sh ├── libunwind-1.8.1.tar.gz ├── mic_affinity.c ├── mpiP-3.4.1.tar.gz ├── mpiP-3.5.tar.gz ├── patched_3.5_pc_lookup.c └── sysstat-11.5.3.tar.gz ├── install.sh ├── mk_mod └── src ├── C_data_collectors_src ├── data_collect_cpu.c ├── data_collect_cpu_ori.c ├── data_collect_eth.c ├── data_collect_gpu.c ├── data_collect_ib.c ├── data_collect_memory.c ├── data_collect_numa.c ├── data_collect_numa.c_old ├── data_collect_nv_power.c ├── data_collect_nv_temperature.c ├── data_collect_opa.c └── makefile ├── aux ├── extra ├── report ├── scheduler └── sql_functions ├── config ├── fs_blacklist └── modules ├── modules ├── cpu ├── dvs ├── eth ├── eth_old ├── gpu ├── ib ├── impi ├── impi_mpip ├── lnet ├── lustre ├── memory ├── modules_utils ├── mv2 ├── network ├── numa ├── numa_old ├── nv_power ├── nv_temperature ├── ompi_mpip ├── opa └── power ├── rem_diff ├── remora ├── remora_mem_safe ├── remora_post ├── remora_post_crash ├── scripts ├── remora_collect.sh ├── remora_finalize.sh ├── remora_init.sh ├── remora_monitor.sh ├── remora_monitor_memory.sh ├── remora_mpi_post.sh ├── remora_remote_post.sh ├── remora_report.sh └── remora_report_mic.sh ├── snapshot └── unit_test /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/logos/Remora-logo-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo-300px.png -------------------------------------------------------------------------------- /docs/logos/Remora-logo-600px.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo-600px.jpeg -------------------------------------------------------------------------------- /docs/logos/Remora-logo-600px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo-600px.png -------------------------------------------------------------------------------- /docs/logos/Remora-logo-KO-300px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo-KO-300px.png -------------------------------------------------------------------------------- /docs/logos/Remora-logo-KO-600px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo-KO-600px.png -------------------------------------------------------------------------------- /docs/logos/Remora-logo-lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo-lg.jpg -------------------------------------------------------------------------------- /docs/logos/Remora-logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/logos/Remora-logo.eps -------------------------------------------------------------------------------- /docs/modules_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/modules_help -------------------------------------------------------------------------------- /docs/modules_whatis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/modules_whatis -------------------------------------------------------------------------------- /docs/remora_user_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/remora_user_guide.pdf -------------------------------------------------------------------------------- /docs/remora_user_guide.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/docs/remora_user_guide.tex -------------------------------------------------------------------------------- /extra/binutils-2.43.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/binutils-2.43.tar.gz -------------------------------------------------------------------------------- /extra/build_bfd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/build_bfd.sh -------------------------------------------------------------------------------- /extra/build_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/build_test -------------------------------------------------------------------------------- /extra/build_unwind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/build_unwind.sh -------------------------------------------------------------------------------- /extra/libunwind-1.8.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/libunwind-1.8.1.tar.gz -------------------------------------------------------------------------------- /extra/mic_affinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/mic_affinity.c -------------------------------------------------------------------------------- /extra/mpiP-3.4.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/mpiP-3.4.1.tar.gz -------------------------------------------------------------------------------- /extra/mpiP-3.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/mpiP-3.5.tar.gz -------------------------------------------------------------------------------- /extra/patched_3.5_pc_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/patched_3.5_pc_lookup.c -------------------------------------------------------------------------------- /extra/sysstat-11.5.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/extra/sysstat-11.5.3.tar.gz -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/install.sh -------------------------------------------------------------------------------- /mk_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/mk_mod -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_cpu.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_cpu_ori.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_cpu_ori.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_eth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_eth.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_gpu.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_ib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_ib.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_memory.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_numa.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_numa.c_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_numa.c_old -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_nv_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_nv_power.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_nv_temperature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_nv_temperature.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/data_collect_opa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/data_collect_opa.c -------------------------------------------------------------------------------- /src/C_data_collectors_src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/C_data_collectors_src/makefile -------------------------------------------------------------------------------- /src/aux/extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/aux/extra -------------------------------------------------------------------------------- /src/aux/report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/aux/report -------------------------------------------------------------------------------- /src/aux/scheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/aux/scheduler -------------------------------------------------------------------------------- /src/aux/sql_functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/aux/sql_functions -------------------------------------------------------------------------------- /src/config/fs_blacklist: -------------------------------------------------------------------------------- 1 | / 2 | ufs 3 | 4 | -------------------------------------------------------------------------------- /src/config/modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/config/modules -------------------------------------------------------------------------------- /src/modules/cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/cpu -------------------------------------------------------------------------------- /src/modules/dvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/dvs -------------------------------------------------------------------------------- /src/modules/eth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/eth -------------------------------------------------------------------------------- /src/modules/eth_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/eth_old -------------------------------------------------------------------------------- /src/modules/gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/gpu -------------------------------------------------------------------------------- /src/modules/ib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/ib -------------------------------------------------------------------------------- /src/modules/impi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/impi -------------------------------------------------------------------------------- /src/modules/impi_mpip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/impi_mpip -------------------------------------------------------------------------------- /src/modules/lnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/lnet -------------------------------------------------------------------------------- /src/modules/lustre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/lustre -------------------------------------------------------------------------------- /src/modules/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/memory -------------------------------------------------------------------------------- /src/modules/modules_utils: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/modules_utils -------------------------------------------------------------------------------- /src/modules/mv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/mv2 -------------------------------------------------------------------------------- /src/modules/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/network -------------------------------------------------------------------------------- /src/modules/numa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/numa -------------------------------------------------------------------------------- /src/modules/numa_old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/numa_old -------------------------------------------------------------------------------- /src/modules/nv_power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/nv_power -------------------------------------------------------------------------------- /src/modules/nv_temperature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/nv_temperature -------------------------------------------------------------------------------- /src/modules/ompi_mpip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/ompi_mpip -------------------------------------------------------------------------------- /src/modules/opa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/opa -------------------------------------------------------------------------------- /src/modules/power: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/modules/power -------------------------------------------------------------------------------- /src/rem_diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/rem_diff -------------------------------------------------------------------------------- /src/remora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/remora -------------------------------------------------------------------------------- /src/remora_mem_safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/remora_mem_safe -------------------------------------------------------------------------------- /src/remora_post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/remora_post -------------------------------------------------------------------------------- /src/remora_post_crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/remora_post_crash -------------------------------------------------------------------------------- /src/scripts/remora_collect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_collect.sh -------------------------------------------------------------------------------- /src/scripts/remora_finalize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_finalize.sh -------------------------------------------------------------------------------- /src/scripts/remora_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_init.sh -------------------------------------------------------------------------------- /src/scripts/remora_monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_monitor.sh -------------------------------------------------------------------------------- /src/scripts/remora_monitor_memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_monitor_memory.sh -------------------------------------------------------------------------------- /src/scripts/remora_mpi_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_mpi_post.sh -------------------------------------------------------------------------------- /src/scripts/remora_remote_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_remote_post.sh -------------------------------------------------------------------------------- /src/scripts/remora_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_report.sh -------------------------------------------------------------------------------- /src/scripts/remora_report_mic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/scripts/remora_report_mic.sh -------------------------------------------------------------------------------- /src/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/snapshot -------------------------------------------------------------------------------- /src/unit_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TACC/remora/HEAD/src/unit_test --------------------------------------------------------------------------------