File tree
254 files changed
+71866
-29540
lines changed- 3rdparty
- benchmarks/python
- cpp
- include/tensorrt_llm
- batch_manager
- common
- executor
- runtime
- micro_benchmarks
- tensorrt_llm
- batch_manager
- aarch64-linux-gnu
- x86_64-linux-gnu
- common
- executor
- aarch64-linux-gnu
- x86_64-linux-gnu
- kernels
- beamSearchKernels
- contextFusedMultiHeadAttention
- cubin
- decoderMaskedMultiheadAttention
- decoderXQAImplJIT
- nvrtcWrapper
- aarch64-linux-gnu
- x86_64-linux-gnu
- fusedLayernormKernels
- internal_cutlass_kernels
- aarch64-linux-gnu
- include
- src/moe_gemm/launchers
- x86_64-linux-gnu
- speculativeDecoding
- trtllmGenKernels/fmha
- cubin
- userbuffers
- plugins
- api
- fusedLayernormPlugin
- gemmAllReducePlugin
- gemmPlugin
- gptAttentionPlugin
- loraPlugin
- mixtureOfExperts
- pybind
- batch_manager
- executor
- userbuffers
- runtime
- thop
- tests
- resources/scripts
- unit_tests/kernels
- docker/common
- docs/source
- installation
- performance/performance-tuning-guide
- examples
- deepseek_v2
- llm-api
- multimodal
- pytorch
- qwen
- tensorrt_llm
- _torch
- attention_backend
- models
- modules
- pyexecutor
- bench
- benchmark
- utils
- build
- dataclasses
- commands
- executor
- layers
- llmapi
- models
- deepseek_v2
- eagle
- llama
- medusa
- qwen
- plugin
- quantization
- runtime
- tests
- _torch
- modeling
- multi_gpu
- thop
- attention
- bindings
- functional
- llmapi
- _perf_evaluator
- quantization
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
254 files changed
+71866
-29540
lines changed- .github/copy-pr-bot.yaml+1
- .github/workflows/build.yaml+9-9
- .github/workflows/pr.yaml+42-17
- .github/workflows/test.yaml+5-5
- .github/workflows/trigger-breaking-change-alert.yaml+26
- .pre-commit-config.yaml+2-2
- VERSION+1-1
- ci/build_cpp.sh+4
- ci/build_docs.sh+5-5
- ci/build_wheel.sh+10-25
- ci/build_wheel_distributed_ucxx.sh+6-1
- ci/build_wheel_libucxx.sh+35-1
- ci/build_wheel_ucxx.sh+26-1
- ci/release/update-version.sh+2-2
- ci/test_common.sh+4-4
- ci/test_cpp.sh+5-1
- ci/test_python.sh+19-9
- ci/test_python_distributed.sh+7-1
- ci/validate_wheel.sh+21
- conda/environments/all_cuda-118_arch-x86_64.yaml+9-9
- conda/environments/all_cuda-125_arch-x86_64.yaml+9-9
- conda/recipes/ucxx/conda_build_config.yaml+1-1
- conda/recipes/ucxx/meta.yaml+1-1
- cpp/CMakeLists.txt+4-1
- cpp/include/ucxx/address.h+2-3
- cpp/include/ucxx/constructors.h+35-35
- cpp/include/ucxx/context.h+1-2
- cpp/include/ucxx/delayed_submission.h+15-6
- cpp/include/ucxx/endpoint.h+10-9
- cpp/include/ucxx/listener.h+4-5
- cpp/include/ucxx/memory_handle.h+4-5
- cpp/include/ucxx/notifier.h+7
- cpp/include/ucxx/remote_key.h+2-2
- cpp/include/ucxx/request.h+1-1
- cpp/include/ucxx/request_am.h+9-1
- cpp/include/ucxx/request_endpoint_close.h+1-1
- cpp/include/ucxx/request_flush.h+1-1
- cpp/include/ucxx/request_mem.h+1-1
- cpp/include/ucxx/request_stream.h+1-1
- cpp/include/ucxx/request_tag.h+1-1
- cpp/include/ucxx/request_tag_multi.h+1-1
- cpp/include/ucxx/worker.h+44-8
- cpp/include/ucxx/worker_progress_thread.h+5
- cpp/python/include/ucxx/python/constructors.h+7-6
- cpp/python/include/ucxx/python/notifier.h+8-1
- cpp/python/include/ucxx/python/python_future.h+2-3
- cpp/python/include/ucxx/python/worker.h+17-3
- cpp/python/src/future.cpp+62-20
- cpp/python/src/notifier.cpp+6
- cpp/python/src/worker.cpp+15
- cpp/src/delayed_submission.cpp+1-1
- cpp/src/endpoint.cpp+6-4
- cpp/src/request_am.cpp+46-9
- cpp/src/utils/callback_notifier.cpp+1-1
- cpp/src/worker.cpp+52-12
- cpp/src/worker_progress_thread.cpp+1-1
- cpp/tests/request.cpp+50
- cpp/tests/worker.cpp+191-7
- dependencies.yaml+23-23
- fetch_rapids.cmake+1-1
- python/distributed-ucxx/distributed_ucxx/__init__.py-1
- python/distributed-ucxx/distributed_ucxx/distributed_patches.py-41
- python/distributed-ucxx/distributed_ucxx/tests/test_ucxx.py+3
- python/distributed-ucxx/distributed_ucxx/ucxx.py+134-2
- python/distributed-ucxx/pyproject.toml+11-3
- python/libucxx/libucxx/load.py+53-18
- python/libucxx/pyproject.toml+11-3
- python/ucxx/pyproject.toml+16-8
- python/ucxx/ucxx/_lib/arr.pxd+6-1
- python/ucxx/ucxx/_lib/arr.pyi+12-4
- python/ucxx/ucxx/_lib/arr.pyx+34-12
- python/ucxx/ucxx/_lib/libucxx.pyx+24-3
- python/ucxx/ucxx/_lib/tests/test_cancel.py+2-3
- python/ucxx/ucxx/_lib/tests/test_endpoint.py+20-10
- python/ucxx/ucxx/_lib/tests/test_probe.py+2-3
- python/ucxx/ucxx/_lib/tests/test_server_client.py+17-7
- python/ucxx/ucxx/_lib/tests/test_utils.py+34-1
- python/ucxx/ucxx/_lib/ucxx_api.pxd+4-1
- python/ucxx/ucxx/_lib_async/application_context.py+34-15
- python/ucxx/ucxx/_lib_async/continuous_ucx_progress.py+142-9
- python/ucxx/ucxx/_lib_async/endpoint.py+20-3
- python/ucxx/ucxx/_lib_async/listener.py+59-42
- python/ucxx/ucxx/_lib_async/notifier_thread.py+5-1
- python/ucxx/ucxx/_lib_async/tests/test_benchmark_cluster.py+4-5
- python/ucxx/ucxx/_lib_async/tests/test_disconnect.py+5-4
- python/ucxx/ucxx/_lib_async/tests/test_endpoint.py-3
- python/ucxx/ucxx/_lib_async/tests/test_from_worker_address.py+7-11
- python/ucxx/ucxx/_lib_async/tests/test_from_worker_address_error.py+29-18
- python/ucxx/ucxx/_lib_async/tests/test_send_recv_two_workers.py+63-66
- python/ucxx/ucxx/_lib_async/tests/test_shutdown.py-10
- python/ucxx/ucxx/benchmarks/backends/asyncio.py+100
- python/ucxx/ucxx/benchmarks/backends/socket.py+102
- python/ucxx/ucxx/benchmarks/send_recv.py+20-10
- python/ucxx/ucxx/testing.py+24
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
10 | | - | |
11 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | 22 | | |
24 | 23 | | |
25 | 24 | | |
26 | 25 | | |
27 | 26 | | |
28 | 27 | | |
29 | | - | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
30 | 31 | | |
31 | 32 | | |
32 | 33 | | |
| |||
68 | 69 | | |
69 | 70 | | |
70 | 71 | | |
| 72 | + | |
| 73 | + | |
71 | 74 | | |
72 | 75 | | |
73 | 76 | | |
74 | 77 | | |
75 | | - | |
| 78 | + | |
76 | 79 | | |
77 | 80 | | |
78 | 81 | | |
| |||
86 | 89 | | |
87 | 90 | | |
88 | 91 | | |
89 | | - | |
90 | | - | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | | - | |
95 | | - | |
96 | | - | |
97 | | - | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | | - | |
104 | | - | |
105 | | - | |
| 92 | + | |
106 | 93 | | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
107 | 98 | | |
108 | | - | |
109 | 99 | | |
110 | 100 | | |
111 | 101 | | |
112 | 102 | | |
113 | 103 | | |
114 | | - | |
| 104 | + | |
| 105 | + | |
115 | 106 | | |
116 | 107 | | |
117 | 108 | | |
| |||
123 | 114 | | |
124 | 115 | | |
125 | 116 | | |
126 | | - | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
127 | 120 | | |
128 | 121 | | |
129 | 122 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
170 | 170 | | |
171 | 171 | | |
172 | 172 | | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
173 | 178 | | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
174 | 183 | | |
175 | 184 | | |
176 | 185 | | |
| |||
613 | 622 | | |
614 | 623 | | |
615 | 624 | | |
| 625 | + | |
616 | 626 | | |
617 | 627 | | |
618 | 628 | | |
619 | | - | |
620 | | - | |
| 629 | + | |
| 630 | + | |
| 631 | + | |
| 632 | + | |
| 633 | + | |
| 634 | + | |
| 635 | + | |
621 | 636 | | |
622 | 637 | | |
623 | 638 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
453 | 453 | | |
454 | 454 | | |
455 | 455 | | |
456 | | - | |
| 456 | + | |
457 | 457 | | |
458 | 458 | | |
459 | 459 | | |
| |||
735 | 735 | | |
736 | 736 | | |
737 | 737 | | |
| 738 | + | |
| 739 | + | |
| 740 | + | |
738 | 741 | | |
739 | 742 | | |
740 | 743 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1536 | 1536 | | |
1537 | 1537 | | |
1538 | 1538 | | |
1539 | | - | |
| 1539 | + | |
1540 | 1540 | | |
1541 | 1541 | | |
1542 | 1542 | | |
| |||
1545 | 1545 | | |
1546 | 1546 | | |
1547 | 1547 | | |
1548 | | - | |
| 1548 | + | |
| 1549 | + | |
| 1550 | + | |
1549 | 1551 | | |
1550 | 1552 | | |
1551 | 1553 | | |
| |||
1721 | 1723 | | |
1722 | 1724 | | |
1723 | 1725 | | |
| 1726 | + | |
| 1727 | + | |
1724 | 1728 | | |
1725 | 1729 | | |
1726 | 1730 | | |
1727 | | - | |
| 1731 | + | |
1728 | 1732 | | |
1729 | 1733 | | |
1730 | 1734 | | |
1731 | 1735 | | |
1732 | 1736 | | |
1733 | 1737 | | |
1734 | 1738 | | |
1735 | | - | |
| 1739 | + | |
1736 | 1740 | | |
1737 | 1741 | | |
1738 | 1742 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| 62 | + | |
| 63 | + | |
62 | 64 | | |
63 | 65 | | |
64 | 66 | | |
| |||
100 | 102 | | |
101 | 103 | | |
102 | 104 | | |
| 105 | + | |
| 106 | + | |
103 | 107 | | |
104 | 108 | | |
105 | 109 | | |
| |||
166 | 170 | | |
167 | 171 | | |
168 | 172 | | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
169 | 177 | | |
170 | 178 | | |
171 | 179 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
| 170 | + | |
| 171 | + | |
| 172 | + | |
| 173 | + | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
| 182 | + | |
| 183 | + | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
| 188 | + | |
| 189 | + | |
| 190 | + | |
| 191 | + | |
| 192 | + | |
| 193 | + | |
| 194 | + | |
| 195 | + | |
| 196 | + | |
| 197 | + | |
| 198 | + | |
| 199 | + | |
| 200 | + | |
| 201 | + | |
| 202 | + | |
| 203 | + | |
| 204 | + | |
| 205 | + | |
| 206 | + | |
| 207 | + | |
| 208 | + | |
| 209 | + | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
144 | 216 | | |
145 | 217 | | |
146 | 218 | | |
| |||
159 | 231 | | |
160 | 232 | | |
161 | 233 | | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
162 | 240 | | |
163 | 241 | | |
164 | 242 | | |
| |||
179 | 257 | | |
180 | 258 | | |
181 | 259 | | |
| 260 | + | |
| 261 | + | |
| 262 | + | |
| 263 | + | |
| 264 | + | |
| 265 | + | |
| 266 | + | |
182 | 267 | | |
183 | 268 | | |
184 | 269 | | |
| |||
0 commit comments