File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1515logger = logging .getLogger (__name__ )
1616
1717_WHL_CPYTHON_VERSION = "cp310"
18- _TENSORRT_LLM_VERSION = "0.17.0.post1"
18+ _TENSORRT_LLM_VERSION_ = "0.17.0.post1"
1919
2020
2121def sanitized_torch_version () -> Any :
@@ -132,7 +132,7 @@ def _extracted_dir_trtllm(platform_system: str, platform_machine: str) -> Path:
132132 return (
133133 _cache_root ()
134134 / "trtllm"
135- / f"{ __TENSORRT_LLM_VERSION__ } _{ platform_system } _{ platform_machine } "
135+ / f"{ _TENSORRT_LLM_VERSION_ } _{ platform_system } _{ platform_machine } "
136136 )
137137
138138
@@ -149,7 +149,7 @@ def download_and_get_plugin_lib_path() -> Optional[str]:
149149 platform_system = platform .system ().lower ()
150150 platform_machine = platform .machine ().lower ()
151151 wheel_filename = (
152- f"tensorrt_llm-{ __TENSORRT_LLM_VERSION__ } -{ _WHL_CPYTHON_VERSION } -"
152+ f"tensorrt_llm-{ _TENSORRT_LLM_VERSION_ } -{ _WHL_CPYTHON_VERSION } -"
153153 f"{ _WHL_CPYTHON_VERSION } -{ platform_system } _{ platform_machine } .whl"
154154 )
155155 wheel_path = _cache_root () / wheel_filename
You can’t perform that action at this time.
0 commit comments