Skip to content

Commit 045722a

Browse files
committed
fixing typo
1 parent 7046c6d commit 045722a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

py/torch_tensorrt/_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger = 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

2121
def 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

0 commit comments

Comments
 (0)