Skip to content

Commit 66f43e6

Browse files
committed
test
1 parent 23494ae commit 66f43e6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/install-tensorrt-rtx.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@ install_tensorrt_rtx() {
3838
pip install TensorRT-RTX-${TRT_RTX_VERSION}/python/tensorrt_rtx-${TRT_RTX_VERSION}-${CPYTHON_TAG}-none-linux_x86_64.whl
3939
fi
4040
fi
41-
# clean up the downloaded files
41+
# clean up the downloaded rtx tarball
4242
rm tensorrt-rtx*.tar.gz
43-
rm -rf TensorRT-RTX-${TRT_RTX_VERSION}
4443
else
4544
echo "It is the standard tensorrt build, skip install tensorrt-rtx"
4645
fi

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,8 @@ def get_requirements():
758758
]
759759
else:
760760
requirements = requirements + [
761-
"tensorrt>=10.14.0,<10.15.0",
761+
# directly use tensorrt>=10.14.0,<10.15.0 in cu12* env, it will pull both tensorrt_cu12 and tensorrt_cu13
762+
# which will cause the conflict due to cuda-toolkit 13 is also pulled in, so we need to specify tensorrt_cu12 or tensorrt_cu13 here
762763
f"{tensorrt_prefix}>=10.14.0,<10.15.0",
763764
f"{tensorrt_prefix}-bindings>=10.14.0,<10.15.0",
764765
f"{tensorrt_prefix}-libs>=10.14.0,<10.15.0",

0 commit comments

Comments
 (0)