Skip to content

Commit 8f734ed

Browse files
committed
feat: update NCCL test passing criteria from 25 to 19
1 parent d0d3cd4 commit 8f734ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/cloud-build/daily-tests/ansible_playbooks/test-validation/test-gke-a3-high.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
debug:
6161
msg: "{{nccl_test_logs.stdout}}"
6262

63-
- name: Ensure average bus bandwidth is >= 25 GB/s
63+
- name: Ensure average bus bandwidth is >= 19 GB/s
6464
delegate_to: localhost
6565
ansible.builtin.shell: |
6666
grep -o '# Avg bus bandwidth : [0-9\.]*' pod_logs.txt | cut -d ':' -f 2 | awk '{$1=$1;print}'
6767
register: avg_bus_bandwidth
68-
failed_when: avg_bus_bandwidth.stdout | float < 25
68+
failed_when: avg_bus_bandwidth.stdout | float < 19
6969

7070
- name: Clean up
7171
delegate_to: localhost

0 commit comments

Comments
 (0)