├── .gitignore ├── LICENSE ├── README.md ├── docs ├── account-renewal.md ├── booking-system.md ├── features.md ├── first-steps.md ├── infrastructure.md ├── operating-the-cluster.md ├── overleaf │ ├── account-renewal.md │ ├── booking-system.md │ ├── features.md │ ├── first-steps.md │ ├── infrastructure.md │ ├── known-limitations.md │ ├── operating-the-cluster.md │ ├── technical-support.md │ ├── vocabulary.md │ └── who-does-what.md ├── overleaf_export.sh ├── technical-support.md ├── vocabulary.md └── who-does-what.md ├── hacc-removebg.png └── imgs ├── accessing-a-server.png ├── account-renewal.png ├── ansible.png ├── booking-a-server.png ├── booking-system.png ├── hacc-boxes.png ├── infrastructure.png ├── installed-xilinx-tools.png ├── networking.png ├── passwords.png ├── reverting-to-vitits-workflow.png ├── slack.png ├── spine-leaf.png └── validating-a-xilinx-accelerator-card.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | .vscode 4 | 5 | localhost.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/README.md -------------------------------------------------------------------------------- /docs/account-renewal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/account-renewal.md -------------------------------------------------------------------------------- /docs/booking-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/booking-system.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/first-steps.md -------------------------------------------------------------------------------- /docs/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/infrastructure.md -------------------------------------------------------------------------------- /docs/operating-the-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/operating-the-cluster.md -------------------------------------------------------------------------------- /docs/overleaf/account-renewal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/account-renewal.md -------------------------------------------------------------------------------- /docs/overleaf/booking-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/booking-system.md -------------------------------------------------------------------------------- /docs/overleaf/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/features.md -------------------------------------------------------------------------------- /docs/overleaf/first-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/first-steps.md -------------------------------------------------------------------------------- /docs/overleaf/infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/infrastructure.md -------------------------------------------------------------------------------- /docs/overleaf/known-limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/known-limitations.md -------------------------------------------------------------------------------- /docs/overleaf/operating-the-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/operating-the-cluster.md -------------------------------------------------------------------------------- /docs/overleaf/technical-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/technical-support.md -------------------------------------------------------------------------------- /docs/overleaf/vocabulary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/vocabulary.md -------------------------------------------------------------------------------- /docs/overleaf/who-does-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf/who-does-what.md -------------------------------------------------------------------------------- /docs/overleaf_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/overleaf_export.sh -------------------------------------------------------------------------------- /docs/technical-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/technical-support.md -------------------------------------------------------------------------------- /docs/vocabulary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/vocabulary.md -------------------------------------------------------------------------------- /docs/who-does-what.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/docs/who-does-what.md -------------------------------------------------------------------------------- /hacc-removebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/hacc-removebg.png -------------------------------------------------------------------------------- /imgs/accessing-a-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/accessing-a-server.png -------------------------------------------------------------------------------- /imgs/account-renewal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/account-renewal.png -------------------------------------------------------------------------------- /imgs/ansible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/ansible.png -------------------------------------------------------------------------------- /imgs/booking-a-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/booking-a-server.png -------------------------------------------------------------------------------- /imgs/booking-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/booking-system.png -------------------------------------------------------------------------------- /imgs/hacc-boxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/hacc-boxes.png -------------------------------------------------------------------------------- /imgs/infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/infrastructure.png -------------------------------------------------------------------------------- /imgs/installed-xilinx-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/installed-xilinx-tools.png -------------------------------------------------------------------------------- /imgs/networking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/networking.png -------------------------------------------------------------------------------- /imgs/passwords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/passwords.png -------------------------------------------------------------------------------- /imgs/reverting-to-vitits-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/reverting-to-vitits-workflow.png -------------------------------------------------------------------------------- /imgs/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/slack.png -------------------------------------------------------------------------------- /imgs/spine-leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/spine-leaf.png -------------------------------------------------------------------------------- /imgs/validating-a-xilinx-accelerator-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpgasystems/hacc/HEAD/imgs/validating-a-xilinx-accelerator-card.png --------------------------------------------------------------------------------