Skip to content

Commit 9eadafd

Browse files
authored
Merge branch 'main' into caiorocha/fix_ibverbs_load
2 parents eee94bf + a38c2ee commit 9eadafd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1485
-361
lines changed

.azure-pipelines/integration-test-rocm.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
trigger:
2-
- main
3-
- release/*
2+
branches:
3+
include:
4+
- main
5+
- release/*
6+
paths:
7+
exclude:
8+
- .devcontainer/**
9+
- .github/**
10+
- docker/**
11+
- docs/**
12+
- '**/*.md'
413

514
pr:
615
branches:
716
include:
817
- main
918
- release/*
1019
drafts: false
20+
paths:
21+
exclude:
22+
- .devcontainer/**
23+
- .github/**
24+
- docker/**
25+
- docs/**
26+
- '**/*.md'
1127

1228
jobs:
1329
- job: IntegrationTestRocm

.azure-pipelines/integration-test.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
trigger:
2-
- main
3-
- release/*
2+
branches:
3+
include:
4+
- main
5+
- release/*
6+
paths:
7+
exclude:
8+
- .devcontainer/**
9+
- .github/**
10+
- docker/**
11+
- docs/**
12+
- '**/*.md'
413

514
pr:
615
branches:
716
include:
817
- main
918
- release/*
1019
drafts: false
20+
paths:
21+
exclude:
22+
- .devcontainer/**
23+
- .github/**
24+
- docker/**
25+
- docs/**
26+
- '**/*.md'
1127

1228
jobs:
1329
- job: IntegrationTestA100

.azure-pipelines/multi-nodes-test.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
trigger:
2-
- main
3-
- release/*
2+
branches:
3+
include:
4+
- main
5+
- release/*
6+
paths:
7+
exclude:
8+
- .devcontainer/**
9+
- .github/**
10+
- docker/**
11+
- docs/**
12+
- '**/*.md'
413

514
# Do not run multi-nodes-test for PR, we can trigger it manually
615
pr: none

.azure-pipelines/nccl-api-test.yaml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,29 @@
11
trigger:
2-
- main
3-
- release/*
2+
branches:
3+
include:
4+
- main
5+
- release/*
6+
paths:
7+
exclude:
8+
- .devcontainer/**
9+
- .github/**
10+
- docker/**
11+
- docs/**
12+
- '**/*.md'
413

514
pr:
615
branches:
716
include:
817
- main
918
- release/*
1019
drafts: false
20+
paths:
21+
exclude:
22+
- .devcontainer/**
23+
- .github/**
24+
- docker/**
25+
- docs/**
26+
- '**/*.md'
1127

1228
jobs:
1329
- job: NcclTestA100

.azure-pipelines/ut.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,31 @@
11
trigger:
2-
- main
3-
- release/*
2+
branches:
3+
include:
4+
- main
5+
- release/*
6+
paths:
7+
exclude:
8+
- .devcontainer/**
9+
- .github/**
10+
- apps/**
11+
- docker/**
12+
- docs/**
13+
- '**/*.md'
414

515
pr:
616
branches:
717
include:
818
- main
919
- release/*
1020
drafts: false
21+
paths:
22+
exclude:
23+
- .devcontainer/**
24+
- .github/**
25+
- apps/**
26+
- docker/**
27+
- docs/**
28+
- '**/*.md'
1129

1230
jobs:
1331
- job: UnitTestA100

.github/workflows/codeql-analysis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,22 @@ on:
55
branches:
66
- main
77
- release/*
8+
paths:
9+
- 'cmake/**'
10+
- 'src/**'
11+
- 'include/**'
12+
- 'CMakeLists.txt'
13+
- '.github/workflows/codeql-analysis.yml'
814
pull_request:
915
branches:
1016
- main
1117
- release/*
18+
paths:
19+
- 'cmake/**'
20+
- 'src/**'
21+
- 'include/**'
22+
- 'CMakeLists.txt'
23+
- '.github/workflows/codeql-analysis.yml'
1224
schedule:
1325
- cron: "30 1 * * 1"
1426

.github/workflows/doc-build.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,29 @@ permissions:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
17+
with:
18+
# Fetch full history for accurate version info
19+
fetch-depth: 0
1720

1821
- name: Setup Python
1922
uses: actions/setup-python@v5
2023
with:
21-
python-version: '3.10'
24+
python-version: '3.12'
2225

2326
- name: Install dependencies
2427
run: |
2528
sudo apt-get update
26-
sudo apt-get install -y doxygen graphviz
29+
sudo apt-get install -y doxygen=1.9.1-* graphviz
2730
pip install -r docs/requirements.txt
2831
2932
- name: Build docs
3033
run: |
3134
cd docs
35+
rm -rf doxygen _build py_api
3236
doxygen
3337
make html
3438
touch _build/html/.nojekyll

.github/workflows/gh-pages.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,26 @@ concurrency:
2222

2323
jobs:
2424
build:
25-
runs-on: ubuntu-latest
25+
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v4
29+
with:
30+
# Fetch full history for accurate version info
31+
fetch-depth: 0
2932
- name: Setup python
3033
uses: actions/setup-python@v5
3134
with:
32-
python-version: '3.10'
35+
python-version: '3.12'
3336
- name: Install dependencies
3437
run: |
3538
sudo apt-get update
36-
sudo apt-get install -y doxygen graphviz
39+
sudo apt-get install -y doxygen=1.9.1-* graphviz
3740
pip install -r docs/requirements.txt
3841
- name: Build docs
3942
run: |
4043
cd docs
44+
rm -rf doxygen _build py_api
4145
doxygen
4246
make html
4347
touch _build/html/.nojekyll

.github/workflows/update-version.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

apps/nccl/audit-shim/audit_nccl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ extern "C" __attribute__((visibility("default"))) char *la_objsearch(const char
1414
strcmp(name, "librccl.so.1")) {
1515
return (char *)name;
1616
}
17-
return (char*)library;
17+
return (char *)library;
1818
}

0 commit comments

Comments
 (0)