Skip to content

Commit 8d1972a

Browse files
committed
Merge branch 'main' into lluo/upgrade_from_2.10.dev_to2.11.dev
2 parents efc19e7 + 315e9d7 commit 8d1972a

File tree

167 files changed

+423
-370
lines changed

Some content is hidden

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

167 files changed

+423
-370
lines changed

.github/workflows/build-test-linux-aarch64-jetpack.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ jobs:
6565
post-script: packaging/post_build_script.sh
6666
smoke-test-script: packaging/smoke_test_script.sh
6767
package-name: torch_tensorrt
68-
name: Build Jetpack torch-tensorrt whl package
68+
display-name: Build Jetpack torch-tensorrt whl package
69+
name: ${{ matrix.display-name }}
6970
uses: ./.github/workflows/build_linux.yml
7071
with:
7172
repository: ${{ matrix.repository }}

.github/workflows/build-test-linux-aarch64.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ jobs:
6262
post-script: packaging/post_build_script.sh
6363
smoke-test-script: packaging/smoke_test_script.sh
6464
package-name: torch_tensorrt
65-
name: Build SBSA torch-tensorrt whl package
65+
display-name: Build SBSA torch-tensorrt whl package
66+
name: ${{ matrix.display-name }}
6667
uses: ./.github/workflows/build_linux.yml
6768
with:
6869
repository: ${{ matrix.repository }}

.github/workflows/build-test-linux-x86_64.yml

Lines changed: 30 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161
post-script: packaging/post_build_script.sh
6262
smoke-test-script: packaging/smoke_test_script.sh
6363
package-name: torch_tensorrt
64-
name: Build Linux x86_64 torch-tensorrt whl package
64+
display-name: Build Linux x86_64 torch-tensorrt whl package
65+
name: ${{ matrix.display-name }}
6566
uses: ./.github/workflows/build_linux.yml
6667
with:
6768
repository: ${{ matrix.repository }}
@@ -80,7 +81,7 @@ jobs:
8081
pip-install-torch-extra-args: "--extra-index-url https://pypi.org/simple"
8182

