File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1515jetpack_cuda_versions : List [str ] = ["cu126" ]
1616# rtx 1.2 currently only supports cu129 and cu130
1717rtx_cuda_versions : List [str ] = ["cu129" , "cu130" ]
18+ # trt 10.14.1 currently only supports cu129 and cu130
19+ trt_cuda_versions : List [str ] = ["cu129" , "cu130" ]
1820
1921jetpack_container_image : str = "nvcr.io/nvidia/l4t-jetpack:r36.4.0"
2022sbsa_container_image : str = "quay.io/pypa/manylinux_2_39_aarch64"
@@ -55,9 +57,11 @@ def filter_matrix_item(
5557 return False
5658 else :
5759 if use_rtx :
58- if item ["desired_cuda" ] in rtx_cuda_versions :
59- return True
60- return False
60+ if item ["desired_cuda" ] not in rtx_cuda_versions :
61+ return False
62+ else :
63+ if item ["desired_cuda" ] not in trt_cuda_versions :
64+ return False
6165 if item ["gpu_arch_type" ] == "cuda-aarch64" :
6266 # pytorch image:pytorch/manylinuxaarch64-builder:cuda12.8 comes with glibc2.28
6367 # however, TensorRT requires glibc2.31 on aarch64 platform
Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ def test_resnet18_half(ir):
426426
427427@pytest .mark .unit
428428@unittest .skipIf (
429- torch_trt .ENABLED_FEATURES .tensorrt_rtx ,
429+ torchtrt .ENABLED_FEATURES .tensorrt_rtx ,
430430 "tensorrt_rtx does not support bfloat16" ,
431431)
432432def test_cosmos_true_div (ir ):
You can’t perform that action at this time.
0 commit comments