- 
                Notifications
    You must be signed in to change notification settings 
- 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,57 @@ | ||
| --- | ||
| - 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 | ||
|         
                  claudia-lola marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| 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" | ||
|  | ||
| - name: Run CUDA bandwidth test | ||
|         
                  sjpb marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| ansible.builtin.shell: | | ||
|         
                  sjpb marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| ./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? So someone not familar with the system can get a quick idea of "it works" or "it doesn't"? 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 you can run test cases by running  | ||
| ansible.builtin.copy: | ||
|         
                  sjpb marked this conversation as resolved.
              Show resolved
            Hide resolved | ||
| 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.