8283
L0-dynamo-converter-tests:
83-
name: L0 dynamo converter tests
84+
name: ${{ matrix.display-name }}
8485
needs: [filter-matrix, build]
8586
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
8687
strategy:
@@ -92,6 +93,7 @@ jobs:
9293
pre-script: packaging/pre_build_script.sh
9394
post-script: packaging/post_build_script.sh
9495
smoke-test-script: packaging/smoke_test_script.sh
96+
display-name: L0 dynamo converter tests
9597
uses: ./.github/workflows/linux-test.yml
9698
with:
9799
job-name: L0-dynamo-converter-tests
@@ -109,7 +111,7 @@ jobs:
109111
popd
110112
111113
L0-dynamo-core-tests:
112-
name: L0 dynamo core tests
114+
name: ${{ matrix.display-name }}
113115
needs: [filter-matrix, build]
114116
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
115117
strategy:
@@ -121,6 +123,7 @@ jobs:
121123
pre-script: packaging/pre_build_script.sh
122124
post-script: packaging/post_build_script.sh
123125
smoke-test-script: packaging/smoke_test_script.sh
126+
display-name: L0 dynamo core tests
124127
uses: ./.github/workflows/linux-test.yml
125128
with:
126129
job-name: L0-dynamo-core-tests
@@ -141,7 +144,7 @@ jobs:
141144
popd
142145
143146
L0-py-core-tests:
144-
name: L0 core python tests
147+
name: ${{ matrix.display-name }}
145148
needs: [filter-matrix, build]
146149
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
147150
strategy:
@@ -153,6 +156,7 @@ jobs:
153156
pre-script: packaging/pre_build_script.sh
154157
post-script: packaging/post_build_script.sh
155158
smoke-test-script: packaging/smoke_test_script.sh
159+
display-name: L0 core python tests
156160
uses: ./.github/workflows/linux-test.yml
157161
with:
158162
job-name: L0-py-core-tests
@@ -170,7 +174,7 @@ jobs:
170174
popd
171175
172176
L0-torchscript-tests:
173-
name: L0 torchscript tests
177+
name: ${{ matrix.display-name }}
174178
needs: [filter-matrix, build]
175179
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
176180
strategy:
@@ -182,6 +186,7 @@ jobs:
182186
pre-script: packaging/pre_build_script.sh
183187
post-script: packaging/post_build_script.sh
184188
smoke-test-script: packaging/smoke_test_script.sh
189+
display-name: L0 torchscript tests
185190
uses: ./.github/workflows/linux-test.yml
186191
with:
187192
job-name: L0-torchscript-tests
@@ -203,7 +208,7 @@ jobs:
203208
popd
204209
205210
L1-dynamo-core-tests:
206-
name: L1 dynamo core tests
211+
name: ${{ matrix.display-name }}
207212
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
208213
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
209214
strategy:
@@ -215,6 +220,7 @@ jobs:
215220
pre-script: packaging/pre_build_script.sh
216221
post-script: packaging/post_build_script.sh
217222
smoke-test-script: packaging/smoke_test_script.sh
223+
display-name: L1 dynamo core tests
218224
uses: ./.github/workflows/linux-test.yml
219225
with:
220226
job-name: L1-dynamo-core-tests
@@ -234,7 +240,7 @@ jobs:
234240
popd
235241
236242
L1-dynamo-compile-tests:
237-
name: L1 dynamo compile tests
243+
name: ${{ matrix.display-name }}
238244
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
239245
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
240246
strategy:
@@ -246,6 +252,7 @@ jobs:
246252
pre-script: packaging/pre_build_script.sh
247253
post-script: packaging/post_build_script.sh
248254
smoke-test-script: packaging/smoke_test_script.sh
255+
display-name: L1 dynamo compile tests
249256
uses: ./.github/workflows/linux-test.yml
250257
with:
251258
job-name: L1-dynamo-compile-tests
@@ -263,7 +270,7 @@ jobs:
263270
popd
264271
265272
L1-torch-compile-tests:
266-
name: L1 torch compile tests
273+
name: ${{ matrix.display-name }}
267274
needs: [filter-matrix, build, L0-dynamo-converter-tests, L0-dynamo-core-tests, L0-py-core-tests, L0-torchscript-tests]
268275
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
269276
strategy:
@@ -275,6 +282,7 @@ jobs:
275282
pre-script: packaging/pre_build_script.sh
276283
post-script: packaging/post_build_script.sh
277284
smoke-test-script: packaging/smoke_test_script.sh
285+
display-name: L1 torch compile tests
278286
uses: ./.github/workflows/linux-test.yml
279287
with:
280288
job-name: L1-torch-compile-tests
@@ -294,7 +302,7 @@ jobs:
294302
popd
295303
296304
L1-torchscript-tests:
297-
name: L1 torch script tests
305+
name: ${{ matrix.display-name }}
298306
needs: [filter-matrix, build, L0-dynamo-core-tests, L0-dynamo-converter-tests, L0-py-core-tests, L0-torchscript-tests]
299307
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
300308
strategy:
@@ -306,6 +314,7 @@ jobs:
306314
pre-script: packaging/pre_build_script.sh
307315
post-script: packaging/post_build_script.sh
308316
smoke-test-script: packaging/smoke_test_script.sh
317+
display-name: L1 torch script tests
309318
uses: ./.github/workflows/linux-test.yml
310319
with:
311320
job-name: L1-torchscript-tests
@@ -327,7 +336,7 @@ jobs:
327336
popd
328337
329338
L2-torch-compile-tests:
330-
name: L2 torch compile tests
339+
name: ${{ matrix.display-name }}
331340
needs: [filter-matrix, build, L1-torch-compile-tests, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torchscript-tests]
332341
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
333342
strategy:
@@ -339,6 +348,7 @@ jobs:
339348
pre-script: packaging/pre_build_script.sh
340349
post-script: packaging/post_build_script.sh
341350
smoke-test-script: packaging/smoke_test_script.sh
351+
display-name: L2 torch compile tests
342352
uses: ./.github/workflows/linux-test.yml
343353
with:
344354
job-name: L2-torch-compile-tests
@@ -357,7 +367,7 @@ jobs:
357367
popd
358368
359369
L2-dynamo-compile-tests:
360-
name: L2 dynamo compile tests
370+
name: ${{ matrix.display-name }}
361371
needs: [filter-matrix, build, L1-dynamo-compile-tests, L1-dynamo-core-tests, L1-torch-compile-tests, L1-torchscript-tests]
362372
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
363373
strategy:
@@ -369,6 +379,7 @@ jobs:
369379
pre-script: packaging/pre_build_script.sh
370380
post-script: packaging/post_build_script.sh
371381
smoke-test-script: packaging/smoke_test_script.sh
382+
display-name: L2 dynamo compile tests
372383
uses: ./.github/workflows/linux-test.yml
373384
with:
374385
job-name: L2-dynamo-compile-tests
@@ -387,7 +398,7 @@ jobs:
387398
popd
388399
389400
L2-dynamo-core-tests:
390-
name: L2 dynamo core tests
401+
name: ${{ matrix.display-name }}
391402
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
392403
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
393404
strategy:
@@ -399,6 +410,7 @@ jobs:
399410
pre-script: packaging/pre_build_script.sh
400411
post-script: packaging/post_build_script.sh
401412
smoke-test-script: packaging/smoke_test_script.sh
413+
display-name: L2 dynamo core tests
402414
uses: ./.github/workflows/linux-test.yml
403415
with:
404416
job-name: L2-dynamo-core-tests
@@ -416,7 +428,7 @@ jobs:
416428
popd
417429
418430
L2-dynamo-plugin-tests:
419-
name: L2 dynamo plugin tests
431+
name: ${{ matrix.display-name }}
420432
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
421433
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
422434
strategy:
@@ -428,6 +440,7 @@ jobs:
428440
pre-script: packaging/pre_build_script.sh
429441
post-script: packaging/post_build_script.sh
430442
smoke-test-script: packaging/smoke_test_script.sh
443+
display-name: L2 dynamo plugin tests
431444
uses: ./.github/workflows/linux-test.yml
432445
with:
433446
job-name: L2-dynamo-plugin-tests
@@ -448,7 +461,7 @@ jobs:
448461
popd
449462
450463
L2-torchscript-tests:
451-
name: L2 torch script tests
464+
name: ${{ matrix.display-name }}
452465
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
453466
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
454467
strategy:
@@ -460,6 +473,7 @@ jobs:
460473
pre-script: packaging/pre_build_script.sh
461474
post-script: packaging/post_build_script.sh
462475
smoke-test-script: packaging/smoke_test_script.sh
476+
display-name: L2 torch script tests
463477
uses: ./.github/workflows/linux-test.yml
464478
with:
465479
job-name: L2-torchscript-tests
@@ -481,7 +495,7 @@ jobs:
481495
popd
482496
483497
L2-dynamo-distributed-tests:
484-
name: L2 dynamo distributed tests
498+
name: ${{ matrix.display-name }}
485499
needs: [filter-matrix, build, L1-dynamo-core-tests, L1-dynamo-compile-tests, L1-torch-compile-tests, L1-torchscript-tests]
486500
if: ${{ (github.ref_name == 'main' || github.ref_name == 'nightly' || contains(github.event.pull_request.labels.*.name, 'Force All Tests[L0+L1+L2]')) && always() || success() }}
487501
strategy:
@@ -493,6 +507,7 @@ jobs:
493507
pre-script: packaging/pre_build_script.sh
494508
post-script: packaging/post_build_script.sh
495509
smoke-test-script: packaging/smoke_test_script.sh
510+
display-name: L2 dynamo distributed tests
496511
uses: ./.github/workflows/linux-test.yml
497512
with:
498513
job-name: L2-dynamo-distributed-tests

0 commit comments

Comments
 (0)