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 15
15
logger = logging .getLogger (__name__ )
16
16
17
17
_WHL_CPYTHON_VERSION = "cp310"
18
- _TENSORRT_LLM_VERSION = "0.17.0.post1"
18
+ _TENSORRT_LLM_VERSION_ = "0.17.0.post1"
19
19
20
20
21
21
def sanitized_torch_version () -> Any :
@@ -132,7 +132,7 @@ def _extracted_dir_trtllm(platform_system: str, platform_machine: str) -> Path:
132
132
return (
133
133
_cache_root ()
134
134
/ "trtllm"
135
- / f"{ __TENSORRT_LLM_VERSION__ } _{ platform_system } _{ platform_machine } "
135
+ / f"{ _TENSORRT_LLM_VERSION_ } _{ platform_system } _{ platform_machine } "
136
136
)
137
137
138
138
@@ -149,7 +149,7 @@ def download_and_get_plugin_lib_path() -> Optional[str]:
149
149
platform_system = platform .system ().lower ()
150
150
platform_machine = platform .machine ().lower ()
151
151
wheel_filename = (
152
- f"tensorrt_llm-{ __TENSORRT_LLM_VERSION__ } -{ _WHL_CPYTHON_VERSION } -"
152
+ f"tensorrt_llm-{ _TENSORRT_LLM_VERSION_ } -{ _WHL_CPYTHON_VERSION } -"
153
153
f"{ _WHL_CPYTHON_VERSION } -{ platform_system } _{ platform_machine } .whl"
154
154
)
155
155
wheel_path = _cache_root () / wheel_filename
You can’t perform that action at this time.
0 commit comments