Skip to content

Commit b3c3eb2

Browse files
committed
Update for release branch release/0.47
1 parent 8a9a659 commit b3c3eb2

File tree

7 files changed

+32
-32
lines changed

7 files changed

+32
-32
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ concurrency:
3434
jobs:
3535
conda-cpp-build:
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@release/25.12
3838
with:
3939
build_type: ${{ inputs.build_type || 'branch' }}
4040
branch: ${{ inputs.branch }}
@@ -45,7 +45,7 @@ jobs:
4545
if: github.ref_type == 'branch'
4646
needs: conda-cpp-build
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
48+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/25.12
4949
with:
5050
arch: "amd64"
5151
branch: ${{ inputs.branch }}
@@ -58,15 +58,15 @@ jobs:
5858
upload-conda:
5959
needs: [conda-cpp-build]
6060
secrets: inherit
61-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@main
61+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@release/25.12
6262
with:
6363
build_type: ${{ inputs.build_type || 'branch' }}
6464
branch: ${{ inputs.branch }}
6565
date: ${{ inputs.date }}
6666
sha: ${{ inputs.sha }}
6767
wheel-build-libucxx:
6868
secrets: inherit
69-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
69+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
7070
with:
7171
build_type: ${{ inputs.build_type || 'branch' }}
7272
branch: ${{ inputs.branch }}
@@ -80,7 +80,7 @@ jobs:
8080
wheel-publish-libucxx:
8181
needs: wheel-build-libucxx
8282
secrets: inherit
83-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
83+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/25.12
8484
with:
8585
build_type: ${{ inputs.build_type || 'branch' }}
8686
branch: ${{ inputs.branch }}
@@ -91,7 +91,7 @@ jobs:
9191
wheel-build-ucxx:
9292
needs: wheel-build-libucxx
9393
secrets: inherit
94-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
94+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
9595
with:
9696
build_type: ${{ inputs.build_type || 'branch' }}
9797
branch: ${{ inputs.branch }}
@@ -103,7 +103,7 @@ jobs:
103103
wheel-publish-ucxx:
104104
needs: wheel-build-ucxx
105105
secrets: inherit
106-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
106+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/25.12
107107
with:
108108
build_type: ${{ inputs.build_type || 'branch' }}
109109
branch: ${{ inputs.branch }}
@@ -113,7 +113,7 @@ jobs:
113113
package-type: python
114114
wheel-build-distributed-ucxx:
115115
secrets: inherit
116-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
116+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
117117
with:
118118
build_type: ${{ inputs.build_type || 'branch' }}
119119
branch: ${{ inputs.branch }}
@@ -125,7 +125,7 @@ jobs:
125125
wheel-publish-distributed-ucxx:
126126
needs: [wheel-build-ucxx, wheel-build-distributed-ucxx]
127127
secrets: inherit
128-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@main
128+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@release/25.12
129129
with:
130130
build_type: ${{ inputs.build_type || 'branch' }}
131131
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- wheel-tests-distributed-ucxx
2626
- telemetry-setup
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@main
28+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@release/25.12
2929
if: always()
3030
with:
3131
needs: ${{ toJSON(needs) }}
@@ -52,7 +52,7 @@ jobs:
5252
changed-files:
5353
secrets: inherit
5454
needs: telemetry-setup
55-
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@main
55+
uses: rapidsai/shared-workflows/.github/workflows/changed-files.yaml@release/25.12
5656
with:
5757
files_yaml: |
5858
test_cpp:
@@ -74,22 +74,22 @@ jobs:
7474
- '!docs/**'
7575
checks:
7676
secrets: inherit
77-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@main
77+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@release/25.12
7878
needs: telemetry-setup
7979
with:
8080
enable_check_generated_files: false
8181
ignored_pr_jobs: telemetry-summarize
8282
conda-cpp-build:
8383
needs: checks
8484
secrets: inherit
85-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@main
85+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-build.yaml@release/25.12
8686
with:
8787
build_type: pull-request
8888
script: ci/build_cpp.sh
8989
docs-build:
9090
needs: conda-cpp-build
9191
secrets: inherit
92-
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
92+
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@release/25.12
9393
with:
9494
build_type: pull-request
9595
node_type: "gpu-l4-latest-1"
@@ -99,7 +99,7 @@ jobs:
9999
conda-cpp-tests:
100100
needs: [conda-cpp-build, changed-files]
101101
secrets: inherit
102-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
102+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@release/25.12
103103
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
104104
with:
105105
build_type: pull-request
@@ -108,7 +108,7 @@ jobs:
108108
conda-python-tests:
109109
needs: [conda-cpp-build, changed-files]
110110
secrets: inherit
111-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
111+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@release/25.12
112112
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
113113
with:
114114
build_type: pull-request
@@ -117,7 +117,7 @@ jobs:
117117
conda-python-distributed-tests:
118118
needs: [conda-cpp-build, changed-files]
119119
secrets: inherit
120-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
120+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@release/25.12
121121
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
122122
with:
123123
build_type: pull-request
@@ -126,7 +126,7 @@ jobs:
126126
wheel-build-libucxx:
127127
needs: checks
128128
secrets: inherit
129-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
129+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
130130
with:
131131
build_type: pull-request
132132
script: ci/build_wheel_libucxx.sh
@@ -137,7 +137,7 @@ jobs:
137137
wheel-build-ucxx:
138138
needs: wheel-build-libucxx
139139
secrets: inherit
140-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
140+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
141141
with:
142142
build_type: pull-request
143143
script: ci/build_wheel_ucxx.sh
@@ -146,7 +146,7 @@ jobs:
146146
wheel-tests-ucxx:
147147
needs: [wheel-build-ucxx, changed-files]
148148
secrets: inherit
149-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
149+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/25.12
150150
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
151151
with:
152152
build_type: pull-request
@@ -155,7 +155,7 @@ jobs:
155155
wheel-build-distributed-ucxx:
156156
needs: checks
157157
secrets: inherit
158-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@main
158+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@release/25.12
159159
with:
160160
build_type: pull-request
161161
script: ci/build_wheel_distributed_ucxx.sh
@@ -164,7 +164,7 @@ jobs:
164164
wheel-tests-distributed-ucxx:
165165
needs: [wheel-build-ucxx, wheel-build-distributed-ucxx, changed-files]
166166
secrets: inherit
167-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
167+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/25.12
168168
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
169169
with:
170170
build_type: pull-request
@@ -173,7 +173,7 @@ jobs:
173173
devcontainer:
174174
secrets: inherit
175175
needs: [checks, telemetry-setup]
176-
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@main
176+
uses: rapidsai/shared-workflows/.github/workflows/build-in-devcontainer.yaml@release/25.12
177177
with:
178178
arch: '["amd64", "arm64"]'
179179
cuda: '["13.0"]'

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
conda-cpp-tests:
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@main
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-cpp-tests.yaml@release/25.12
2929
with:
3030
build_type: ${{ inputs.build_type }}
3131
branch: ${{ inputs.branch }}
@@ -35,7 +35,7 @@ jobs:
3535
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
3636
conda-python-tests:
3737
secrets: inherit
38-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
38+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@release/25.12
3939
with:
4040
build_type: ${{ inputs.build_type }}
4141
branch: ${{ inputs.branch }}
@@ -45,7 +45,7 @@ jobs:
4545
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
4646
conda-python-distributed-tests:
4747
secrets: inherit
48-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@main
48+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@release/25.12
4949
with:
5050
build_type: ${{ inputs.build_type }}
5151
script: "ci/test_python_distributed.sh"
@@ -55,7 +55,7 @@ jobs:
5555
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
5656
wheel-tests-ucxx:
5757
secrets: inherit
58-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
58+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/25.12
5959
with:
6060
build_type: ${{ inputs.build_type }}
6161
branch: ${{ inputs.branch }}
@@ -65,7 +65,7 @@ jobs:
6565
script: ci/test_wheel_ucxx.sh
6666
wheel-tests-distributed-ucxx:
6767
secrets: inherit
68-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@main
68+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/25.12
6969
with:
7070
build_type: ${{ inputs.build_type }}
7171
branch: ${{ inputs.branch }}

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@main
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@release/25.12
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

