-
Couldn't load subscription status.
- Fork 37
Adds bandwidth.yml playbook for NVIDIA nvbandwidth #834
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| --- | ||
| - name: Ensure CUDA bandwidth path exists | ||
| ansible.builtin.file: | ||
| state: directory | ||
| path: "{{ cuda_bandwidth_path }}" | ||
| owner: "{{ ansible_user }}" | ||
| group: "{{ ansible_user }}" | ||
| mode: "0755" | ||
|
|
||
| - name: Download CUDA bandwith test release | ||
| ansible.builtin.unarchive: | ||
| remote_src: true | ||
| src: "{{ cuda_bandwidth_release_url }}" | ||
| dest: "{{ cuda_bandwidth_path }}" | ||
| owner: "{{ ansible_user }}" | ||
| group: "{{ ansible_user }}" | ||
| creates: "{{ cuda_bandwidth_path }}/nvbandwidth-0.8" | ||
|
|
||
| - name: Creates CUDA bandwidth test build directory | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you make the name: consistent with the name: on the first task please? |
||
| ansible.builtin.file: | ||
| state: directory | ||
| path: "{{ cuda_bandwidth_path }}/nvbandwidth-0.8/build" | ||
| mode: "0755" | ||
|
|
||
| - name: Ensure cudatests directory exists | ||
| ansible.builtin.file: | ||
| path: "{{ appliances_environment_root }}/cudatests" | ||
| state: directory | ||
| mode: '0755' | ||
| delegate_to: localhost | ||
|
|
||
| - name: Build CUDA bandwidth test | ||
| ansible.builtin.shell: | ||
| cmd: > | ||
| source /cvmfs/software.eessi.io/versions/2023.06/init/bash && | ||
| module load buildenv/default-foss-2023b && | ||
| module load Boost/1.82.0-GCC-12.3.0 && | ||
| . /etc/profile.d/sh.local && | ||
| cmake .. && | ||
| make -j {{ ansible_processor_vcpus }} | ||
| chdir: "{{ cuda_bandwidth_path }}/nvbandwidth-0.8/build" | ||
| creates: "{{ cuda_bandwidth_path }}/nvbandwidth-0.8/build/nvbandwidth" | ||
| changed_when: true | ||
|
|
||
| - name: Run CUDA bandwidth test | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this needs |
||
| ansible.builtin.shell: | | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So:
Is it not sufficent to just activate eessi again? And maybe load some eeesi modules? |
||
| ./nvbandwidth | ||
| args: | ||
| chdir: "{{ cuda_bandwidth_path }}/nvbandwidth-0.8/build/" | ||
| register: cuda_bandwidth_output | ||
| changed_when: true | ||
|
|
||
| - name: Save CUDA bandwidth output to bandwidth_results.txt | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there no useful summary we can do here? |
||
| ansible.builtin.copy: | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given this is fetching a file, why does this not use |
||
| content: "{{ cuda_bandwidth_output.stdout }}" | ||
| dest: "{{ appliances_environment_root }}/cudatests/{{ inventory_hostname }}bandwidth_results.txt" | ||
| mode: '0644' | ||
| delegate_to: localhost | ||
Uh oh!
There was an error while loading. Please reload this page.