├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ └── stale.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── ansible.cfg ├── dependencies ├── arch-based.yml ├── darwin-based.yml ├── debian-based.yml └── rhel-based.yml ├── example.config.yml ├── example.hosts.ini ├── main.yml ├── overclock-pi.yml ├── tasks ├── algebra_atlas.yml ├── algebra_blis.yml ├── algebra_openblas.yml ├── firewall-configure.yml └── firewall-reset.yml └── templates ├── HPL.dat.j2 ├── benchmark-Make.top500.j2 └── mpi-node-config.j2 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml 2 | hosts.ini 3 | -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/ansible.cfg -------------------------------------------------------------------------------- /dependencies/arch-based.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/dependencies/arch-based.yml -------------------------------------------------------------------------------- /dependencies/darwin-based.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/dependencies/darwin-based.yml -------------------------------------------------------------------------------- /dependencies/debian-based.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/dependencies/debian-based.yml -------------------------------------------------------------------------------- /dependencies/rhel-based.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/dependencies/rhel-based.yml -------------------------------------------------------------------------------- /example.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/example.config.yml -------------------------------------------------------------------------------- /example.hosts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/example.hosts.ini -------------------------------------------------------------------------------- /main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/main.yml -------------------------------------------------------------------------------- /overclock-pi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/overclock-pi.yml -------------------------------------------------------------------------------- /tasks/algebra_atlas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/tasks/algebra_atlas.yml -------------------------------------------------------------------------------- /tasks/algebra_blis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/tasks/algebra_blis.yml -------------------------------------------------------------------------------- /tasks/algebra_openblas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/tasks/algebra_openblas.yml -------------------------------------------------------------------------------- /tasks/firewall-configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/tasks/firewall-configure.yml -------------------------------------------------------------------------------- /tasks/firewall-reset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/tasks/firewall-reset.yml -------------------------------------------------------------------------------- /templates/HPL.dat.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/templates/HPL.dat.j2 -------------------------------------------------------------------------------- /templates/benchmark-Make.top500.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/templates/benchmark-Make.top500.j2 -------------------------------------------------------------------------------- /templates/mpi-node-config.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geerlingguy/top500-benchmark/HEAD/templates/mpi-node-config.j2 --------------------------------------------------------------------------------