├── .gitattributes ├── .gitignore ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── beamer ├── beamercolorthemepop.sty ├── beamerfontthemepop.sty ├── beamerinnerthemepop.sty ├── beamerouterthemepop.sty ├── beamerthemepop.sty ├── eu_logo.pdf ├── flag_yellow_eps.ps ├── pop_logo.eps └── test.tex ├── bin ├── chop_and_analyze.sh ├── chop_roi.sh ├── extraempirun.sh ├── ipynb_to_report └── modelfactors2precomputed.py ├── doc ├── Makefile └── source │ ├── _static │ └── css │ │ └── kbd.css │ ├── api_hl.rst │ ├── api_ll.rst │ ├── conf.py │ ├── doc.rst │ ├── install.rst │ ├── layout.rst │ └── quickstart.rst ├── ipython_templates ├── graphics │ ├── EU-logo.jpg │ └── pop-logo.png ├── html_nocode.tpl ├── pop_report.cls └── pop_report.tplx ├── presentations └── launch_blog │ └── launch_blog.md ├── pypop ├── __init__.py ├── _plotsettings.py ├── backends │ ├── __init__.py │ └── extrae │ │ ├── __init__.py │ │ └── pcf.py ├── cfgs │ ├── clock_frequency.cfg │ ├── dimemas_ideal.cfg │ ├── dimemas_ideal.tmpconfig.cfg │ ├── ideal.collectives │ ├── omp_total_runtime.cfg │ ├── omp_total_runtime_loop.cfg │ ├── omp_total_runtime_task.cfg │ ├── omp_useful_computation.cfg │ ├── omp_useful_computation_loop.cfg │ ├── omp_useful_computation_task.cfg │ ├── serial_useful_computation.cfg │ ├── serial_useful_computation_no_omp.cfg │ ├── serial_useful_computation_omp_loop.cfg │ ├── serial_useful_computation_omp_task.cfg │ ├── total_res_stl_cycles.cfg │ ├── total_runtime.cfg │ ├── total_runtime_excl_disabled.cfg │ ├── total_useful_computation.cfg │ ├── useful_cycles.cfg │ └── useful_instructions.cfg ├── cli │ ├── __init__.py │ └── cli.py ├── config.py ├── cutters │ └── single_region.skel ├── dimemas.py ├── examples.py ├── examples │ ├── AutoMetrics.ipynb │ ├── html_examples │ │ ├── README.md │ │ ├── insight_blog.html │ │ └── insight_blog.ipynb │ ├── mpi │ │ ├── MPI Metrics Example.ipynb │ │ ├── epoch_example_traces │ │ │ ├── epoch_16proc.pcf │ │ │ ├── epoch_16proc.prv.gz │ │ │ ├── epoch_16proc.row │ │ │ ├── epoch_1proc.pcf │ │ │ ├── epoch_1proc.prv.gz │ │ │ ├── epoch_1proc.row │ │ │ ├── epoch_2proc.pcf │ │ │ ├── epoch_2proc.prv.gz │ │ │ ├── epoch_2proc.row │ │ │ ├── epoch_4proc.pcf │ │ │ ├── epoch_4proc.prv.gz │ │ │ ├── epoch_4proc.row │ │ │ ├── epoch_8proc.pcf │ │ │ ├── epoch_8proc.prv.gz │ │ │ ├── epoch_8proc.row │ │ │ ├── input.deck │ │ │ ├── modelfactors.csv │ │ │ └── precomputed.csv │ │ └── pypop_gui.ipynb │ └── openmp │ │ ├── Analyze OpenMP Regions.ipynb │ │ ├── OMP Metrics Example.ipynb │ │ ├── extrae-omp.xml │ │ ├── imagemagick_example_traces │ │ ├── omp1.pcf │ │ ├── omp1.prv.gz │ │ ├── omp1.row │ │ ├── omp2.pcf │ │ ├── omp2.prv.gz │ │ ├── omp2.row │ │ ├── omp4.pcf │ │ ├── omp4.prv.gz │ │ ├── omp4.row │ │ ├── omp6.pcf │ │ ├── omp6.prv.gz │ │ ├── omp6.row │ │ ├── omp8.pcf │ │ ├── omp8.prv.gz │ │ └── omp8.row │ │ ├── omp_analyze.ipynb │ │ ├── omp_detail.pcf │ │ ├── omp_detail.prv.gz │ │ ├── omp_detail.row │ │ └── profile_imagemagick.sh ├── extrae.py ├── filters │ └── tracing_state.xml ├── metrics │ ├── __init__.py │ ├── hybrid.py │ ├── judit.py │ ├── metricset.py │ ├── mpi.py │ ├── mpi_openmp_ineff.py │ ├── multiplot.py │ ├── openmp.py │ └── threads.py ├── mplplotting │ ├── __init__.py │ ├── builtin.py │ └── mplplotbase.py ├── notebook_interface │ ├── __init__.py │ ├── bokeh_widget.py │ ├── fileselector.py │ ├── omp_explorer.py │ ├── palettes.py │ ├── plotting.py │ ├── reporting.py │ ├── tqdm_widget.py │ └── wizard.py ├── prv.py ├── server.py ├── trace │ ├── __init__.py │ ├── prvtrace.py │ ├── trace.py │ └── tracemetadata.py ├── traceset.py ├── utils │ ├── __init__.py │ ├── asserters.py │ ├── exceptions.py │ ├── io.py │ ├── pandas.py │ ├── plot.py │ ├── pop_logo.npy │ └── tex.py └── version.py ├── pytest.ini ├── setup.py ├── tests ├── integration │ └── test_mpi_epoch.py └── unit │ └── test_traceset.py ├── util └── publish_doc.sh └── versionate.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/README.md -------------------------------------------------------------------------------- /beamer/beamercolorthemepop.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/beamercolorthemepop.sty -------------------------------------------------------------------------------- /beamer/beamerfontthemepop.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/beamerfontthemepop.sty -------------------------------------------------------------------------------- /beamer/beamerinnerthemepop.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/beamerinnerthemepop.sty -------------------------------------------------------------------------------- /beamer/beamerouterthemepop.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/beamerouterthemepop.sty -------------------------------------------------------------------------------- /beamer/beamerthemepop.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/beamerthemepop.sty -------------------------------------------------------------------------------- /beamer/eu_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/eu_logo.pdf -------------------------------------------------------------------------------- /beamer/flag_yellow_eps.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/flag_yellow_eps.ps -------------------------------------------------------------------------------- /beamer/pop_logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/pop_logo.eps -------------------------------------------------------------------------------- /beamer/test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/beamer/test.tex -------------------------------------------------------------------------------- /bin/chop_and_analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/bin/chop_and_analyze.sh -------------------------------------------------------------------------------- /bin/chop_roi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/bin/chop_roi.sh -------------------------------------------------------------------------------- /bin/extraempirun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/bin/extraempirun.sh -------------------------------------------------------------------------------- /bin/ipynb_to_report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/bin/ipynb_to_report -------------------------------------------------------------------------------- /bin/modelfactors2precomputed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/bin/modelfactors2precomputed.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/source/_static/css/kbd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/_static/css/kbd.css -------------------------------------------------------------------------------- /doc/source/api_hl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/api_hl.rst -------------------------------------------------------------------------------- /doc/source/api_ll.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/api_ll.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/doc.rst -------------------------------------------------------------------------------- /doc/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/install.rst -------------------------------------------------------------------------------- /doc/source/layout.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/layout.rst -------------------------------------------------------------------------------- /doc/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/doc/source/quickstart.rst -------------------------------------------------------------------------------- /ipython_templates/graphics/EU-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/ipython_templates/graphics/EU-logo.jpg -------------------------------------------------------------------------------- /ipython_templates/graphics/pop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/ipython_templates/graphics/pop-logo.png -------------------------------------------------------------------------------- /ipython_templates/html_nocode.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/ipython_templates/html_nocode.tpl -------------------------------------------------------------------------------- /ipython_templates/pop_report.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/ipython_templates/pop_report.cls -------------------------------------------------------------------------------- /ipython_templates/pop_report.tplx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/ipython_templates/pop_report.tplx -------------------------------------------------------------------------------- /presentations/launch_blog/launch_blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/presentations/launch_blog/launch_blog.md -------------------------------------------------------------------------------- /pypop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/__init__.py -------------------------------------------------------------------------------- /pypop/_plotsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/_plotsettings.py -------------------------------------------------------------------------------- /pypop/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypop/backends/extrae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypop/backends/extrae/pcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/backends/extrae/pcf.py -------------------------------------------------------------------------------- /pypop/cfgs/clock_frequency.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/clock_frequency.cfg -------------------------------------------------------------------------------- /pypop/cfgs/dimemas_ideal.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/dimemas_ideal.cfg -------------------------------------------------------------------------------- /pypop/cfgs/dimemas_ideal.tmpconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/dimemas_ideal.tmpconfig.cfg -------------------------------------------------------------------------------- /pypop/cfgs/ideal.collectives: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/ideal.collectives -------------------------------------------------------------------------------- /pypop/cfgs/omp_total_runtime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/omp_total_runtime.cfg -------------------------------------------------------------------------------- /pypop/cfgs/omp_total_runtime_loop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/omp_total_runtime_loop.cfg -------------------------------------------------------------------------------- /pypop/cfgs/omp_total_runtime_task.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/omp_total_runtime_task.cfg -------------------------------------------------------------------------------- /pypop/cfgs/omp_useful_computation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/omp_useful_computation.cfg -------------------------------------------------------------------------------- /pypop/cfgs/omp_useful_computation_loop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/omp_useful_computation_loop.cfg -------------------------------------------------------------------------------- /pypop/cfgs/omp_useful_computation_task.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/omp_useful_computation_task.cfg -------------------------------------------------------------------------------- /pypop/cfgs/serial_useful_computation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/serial_useful_computation.cfg -------------------------------------------------------------------------------- /pypop/cfgs/serial_useful_computation_no_omp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/serial_useful_computation_no_omp.cfg -------------------------------------------------------------------------------- /pypop/cfgs/serial_useful_computation_omp_loop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/serial_useful_computation_omp_loop.cfg -------------------------------------------------------------------------------- /pypop/cfgs/serial_useful_computation_omp_task.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/serial_useful_computation_omp_task.cfg -------------------------------------------------------------------------------- /pypop/cfgs/total_res_stl_cycles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/total_res_stl_cycles.cfg -------------------------------------------------------------------------------- /pypop/cfgs/total_runtime.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/total_runtime.cfg -------------------------------------------------------------------------------- /pypop/cfgs/total_runtime_excl_disabled.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/total_runtime_excl_disabled.cfg -------------------------------------------------------------------------------- /pypop/cfgs/total_useful_computation.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/total_useful_computation.cfg -------------------------------------------------------------------------------- /pypop/cfgs/useful_cycles.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/useful_cycles.cfg -------------------------------------------------------------------------------- /pypop/cfgs/useful_instructions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cfgs/useful_instructions.cfg -------------------------------------------------------------------------------- /pypop/cli/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | -------------------------------------------------------------------------------- /pypop/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cli/cli.py -------------------------------------------------------------------------------- /pypop/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/config.py -------------------------------------------------------------------------------- /pypop/cutters/single_region.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/cutters/single_region.skel -------------------------------------------------------------------------------- /pypop/dimemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/dimemas.py -------------------------------------------------------------------------------- /pypop/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples.py -------------------------------------------------------------------------------- /pypop/examples/AutoMetrics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/AutoMetrics.ipynb -------------------------------------------------------------------------------- /pypop/examples/html_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/html_examples/README.md -------------------------------------------------------------------------------- /pypop/examples/html_examples/insight_blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/html_examples/insight_blog.html -------------------------------------------------------------------------------- /pypop/examples/html_examples/insight_blog.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/html_examples/insight_blog.ipynb -------------------------------------------------------------------------------- /pypop/examples/mpi/MPI Metrics Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/MPI Metrics Example.ipynb -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_16proc.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_16proc.pcf -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_16proc.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_16proc.prv.gz -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_16proc.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_16proc.row -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_1proc.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_1proc.pcf -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_1proc.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_1proc.prv.gz -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_1proc.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_1proc.row -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_2proc.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_2proc.pcf -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_2proc.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_2proc.prv.gz -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_2proc.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_2proc.row -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_4proc.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_4proc.pcf -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_4proc.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_4proc.prv.gz -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_4proc.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_4proc.row -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_8proc.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_8proc.pcf -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_8proc.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_8proc.prv.gz -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/epoch_8proc.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/epoch_8proc.row -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/input.deck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/input.deck -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/modelfactors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/modelfactors.csv -------------------------------------------------------------------------------- /pypop/examples/mpi/epoch_example_traces/precomputed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/epoch_example_traces/precomputed.csv -------------------------------------------------------------------------------- /pypop/examples/mpi/pypop_gui.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/mpi/pypop_gui.ipynb -------------------------------------------------------------------------------- /pypop/examples/openmp/Analyze OpenMP Regions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/Analyze OpenMP Regions.ipynb -------------------------------------------------------------------------------- /pypop/examples/openmp/OMP Metrics Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/OMP Metrics Example.ipynb -------------------------------------------------------------------------------- /pypop/examples/openmp/extrae-omp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/extrae-omp.xml -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp1.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp1.pcf -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp1.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp1.prv.gz -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp1.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp1.row -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp2.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp2.pcf -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp2.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp2.prv.gz -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp2.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp2.row -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp4.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp4.pcf -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp4.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp4.prv.gz -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp4.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp4.row -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp6.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp6.pcf -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp6.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp6.prv.gz -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp6.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp6.row -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp8.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp8.pcf -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp8.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp8.prv.gz -------------------------------------------------------------------------------- /pypop/examples/openmp/imagemagick_example_traces/omp8.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/imagemagick_example_traces/omp8.row -------------------------------------------------------------------------------- /pypop/examples/openmp/omp_analyze.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/omp_analyze.ipynb -------------------------------------------------------------------------------- /pypop/examples/openmp/omp_detail.pcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/omp_detail.pcf -------------------------------------------------------------------------------- /pypop/examples/openmp/omp_detail.prv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/omp_detail.prv.gz -------------------------------------------------------------------------------- /pypop/examples/openmp/omp_detail.row: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/omp_detail.row -------------------------------------------------------------------------------- /pypop/examples/openmp/profile_imagemagick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/examples/openmp/profile_imagemagick.sh -------------------------------------------------------------------------------- /pypop/extrae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/extrae.py -------------------------------------------------------------------------------- /pypop/filters/tracing_state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/filters/tracing_state.xml -------------------------------------------------------------------------------- /pypop/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/__init__.py -------------------------------------------------------------------------------- /pypop/metrics/hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/hybrid.py -------------------------------------------------------------------------------- /pypop/metrics/judit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/judit.py -------------------------------------------------------------------------------- /pypop/metrics/metricset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/metricset.py -------------------------------------------------------------------------------- /pypop/metrics/mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/mpi.py -------------------------------------------------------------------------------- /pypop/metrics/mpi_openmp_ineff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/mpi_openmp_ineff.py -------------------------------------------------------------------------------- /pypop/metrics/multiplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/multiplot.py -------------------------------------------------------------------------------- /pypop/metrics/openmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/openmp.py -------------------------------------------------------------------------------- /pypop/metrics/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/metrics/threads.py -------------------------------------------------------------------------------- /pypop/mplplotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/mplplotting/__init__.py -------------------------------------------------------------------------------- /pypop/mplplotting/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/mplplotting/builtin.py -------------------------------------------------------------------------------- /pypop/mplplotting/mplplotbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/mplplotting/mplplotbase.py -------------------------------------------------------------------------------- /pypop/notebook_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/__init__.py -------------------------------------------------------------------------------- /pypop/notebook_interface/bokeh_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/bokeh_widget.py -------------------------------------------------------------------------------- /pypop/notebook_interface/fileselector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/fileselector.py -------------------------------------------------------------------------------- /pypop/notebook_interface/omp_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/omp_explorer.py -------------------------------------------------------------------------------- /pypop/notebook_interface/palettes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/palettes.py -------------------------------------------------------------------------------- /pypop/notebook_interface/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/plotting.py -------------------------------------------------------------------------------- /pypop/notebook_interface/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/reporting.py -------------------------------------------------------------------------------- /pypop/notebook_interface/tqdm_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/tqdm_widget.py -------------------------------------------------------------------------------- /pypop/notebook_interface/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/notebook_interface/wizard.py -------------------------------------------------------------------------------- /pypop/prv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/prv.py -------------------------------------------------------------------------------- /pypop/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/server.py -------------------------------------------------------------------------------- /pypop/trace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/trace/__init__.py -------------------------------------------------------------------------------- /pypop/trace/prvtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/trace/prvtrace.py -------------------------------------------------------------------------------- /pypop/trace/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/trace/trace.py -------------------------------------------------------------------------------- /pypop/trace/tracemetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/trace/tracemetadata.py -------------------------------------------------------------------------------- /pypop/traceset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/traceset.py -------------------------------------------------------------------------------- /pypop/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/__init__.py -------------------------------------------------------------------------------- /pypop/utils/asserters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/asserters.py -------------------------------------------------------------------------------- /pypop/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/exceptions.py -------------------------------------------------------------------------------- /pypop/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/io.py -------------------------------------------------------------------------------- /pypop/utils/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/pandas.py -------------------------------------------------------------------------------- /pypop/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/plot.py -------------------------------------------------------------------------------- /pypop/utils/pop_logo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/pop_logo.npy -------------------------------------------------------------------------------- /pypop/utils/tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/utils/tex.py -------------------------------------------------------------------------------- /pypop/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pypop/version.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/setup.py -------------------------------------------------------------------------------- /tests/integration/test_mpi_epoch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/tests/integration/test_mpi_epoch.py -------------------------------------------------------------------------------- /tests/unit/test_traceset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/tests/unit/test_traceset.py -------------------------------------------------------------------------------- /util/publish_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/util/publish_doc.sh -------------------------------------------------------------------------------- /versionate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numericalalgorithmsgroup/pypop/HEAD/versionate.py --------------------------------------------------------------------------------