Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HPC tool setup on compute node #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions arch-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,9 @@
- zsh-autosuggestions
- zsh-syntax-highlighting
- aur/oh-my-zsh-git
- - aur/intel-oneapi-hpckit
- aur/nvhpc-22.5
- env-modules
- name: install docker packages
become_user: maintenance
kewlfft.aur.aur:
Expand All @@ -491,6 +494,27 @@
loop:
- docker.socket
- docker.service
- name: Run modulefiles-setup.sh if /opt/intel/modulefiles doesn't exist
shell:
cmd: |
/opt/intel/oneapi/modulefiles-setup.sh --output-dir=/opt/intel/modulefiles
creates: /opt/intel/modulefiles
- name: Edit intel-oneapi.sh
lineinfile:
path: /etc/profile.d/intel-oneapi.sh
line: "module use /opt/intel/modulefiles"
- name: Set vm.nr_hugepages
sysctl:
name: vm.nr_hugepages
value: 2048
state: present
reload: yes
- name: Set vm.nr_overcommit_hugepages
sysctl:
name: vm.nr_overcommit_hugepages
value: 256
state: present
reload: yes
- become: true
hosts: nvidia
name: setup for nvidia gpu
Expand Down