TensorRT-LLMs/scripts/get_wheel_from_package.py
Zhanrui Sun c3729dbd7d
infra: [TRTLLM-5873] Use build stage wheels to speed up docker release image build (#4939)
Signed-off-by: ZhanruiSunCh <184402041+ZhanruiSunCh@users.noreply.github.com>
2025-07-29 12:54:38 -04:00

113 lines
3.7 KiB
Python

#!/usr/bin/env python3
# SPDX-FileCopyrightText: Copyright (c) 2022-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import glob
import os
import shutil
import subprocess
import time
from argparse import ArgumentParser
from pathlib import Path
def get_project_dir():
return Path(__file__).parent.resolve().parent
def add_arguments(parser: ArgumentParser):
parser.add_argument("--arch",
"-a",
required=True,
help="Architecture of the built package")
parser.add_argument("--artifact_path",
"-u",
required=True,
help="the path of the built package")
parser.add_argument("--timeout",
"-t",
type=int,
default=60,
help="Timeout in minutes")
def get_wheel_from_package(arch, artifact_path, timeout):
if arch == "x86_64":
tarfile_name = "TensorRT-LLM.tar.gz"
else:
tarfile_name = "TensorRT-LLM-GH200.tar.gz"
tarfile_link = f"https://urm.nvidia.com/artifactory/{artifact_path}/{tarfile_name}"
for attempt in range(timeout):
try:
subprocess.run(["wget", "-nv", tarfile_link], check=True)
print(f"Tarfile is available at {tarfile_link}")
break
except Exception:
if attempt == timeout - 1:
raise TimeoutError(
f"Failed to download file after {timeout} attempts: {tarfile_link}"
)
print(
f"Tarfile not ready yet, waiting 60 seconds... (attempt {attempt + 1}/{timeout})"
)
time.sleep(60)
llm_root = get_project_dir()
tmp_dir = llm_root / "tmp"
tmp_dir.mkdir(parents=True, exist_ok=True)
subprocess.run(["tar", "-zxf", tarfile_name, "-C",
str(tmp_dir)],
check=True)
tmp_dir = tmp_dir / "TensorRT-LLM"
build_dir = llm_root / "build"
build_dir.mkdir(parents=True, exist_ok=True)
benchmarks_dir = llm_root / "cpp" / "build" / "benchmarks"
benchmarks_dir.mkdir(parents=True, exist_ok=True)
wheel_files = glob.glob(str(tmp_dir / "tensorrt_llm*.whl"))
for wheel_file in wheel_files:
shutil.move(wheel_file, str(build_dir))
print(f"Moved wheel file: {wheel_file} -> {build_dir}")
benchmark_files = [
"bertBenchmark", "gptManagerBenchmark", "disaggServerBenchmark"
]
for benchmark in benchmark_files:
src_path = tmp_dir / "benchmarks" / "cpp" / benchmark
if src_path.exists():
dst_path = benchmarks_dir / benchmark
shutil.copy2(src_path, dst_path)
print(f"Copied benchmark file: {src_path} -> {dst_path}")
else:
print(f"Warning: Benchmark file not found: {src_path}")
shutil.rmtree(tmp_dir)
if os.path.exists(tarfile_name):
os.remove(tarfile_name)
if __name__ == "__main__":
parser = ArgumentParser()
add_arguments(parser)
args = parser.parse_args()
get_wheel_from_package(**vars(args))