mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
[None][chore] Adding install_tensorrt.sh script to pip wheel (#8116)
Signed-off-by: Patrice Castonguay <55748270+pcastonguay@users.noreply.github.com>
This commit is contained in:
parent
ab433b7228
commit
08a47918cf
@ -836,6 +836,15 @@ def main(*,
|
||||
install_file(build_dir / "tensorrt_llm/executor_worker/executorWorker",
|
||||
bin_dir / "executorWorker")
|
||||
|
||||
scripts_dir = pkg_dir / "scripts"
|
||||
if scripts_dir.exists():
|
||||
clear_folder(scripts_dir)
|
||||
scripts_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
if not on_windows:
|
||||
install_file(project_dir / "docker/common/install_tensorrt.sh",
|
||||
scripts_dir / "install_tensorrt.sh")
|
||||
|
||||
if not cpp_only:
|
||||
|
||||
def get_binding_lib(subdirectory, name):
|
||||
|
||||
3
setup.py
3
setup.py
@ -108,7 +108,8 @@ else:
|
||||
'libs/nvshmem/License.txt', 'libs/nvshmem/nvshmem_bootstrap_uid.so.3',
|
||||
'libs/nvshmem/nvshmem_transport_ibgda.so.103', 'bindings.*.so',
|
||||
'deep_ep/LICENSE', 'deep_ep_cpp_tllm.*.so', "include/**/*",
|
||||
'deep_gemm/LICENSE', 'deep_gemm/include/**/*', 'deep_gemm_cpp_tllm.*.so'
|
||||
'deep_gemm/LICENSE', 'deep_gemm/include/**/*',
|
||||
'deep_gemm_cpp_tllm.*.so', 'scripts/install_tensorrt.sh'
|
||||
]
|
||||
|
||||
package_data += [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user