We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56629e9 commit 16c3bf4Copy full SHA for 16c3bf4
1 file changed
.github/workflows/menlo-build.yml
@@ -406,6 +406,13 @@ jobs:
406
ccache -V
407
rm -rf /tmp/ccache-4.10.2-linux-x86_64.tar.xz /tmp/ccache-4.10.2-linux-x86_64
408
409
+ - name: Install NCCL (Linux CUDA)
410
+ if: runner.os == 'Linux' && contains(matrix.runs-on, 'cuda')
411
+ continue-on-error: true
412
+ run: |
413
+ sudo apt-get install -y libnccl2 libnccl-dev || \
414
+ echo "::warning::libnccl-dev not available via apt; multi-GPU allreduce will fall back to the internal pipeline"
415
+
416
- name: Set up homebrew path on macOS
417
if: runner.os == 'macOS'
418
run: |
0 commit comments