├── .gitignore ├── .travis.yml ├── LICENSE ├── NOTICE ├── README.md ├── docs ├── Makefile ├── UserWriteUp.txt ├── code-examples │ └── scorep_user_calls.c ├── conf.py ├── index.rst ├── install.rst ├── requirements.txt ├── scorep-5.0.patch ├── tutorial.rst └── userguide.rst ├── examples ├── conf │ ├── dfly.conf │ ├── fattree.conf │ ├── hypreX_expressMesh.conf │ └── torus.conf ├── jacobi2d-bigsim │ ├── Makefile │ ├── global_map.bin │ ├── jacobi2d.C │ ├── job0 │ ├── job1 │ ├── traceJ0 │ │ ├── bgTrace │ │ ├── bgTrace0 │ │ ├── bgTrace1 │ │ ├── bgTrace2 │ │ ├── bgTrace3 │ │ ├── bgTrace4 │ │ ├── bgTrace5 │ │ ├── bgTrace6 │ │ └── bgTrace7 │ ├── traceJ1 │ │ ├── bgTrace │ │ ├── bgTrace0 │ │ ├── bgTrace1 │ │ ├── bgTrace2 │ │ └── bgTrace3 │ └── tracer_config └── stencil4d-otf │ ├── Makefile │ ├── global_map.bin │ ├── job0 │ ├── job1 │ ├── stencil4d.C │ ├── tracer_config │ ├── traces-32 │ ├── scorep.cfg │ ├── traces.def │ ├── traces.otf2 │ └── traces │ │ ├── 0.def │ │ ├── 0.evt │ │ ├── 1.def │ │ ├── 1.evt │ │ ├── 10.def │ │ ├── 10.evt │ │ ├── 11.def │ │ ├── 11.evt │ │ ├── 12.def │ │ ├── 12.evt │ │ ├── 13.def │ │ ├── 13.evt │ │ ├── 14.def │ │ ├── 14.evt │ │ ├── 15.def │ │ ├── 15.evt │ │ ├── 16.def │ │ ├── 16.evt │ │ ├── 17.def │ │ ├── 17.evt │ │ ├── 18.def │ │ ├── 18.evt │ │ ├── 19.def │ │ ├── 19.evt │ │ ├── 2.def │ │ ├── 2.evt │ │ ├── 20.def │ │ ├── 20.evt │ │ ├── 21.def │ │ ├── 21.evt │ │ ├── 22.def │ │ ├── 22.evt │ │ ├── 23.def │ │ ├── 23.evt │ │ ├── 24.def │ │ ├── 24.evt │ │ ├── 25.def │ │ ├── 25.evt │ │ ├── 26.def │ │ ├── 26.evt │ │ ├── 27.def │ │ ├── 27.evt │ │ ├── 28.def │ │ ├── 28.evt │ │ ├── 29.def │ │ ├── 29.evt │ │ ├── 3.def │ │ ├── 3.evt │ │ ├── 30.def │ │ ├── 30.evt │ │ ├── 31.def │ │ ├── 31.evt │ │ ├── 4.def │ │ ├── 4.evt │ │ ├── 5.def │ │ ├── 5.evt │ │ ├── 6.def │ │ ├── 6.evt │ │ ├── 7.def │ │ ├── 7.evt │ │ ├── 8.def │ │ ├── 8.evt │ │ ├── 9.def │ │ └── 9.evt │ └── traces-64 │ ├── scorep.cfg │ ├── traces.def │ ├── traces.otf2 │ └── traces │ ├── 0.def │ ├── 0.evt │ ├── 1.def │ ├── 1.evt │ ├── 10.def │ ├── 10.evt │ ├── 11.def │ ├── 11.evt │ ├── 12.def │ ├── 12.evt │ ├── 13.def │ ├── 13.evt │ ├── 14.def │ ├── 14.evt │ ├── 15.def │ ├── 15.evt │ ├── 16.def │ ├── 16.evt │ ├── 17.def │ ├── 17.evt │ ├── 18.def │ ├── 18.evt │ ├── 19.def │ ├── 19.evt │ ├── 2.def │ ├── 2.evt │ ├── 20.def │ ├── 20.evt │ ├── 21.def │ ├── 21.evt │ ├── 22.def │ ├── 22.evt │ ├── 23.def │ ├── 23.evt │ ├── 24.def │ ├── 24.evt │ ├── 25.def │ ├── 25.evt │ ├── 26.def │ ├── 26.evt │ ├── 27.def │ ├── 27.evt │ ├── 28.def │ ├── 28.evt │ ├── 29.def │ ├── 29.evt │ ├── 3.def │ ├── 3.evt │ ├── 30.def │ ├── 30.evt │ ├── 31.def │ ├── 31.evt │ ├── 32.def │ ├── 32.evt │ ├── 33.def │ ├── 33.evt │ ├── 34.def │ ├── 34.evt │ ├── 35.def │ ├── 35.evt │ ├── 36.def │ ├── 36.evt │ ├── 37.def │ ├── 37.evt │ ├── 38.def │ ├── 38.evt │ ├── 39.def │ ├── 39.evt │ ├── 4.def │ ├── 4.evt │ ├── 40.def │ ├── 40.evt │ ├── 41.def │ ├── 41.evt │ ├── 42.def │ ├── 42.evt │ ├── 43.def │ ├── 43.evt │ ├── 44.def │ ├── 44.evt │ ├── 45.def │ ├── 45.evt │ ├── 46.def │ ├── 46.evt │ ├── 47.def │ ├── 47.evt │ ├── 48.def │ ├── 48.evt │ ├── 49.def │ ├── 49.evt │ ├── 5.def │ ├── 5.evt │ ├── 50.def │ ├── 50.evt │ ├── 51.def │ ├── 51.evt │ ├── 52.def │ ├── 52.evt │ ├── 53.def │ ├── 53.evt │ ├── 54.def │ ├── 54.evt │ ├── 55.def │ ├── 55.evt │ ├── 56.def │ ├── 56.evt │ ├── 57.def │ ├── 57.evt │ ├── 58.def │ ├── 58.evt │ ├── 59.def │ ├── 59.evt │ ├── 6.def │ ├── 6.evt │ ├── 60.def │ ├── 60.evt │ ├── 61.def │ ├── 61.evt │ ├── 62.def │ ├── 62.evt │ ├── 63.def │ ├── 63.evt │ ├── 7.def │ ├── 7.evt │ ├── 8.def │ ├── 8.evt │ ├── 9.def │ └── 9.evt ├── tracer ├── Makefile ├── Makefile.common ├── coll-events.C ├── elements │ ├── Makefile │ ├── MsgEntry.C │ ├── MsgEntry.h │ ├── PE.C │ ├── PE.h │ ├── Task.C │ └── Task.h ├── p2p-events.C ├── reader │ ├── CWrapper.C │ ├── CWrapper.h │ ├── Makefile │ ├── TraceReader.C │ ├── TraceReader.h │ ├── datatypes.h │ ├── otf2_reader.C │ └── otf2_reader.h ├── tracer-driver.C └── tracer-driver.h └── utils ├── Makefile ├── README ├── core_random_mapping.C ├── create_job_input.py ├── def_lin_mapping.C ├── dfly_node_random_mapping.C ├── dfly_node_rr_mapping.C ├── dfly_router_rr_mapping.C ├── hilbert.h ├── job_config.input ├── many_job.C ├── multi_job.C ├── node_mapping.C ├── router_random_mapping.C ├── spread_nodes.C ├── stencil_block_block_mapping.C ├── stencil_block_block_random_mapping.C ├── stencil_block_mapping.C ├── stencil_block_node_random_mapping.C ├── stencil_block_torus_mapping.C ├── torus_block_mapping.C ├── torus_node_random_mapping.C └── traceHelp ├── Makefile └── traceToFile.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/UserWriteUp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/UserWriteUp.txt -------------------------------------------------------------------------------- /docs/code-examples/scorep_user_calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/code-examples/scorep_user_calls.c -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | exhale 3 | -------------------------------------------------------------------------------- /docs/scorep-5.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/scorep-5.0.patch -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/userguide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/docs/userguide.rst -------------------------------------------------------------------------------- /examples/conf/dfly.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/conf/dfly.conf -------------------------------------------------------------------------------- /examples/conf/fattree.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/conf/fattree.conf -------------------------------------------------------------------------------- /examples/conf/hypreX_expressMesh.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/conf/hypreX_expressMesh.conf -------------------------------------------------------------------------------- /examples/conf/torus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/conf/torus.conf -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/Makefile -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/global_map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/global_map.bin -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/jacobi2d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/jacobi2d.C -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/job0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/job0 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/job1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/job1 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace0 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace1 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace2 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace3 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace4 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace5 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace6 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ0/bgTrace7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ0/bgTrace7 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ1/bgTrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ1/bgTrace -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ1/bgTrace0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ1/bgTrace0 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ1/bgTrace1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ1/bgTrace1 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ1/bgTrace2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ1/bgTrace2 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/traceJ1/bgTrace3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/traceJ1/bgTrace3 -------------------------------------------------------------------------------- /examples/jacobi2d-bigsim/tracer_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/jacobi2d-bigsim/tracer_config -------------------------------------------------------------------------------- /examples/stencil4d-otf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/Makefile -------------------------------------------------------------------------------- /examples/stencil4d-otf/global_map.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/global_map.bin -------------------------------------------------------------------------------- /examples/stencil4d-otf/job0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/job0 -------------------------------------------------------------------------------- /examples/stencil4d-otf/job1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/job1 -------------------------------------------------------------------------------- /examples/stencil4d-otf/stencil4d.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/stencil4d.C -------------------------------------------------------------------------------- /examples/stencil4d-otf/tracer_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/tracer_config -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/scorep.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/scorep.cfg -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces.otf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces.otf2 -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/0.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/0.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/0.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/1.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/1.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/1.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/10.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/10.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/10.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/10.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/11.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/11.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/11.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/11.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/12.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/12.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/12.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/12.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/13.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/13.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/13.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/13.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/14.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/14.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/14.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/14.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/15.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/15.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/15.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/15.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/16.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/16.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/16.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/16.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/17.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/17.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/17.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/17.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/18.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/18.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/18.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/18.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/19.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/19.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/19.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/19.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/2.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/2.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/2.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/20.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/20.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/20.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/20.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/21.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/21.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/21.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/21.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/22.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/22.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/22.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/22.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/23.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/23.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/23.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/23.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/24.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/24.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/24.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/24.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/25.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/25.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/25.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/25.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/26.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/26.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/26.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/26.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/27.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/27.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/27.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/27.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/28.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/28.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/28.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/28.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/29.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/29.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/29.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/29.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/3.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/3.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/3.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/30.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/30.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/30.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/30.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/31.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/31.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/31.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/31.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/4.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/4.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/4.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/5.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/5.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/5.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/5.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/6.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/6.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/6.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/7.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/7.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/7.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/7.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/8.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/8.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/8.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/9.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/9.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-32/traces/9.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-32/traces/9.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/scorep.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/scorep.cfg -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces.otf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces.otf2 -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/0.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/0.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/0.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/0.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/1.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/1.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/1.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/10.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/10.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/10.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/10.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/11.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/11.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/11.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/11.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/12.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/12.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/12.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/12.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/13.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/13.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/13.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/13.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/14.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/14.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/14.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/14.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/15.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/15.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/15.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/15.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/16.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/16.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/16.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/16.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/17.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/17.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/17.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/17.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/18.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/18.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/18.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/18.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/19.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/19.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/19.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/19.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/2.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/2.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/2.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/20.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/20.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/20.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/20.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/21.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/21.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/21.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/21.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/22.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/22.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/22.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/22.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/23.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/23.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/23.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/23.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/24.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/24.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/24.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/24.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/25.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/25.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/25.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/25.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/26.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/26.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/26.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/26.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/27.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/27.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/27.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/27.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/28.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/28.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/28.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/28.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/29.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/29.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/29.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/29.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/3.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/3.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/3.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/30.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/30.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/30.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/30.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/31.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/31.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/31.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/31.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/32.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/32.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/32.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/32.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/33.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/33.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/33.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/33.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/34.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/34.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/34.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/34.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/35.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/35.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/35.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/35.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/36.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/36.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/36.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/36.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/37.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/37.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/37.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/37.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/38.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/38.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/38.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/38.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/39.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/39.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/39.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/39.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/4.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/4.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/4.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/40.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/40.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/40.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/40.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/41.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/41.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/41.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/41.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/42.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/42.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/42.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/42.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/43.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/43.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/43.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/43.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/44.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/44.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/44.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/44.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/45.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/45.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/45.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/45.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/46.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/46.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/46.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/46.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/47.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/47.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/47.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/47.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/48.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/48.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/48.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/48.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/49.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/49.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/49.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/49.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/5.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/5.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/5.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/5.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/50.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/50.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/50.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/50.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/51.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/51.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/51.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/51.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/52.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/52.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/52.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/52.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/53.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/53.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/53.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/53.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/54.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/54.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/54.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/54.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/55.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/55.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/55.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/55.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/56.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/56.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/56.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/56.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/57.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/57.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/57.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/57.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/58.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/58.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/58.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/58.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/59.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/59.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/59.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/59.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/6.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/6.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/6.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/6.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/60.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/60.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/60.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/60.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/61.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/61.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/61.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/61.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/62.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/62.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/62.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/62.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/63.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/63.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/63.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/63.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/7.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/7.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/7.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/7.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/8.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/8.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/8.evt -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/9.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/9.def -------------------------------------------------------------------------------- /examples/stencil4d-otf/traces-64/traces/9.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/examples/stencil4d-otf/traces-64/traces/9.evt -------------------------------------------------------------------------------- /tracer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/Makefile -------------------------------------------------------------------------------- /tracer/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/Makefile.common -------------------------------------------------------------------------------- /tracer/coll-events.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/coll-events.C -------------------------------------------------------------------------------- /tracer/elements/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/Makefile -------------------------------------------------------------------------------- /tracer/elements/MsgEntry.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/MsgEntry.C -------------------------------------------------------------------------------- /tracer/elements/MsgEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/MsgEntry.h -------------------------------------------------------------------------------- /tracer/elements/PE.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/PE.C -------------------------------------------------------------------------------- /tracer/elements/PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/PE.h -------------------------------------------------------------------------------- /tracer/elements/Task.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/Task.C -------------------------------------------------------------------------------- /tracer/elements/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/elements/Task.h -------------------------------------------------------------------------------- /tracer/p2p-events.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/p2p-events.C -------------------------------------------------------------------------------- /tracer/reader/CWrapper.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/CWrapper.C -------------------------------------------------------------------------------- /tracer/reader/CWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/CWrapper.h -------------------------------------------------------------------------------- /tracer/reader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/Makefile -------------------------------------------------------------------------------- /tracer/reader/TraceReader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/TraceReader.C -------------------------------------------------------------------------------- /tracer/reader/TraceReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/TraceReader.h -------------------------------------------------------------------------------- /tracer/reader/datatypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/datatypes.h -------------------------------------------------------------------------------- /tracer/reader/otf2_reader.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/otf2_reader.C -------------------------------------------------------------------------------- /tracer/reader/otf2_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/reader/otf2_reader.h -------------------------------------------------------------------------------- /tracer/tracer-driver.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/tracer-driver.C -------------------------------------------------------------------------------- /tracer/tracer-driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/tracer/tracer-driver.h -------------------------------------------------------------------------------- /utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/Makefile -------------------------------------------------------------------------------- /utils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/README -------------------------------------------------------------------------------- /utils/core_random_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/core_random_mapping.C -------------------------------------------------------------------------------- /utils/create_job_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/create_job_input.py -------------------------------------------------------------------------------- /utils/def_lin_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/def_lin_mapping.C -------------------------------------------------------------------------------- /utils/dfly_node_random_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/dfly_node_random_mapping.C -------------------------------------------------------------------------------- /utils/dfly_node_rr_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/dfly_node_rr_mapping.C -------------------------------------------------------------------------------- /utils/dfly_router_rr_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/dfly_router_rr_mapping.C -------------------------------------------------------------------------------- /utils/hilbert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/hilbert.h -------------------------------------------------------------------------------- /utils/job_config.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/job_config.input -------------------------------------------------------------------------------- /utils/many_job.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/many_job.C -------------------------------------------------------------------------------- /utils/multi_job.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/multi_job.C -------------------------------------------------------------------------------- /utils/node_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/node_mapping.C -------------------------------------------------------------------------------- /utils/router_random_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/router_random_mapping.C -------------------------------------------------------------------------------- /utils/spread_nodes.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/spread_nodes.C -------------------------------------------------------------------------------- /utils/stencil_block_block_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/stencil_block_block_mapping.C -------------------------------------------------------------------------------- /utils/stencil_block_block_random_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/stencil_block_block_random_mapping.C -------------------------------------------------------------------------------- /utils/stencil_block_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/stencil_block_mapping.C -------------------------------------------------------------------------------- /utils/stencil_block_node_random_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/stencil_block_node_random_mapping.C -------------------------------------------------------------------------------- /utils/stencil_block_torus_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/stencil_block_torus_mapping.C -------------------------------------------------------------------------------- /utils/torus_block_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/torus_block_mapping.C -------------------------------------------------------------------------------- /utils/torus_node_random_mapping.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/torus_node_random_mapping.C -------------------------------------------------------------------------------- /utils/traceHelp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/traceHelp/Makefile -------------------------------------------------------------------------------- /utils/traceHelp/traceToFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpcgroup/TraceR/HEAD/utils/traceHelp/traceToFile.cpp --------------------------------------------------------------------------------