RAPIDS_BRANCH

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
main
1+
release/25.12

cmake/RAPIDS.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ endif()
2626
# Allow users to control which branch is fetched
2727
if(NOT rapids-cmake-branch)
2828
# Define a default branch if the user doesn't set one
29-
set(rapids-cmake-branch "main")
29+
set(rapids-cmake-branch "release/${rapids-cmake-version}")
3030
endif()
3131

3232
# Allow users to control the exact URL passed to FetchContent

docs/ucxx/source/send_recv.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ Most users will not care about these details but developers and interested netwo
9393
[1757536870.872600] [dgx13:1377244] UCXPY DEBUG [Recv #001] ep: 0x7f5a161a8080, tag: 0xdf227087928e03f6, nbytes: 12, type: <class 'bytearray'>
9494

9595

96-
We can see from the above that when the ``Endpoint`` is created, 4 tags are generated: ``msg-tag-send``, ``msg-tag-recv``, ``ctrl-tag-send``, and ``ctrl-tag-recv``. This data is transmitted to the server via a `stream <https://openucx.github.io/ucx/api/latest/html/group___u_c_p___c_o_m_m.html#gae9fe6efe6b05e4e78f58bee68c68b252>`_ communication in an `exchange peer info <https://github.com/rapidsai/ucxx/blob/main/python/ucxx/ucxx/_lib_async/exchange_peer_info.py>`_ convenience function.
96+
We can see from the above that when the ``Endpoint`` is created, 4 tags are generated: ``msg-tag-send``, ``msg-tag-recv``, ``ctrl-tag-send``, and ``ctrl-tag-recv``. This data is transmitted to the server via a `stream <https://openucx.github.io/ucx/api/latest/html/group___u_c_p___c_o_m_m.html#gae9fe6efe6b05e4e78f58bee68c68b252>`_ communication in an `exchange peer info <https://github.com/rapidsai/ucxx/blob/release/0.47/python/ucxx/ucxx/_lib_async/exchange_peer_info.py>`_ convenience function.
9797

9898
Next, the client sends data on the ``msg-tag-send`` tag. Two messages are sent, the size of the data ``8 bytes`` and data itself. The server receives the data and immediately echos the data back. The client then receives two messages the size of the data and the data itself.

0 commit comments

Comments
 (0)