├── .gitignore ├── .travis.yml ├── GPL-3.txt ├── README.md ├── benchmarks ├── fio │ ├── fio.sh │ └── fio.xml ├── hpcc │ ├── Make.gnu │ ├── Make.intel │ ├── hpcc.xml │ ├── hpccinf.txt.in │ ├── io.c │ └── pq_script.py ├── hpcg │ └── hpcg.xml ├── hpl │ ├── HPL.dat.in │ ├── Make.gnu │ ├── Make.intel │ ├── hpl.xml │ └── pq_script.py ├── io500 │ ├── io500.xml │ ├── io500_compile.xml │ ├── io500_execute.xml │ ├── io500_result.xml │ └── io500_ubench.sh ├── ior │ ├── ior.xml │ ├── ior_compile.xml │ ├── ior_execute.xml │ └── ior_result.xml ├── mumps │ └── mumps.xml ├── nas │ └── nas.xml ├── petsc │ └── petsc.xml ├── scalapack │ └── scalapack.xml ├── simple │ └── simple.xml ├── stream │ └── stream.xml └── tensorflow │ ├── tensorflow.xml │ ├── tensorflow_execute.xml │ ├── tensorflow_prepare.xml │ └── tensorflow_result.xml ├── bin └── ubench ├── configuration └── ubench.conf ├── css └── asciidoctor-bench-report.css ├── dev_env.sh ├── docs ├── Makefile └── source │ ├── benchmarks_guide.asc │ ├── campaign_guide.asc │ ├── classDiagram.dia │ ├── developer_guide.asc │ ├── images │ ├── classDiagram.png │ └── perf_report_ex.png │ ├── platform_guide.asc │ ├── ubench-campaign.md │ ├── ubench-compare.md │ ├── ubench-fetch.md │ ├── ubench-list.md │ ├── ubench-listparams.md │ ├── ubench-log.md │ ├── ubench-publish-benchmark.md │ ├── ubench-publish-campaign.md │ ├── ubench-publish-download.md │ ├── ubench-publish-update-remote.md │ ├── ubench-publish.md │ ├── ubench-report.md │ ├── ubench-result.md │ ├── ubench-run.md │ ├── ubench.md │ ├── user_guide.asc │ └── user_guide.css ├── platform ├── L470 │ └── platform.xml ├── Zbook15 │ └── platform.xml ├── bash.xml ├── submit-local.job.in └── template.xml ├── release-notes.md ├── requirements.txt ├── setup.py ├── templates ├── bench.html ├── compare.html └── report.html ├── tests ├── conftest.py ├── data │ ├── bench_results.yaml │ ├── benchmarks │ │ ├── simple │ │ │ └── simple.xml │ │ ├── simple_git │ │ │ └── simple_git.xml │ │ └── test_bench │ │ │ └── test_bench.xml │ ├── campaign_metadata.yaml │ ├── jube_info_csv_fieldnames.csv │ ├── jube_info_csv_template.csv │ ├── jube_info_head.txt │ ├── jube_info_template.txt │ ├── mock_jube_info-bad.csv │ ├── ubench.log │ └── ubench_results.dat ├── fake_data.py ├── gen_bench_xml.py ├── tempbench.py ├── test_bench_api.py ├── test_data_store.py ├── test_jube_api.py ├── test_jube_benchmanager.py ├── test_jube_campaign_manager.py ├── test_slurm_interface.py └── test_ubench_commands.py └── ubench ├── __init__.py ├── benchmark_managers ├── __init__.py ├── benchmark_manager.py ├── benchmark_manager_set.py ├── campaign_benchmark_manager.py ├── jube_benchmark_manager.py └── standard_benchmark_manager.py ├── benchmarking_tools_interfaces ├── __init__.py ├── benchmarking_api.py ├── jube_benchmarking_api.py └── jube_xml_parser.py ├── config.py ├── core ├── __init__.py ├── fetcher.py ├── ubench_commands.py └── ubench_config.py ├── data_management ├── __init__.py ├── comparison_writer.py ├── data_store.py ├── data_store_yaml.py ├── publisher.py ├── report.py └── vcs │ ├── __init__.py │ ├── git.py │ └── standard_vcs.py ├── progress.py ├── release.py ├── scheduler_interfaces ├── __init__.py ├── scheduler_interface.py └── slurm_interface.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | docs/*.html 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/.travis.yml -------------------------------------------------------------------------------- /GPL-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/GPL-3.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/fio/fio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/fio/fio.sh -------------------------------------------------------------------------------- /benchmarks/fio/fio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/fio/fio.xml -------------------------------------------------------------------------------- /benchmarks/hpcc/Make.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcc/Make.gnu -------------------------------------------------------------------------------- /benchmarks/hpcc/Make.intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcc/Make.intel -------------------------------------------------------------------------------- /benchmarks/hpcc/hpcc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcc/hpcc.xml -------------------------------------------------------------------------------- /benchmarks/hpcc/hpccinf.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcc/hpccinf.txt.in -------------------------------------------------------------------------------- /benchmarks/hpcc/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcc/io.c -------------------------------------------------------------------------------- /benchmarks/hpcc/pq_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcc/pq_script.py -------------------------------------------------------------------------------- /benchmarks/hpcg/hpcg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpcg/hpcg.xml -------------------------------------------------------------------------------- /benchmarks/hpl/HPL.dat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpl/HPL.dat.in -------------------------------------------------------------------------------- /benchmarks/hpl/Make.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpl/Make.gnu -------------------------------------------------------------------------------- /benchmarks/hpl/Make.intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpl/Make.intel -------------------------------------------------------------------------------- /benchmarks/hpl/hpl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpl/hpl.xml -------------------------------------------------------------------------------- /benchmarks/hpl/pq_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/hpl/pq_script.py -------------------------------------------------------------------------------- /benchmarks/io500/io500.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/io500/io500.xml -------------------------------------------------------------------------------- /benchmarks/io500/io500_compile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/io500/io500_compile.xml -------------------------------------------------------------------------------- /benchmarks/io500/io500_execute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/io500/io500_execute.xml -------------------------------------------------------------------------------- /benchmarks/io500/io500_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/io500/io500_result.xml -------------------------------------------------------------------------------- /benchmarks/io500/io500_ubench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/io500/io500_ubench.sh -------------------------------------------------------------------------------- /benchmarks/ior/ior.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/ior/ior.xml -------------------------------------------------------------------------------- /benchmarks/ior/ior_compile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/ior/ior_compile.xml -------------------------------------------------------------------------------- /benchmarks/ior/ior_execute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/ior/ior_execute.xml -------------------------------------------------------------------------------- /benchmarks/ior/ior_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/ior/ior_result.xml -------------------------------------------------------------------------------- /benchmarks/mumps/mumps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/mumps/mumps.xml -------------------------------------------------------------------------------- /benchmarks/nas/nas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/nas/nas.xml -------------------------------------------------------------------------------- /benchmarks/petsc/petsc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/petsc/petsc.xml -------------------------------------------------------------------------------- /benchmarks/scalapack/scalapack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/scalapack/scalapack.xml -------------------------------------------------------------------------------- /benchmarks/simple/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/simple/simple.xml -------------------------------------------------------------------------------- /benchmarks/stream/stream.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/stream/stream.xml -------------------------------------------------------------------------------- /benchmarks/tensorflow/tensorflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/tensorflow/tensorflow.xml -------------------------------------------------------------------------------- /benchmarks/tensorflow/tensorflow_execute.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/tensorflow/tensorflow_execute.xml -------------------------------------------------------------------------------- /benchmarks/tensorflow/tensorflow_prepare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/tensorflow/tensorflow_prepare.xml -------------------------------------------------------------------------------- /benchmarks/tensorflow/tensorflow_result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/benchmarks/tensorflow/tensorflow_result.xml -------------------------------------------------------------------------------- /bin/ubench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/bin/ubench -------------------------------------------------------------------------------- /configuration/ubench.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/configuration/ubench.conf -------------------------------------------------------------------------------- /css/asciidoctor-bench-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/css/asciidoctor-bench-report.css -------------------------------------------------------------------------------- /dev_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/dev_env.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/benchmarks_guide.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/benchmarks_guide.asc -------------------------------------------------------------------------------- /docs/source/campaign_guide.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/campaign_guide.asc -------------------------------------------------------------------------------- /docs/source/classDiagram.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/classDiagram.dia -------------------------------------------------------------------------------- /docs/source/developer_guide.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/developer_guide.asc -------------------------------------------------------------------------------- /docs/source/images/classDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/images/classDiagram.png -------------------------------------------------------------------------------- /docs/source/images/perf_report_ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/images/perf_report_ex.png -------------------------------------------------------------------------------- /docs/source/platform_guide.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/platform_guide.asc -------------------------------------------------------------------------------- /docs/source/ubench-campaign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-campaign.md -------------------------------------------------------------------------------- /docs/source/ubench-compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-compare.md -------------------------------------------------------------------------------- /docs/source/ubench-fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-fetch.md -------------------------------------------------------------------------------- /docs/source/ubench-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-list.md -------------------------------------------------------------------------------- /docs/source/ubench-listparams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-listparams.md -------------------------------------------------------------------------------- /docs/source/ubench-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-log.md -------------------------------------------------------------------------------- /docs/source/ubench-publish-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-publish-benchmark.md -------------------------------------------------------------------------------- /docs/source/ubench-publish-campaign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-publish-campaign.md -------------------------------------------------------------------------------- /docs/source/ubench-publish-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-publish-download.md -------------------------------------------------------------------------------- /docs/source/ubench-publish-update-remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-publish-update-remote.md -------------------------------------------------------------------------------- /docs/source/ubench-publish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-publish.md -------------------------------------------------------------------------------- /docs/source/ubench-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-report.md -------------------------------------------------------------------------------- /docs/source/ubench-result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-result.md -------------------------------------------------------------------------------- /docs/source/ubench-run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench-run.md -------------------------------------------------------------------------------- /docs/source/ubench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/ubench.md -------------------------------------------------------------------------------- /docs/source/user_guide.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/user_guide.asc -------------------------------------------------------------------------------- /docs/source/user_guide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/docs/source/user_guide.css -------------------------------------------------------------------------------- /platform/L470/platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/platform/L470/platform.xml -------------------------------------------------------------------------------- /platform/Zbook15/platform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/platform/Zbook15/platform.xml -------------------------------------------------------------------------------- /platform/bash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/platform/bash.xml -------------------------------------------------------------------------------- /platform/submit-local.job.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/platform/submit-local.job.in -------------------------------------------------------------------------------- /platform/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/platform/template.xml -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/release-notes.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -e . 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/setup.py -------------------------------------------------------------------------------- /templates/bench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/templates/bench.html -------------------------------------------------------------------------------- /templates/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/templates/compare.html -------------------------------------------------------------------------------- /templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/templates/report.html -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/bench_results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/bench_results.yaml -------------------------------------------------------------------------------- /tests/data/benchmarks/simple/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/benchmarks/simple/simple.xml -------------------------------------------------------------------------------- /tests/data/benchmarks/simple_git/simple_git.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/benchmarks/simple_git/simple_git.xml -------------------------------------------------------------------------------- /tests/data/benchmarks/test_bench/test_bench.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/campaign_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/campaign_metadata.yaml -------------------------------------------------------------------------------- /tests/data/jube_info_csv_fieldnames.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/jube_info_csv_fieldnames.csv -------------------------------------------------------------------------------- /tests/data/jube_info_csv_template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/jube_info_csv_template.csv -------------------------------------------------------------------------------- /tests/data/jube_info_head.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/jube_info_head.txt -------------------------------------------------------------------------------- /tests/data/jube_info_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/jube_info_template.txt -------------------------------------------------------------------------------- /tests/data/mock_jube_info-bad.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/mock_jube_info-bad.csv -------------------------------------------------------------------------------- /tests/data/ubench.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/ubench.log -------------------------------------------------------------------------------- /tests/data/ubench_results.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/data/ubench_results.dat -------------------------------------------------------------------------------- /tests/fake_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/fake_data.py -------------------------------------------------------------------------------- /tests/gen_bench_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/gen_bench_xml.py -------------------------------------------------------------------------------- /tests/tempbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/tempbench.py -------------------------------------------------------------------------------- /tests/test_bench_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_bench_api.py -------------------------------------------------------------------------------- /tests/test_data_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_data_store.py -------------------------------------------------------------------------------- /tests/test_jube_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_jube_api.py -------------------------------------------------------------------------------- /tests/test_jube_benchmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_jube_benchmanager.py -------------------------------------------------------------------------------- /tests/test_jube_campaign_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_jube_campaign_manager.py -------------------------------------------------------------------------------- /tests/test_slurm_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_slurm_interface.py -------------------------------------------------------------------------------- /tests/test_ubench_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/tests/test_ubench_commands.py -------------------------------------------------------------------------------- /ubench/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/__init__.py -------------------------------------------------------------------------------- /ubench/benchmark_managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmark_managers/__init__.py -------------------------------------------------------------------------------- /ubench/benchmark_managers/benchmark_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmark_managers/benchmark_manager.py -------------------------------------------------------------------------------- /ubench/benchmark_managers/benchmark_manager_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmark_managers/benchmark_manager_set.py -------------------------------------------------------------------------------- /ubench/benchmark_managers/campaign_benchmark_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmark_managers/campaign_benchmark_manager.py -------------------------------------------------------------------------------- /ubench/benchmark_managers/jube_benchmark_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmark_managers/jube_benchmark_manager.py -------------------------------------------------------------------------------- /ubench/benchmark_managers/standard_benchmark_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmark_managers/standard_benchmark_manager.py -------------------------------------------------------------------------------- /ubench/benchmarking_tools_interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmarking_tools_interfaces/__init__.py -------------------------------------------------------------------------------- /ubench/benchmarking_tools_interfaces/benchmarking_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmarking_tools_interfaces/benchmarking_api.py -------------------------------------------------------------------------------- /ubench/benchmarking_tools_interfaces/jube_benchmarking_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmarking_tools_interfaces/jube_benchmarking_api.py -------------------------------------------------------------------------------- /ubench/benchmarking_tools_interfaces/jube_xml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/benchmarking_tools_interfaces/jube_xml_parser.py -------------------------------------------------------------------------------- /ubench/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/config.py -------------------------------------------------------------------------------- /ubench/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/core/__init__.py -------------------------------------------------------------------------------- /ubench/core/fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/core/fetcher.py -------------------------------------------------------------------------------- /ubench/core/ubench_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/core/ubench_commands.py -------------------------------------------------------------------------------- /ubench/core/ubench_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/core/ubench_config.py -------------------------------------------------------------------------------- /ubench/data_management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/__init__.py -------------------------------------------------------------------------------- /ubench/data_management/comparison_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/comparison_writer.py -------------------------------------------------------------------------------- /ubench/data_management/data_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/data_store.py -------------------------------------------------------------------------------- /ubench/data_management/data_store_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/data_store_yaml.py -------------------------------------------------------------------------------- /ubench/data_management/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/publisher.py -------------------------------------------------------------------------------- /ubench/data_management/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/report.py -------------------------------------------------------------------------------- /ubench/data_management/vcs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ubench/data_management/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/vcs/git.py -------------------------------------------------------------------------------- /ubench/data_management/vcs/standard_vcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/data_management/vcs/standard_vcs.py -------------------------------------------------------------------------------- /ubench/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/progress.py -------------------------------------------------------------------------------- /ubench/release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/release.py -------------------------------------------------------------------------------- /ubench/scheduler_interfaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/scheduler_interfaces/__init__.py -------------------------------------------------------------------------------- /ubench/scheduler_interfaces/scheduler_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/scheduler_interfaces/scheduler_interface.py -------------------------------------------------------------------------------- /ubench/scheduler_interfaces/slurm_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/scheduler_interfaces/slurm_interface.py -------------------------------------------------------------------------------- /ubench/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edf-hpc/unclebench/HEAD/ubench/utils.py --------------------------------------------------------------------------------