We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a028601 commit 226ed04Copy full SHA for 226ed04
py/torch_tensorrt/_utils.py
@@ -81,6 +81,7 @@ def is_platform_supported_for_trtllm() -> bool:
81
Unsupported:
82
- Windows platforms
83
- Jetson/Orin/Xavier (aarch64 architecture + 'tegra' in platform release)
84
+ - Thor devices
85
- CUDA 13 not supported
86
"""
87
system = platform.system().lower()
@@ -110,7 +111,7 @@ def is_platform_supported_for_trtllm() -> bool:
110
111
major, minor = map(int, cuda_version.split("."))
112
if major != 12:
113
logger.error(
- "CUDA 13 is not supported for TRT-LLM plugins. Please install pytorch with CUDA 12.x support"
114
+ "CUDA 13 is not currently supported for TRT-LLM plugins. Please install pytorch with CUDA 12.x support"
115
)
116
return False
117
0 commit comments