Files
nvidia--tensorrt/python/packaging/frontend_sdist/CMakeLists.txt
T
wehub-resource-sync c8a779b1bb
Docker Image CI / build-ubuntu2004 (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:36:55 +08:00

92 lines
3.5 KiB
CMake

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 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.
# Adding a custom target to the all target requires passing the "ALL" keyword to the initial call.
# We use this variable so we can conditionally add the keyword based on the build options.
if(${TRT_BUILD_PYTHON_STANDALONE_WHEELS})
set(ENABLE_ALL "ALL")
else()
set(ENABLE_ALL "")
endif()
add_custom_target(tensorrt_frontend_sdist ${ENABLE_ALL})
# \brief Creates a target named tensorrt_frontend_sdist_${moduleName} which will build the Frontend SDist for that module.
#
# \param moduleName The module name to create the frontend for. One of "tensorrt", "tensorrt_dispatch", or "tensorrt_lean".
function(buildFrontendWheel moduleName)
set(filesTarget trt_wheel_files_frontend_${moduleName})
set(wheelTemplateFiles
tensorrt/__init__.py
tensorrt/plugin/__init__.py
tensorrt/plugin/_lib.py
tensorrt/plugin/_autotune.py
tensorrt/plugin/_export.py
tensorrt/plugin/_plugin_class.py
tensorrt/plugin/_tensor.py
tensorrt/plugin/_top_level.py
tensorrt/plugin/_utils.py
tensorrt/plugin/_validate.py
LICENSE.txt
pyproject.toml
)
# Expands all template files for the frontend for the target module. The python version is unused (and set to 0).
# File paths starting with "tensorrt/" are expanded into "${moduleName}/".
processWheelTemplates(frontend ${moduleName} 0 ${wheelTemplateFiles})
# Creates a new custom target, and makes trt_standalone_wheel_files depend on the new target.
add_custom_target(${filesTarget} DEPENDS ${generatedWheelFiles})
# Define the output directory for the wheel
set(sdistOutDir ${TRT_WHEEL_OUTPUT_DIR}/frontend)
set(sdistOutputFile ${sdistOutDir}/${moduleName}_cu${CUDAToolkit_VERSION_MAJOR}-${TensorRT_PACKAGE_VERSION}.tar.gz)
# Add a custom command to build the sdist using PEP 517 compliant build frontend.
add_custom_command(
OUTPUT ${sdistOutputFile}
COMMAND ${CMAKE_COMMAND} -E env ${TRT_PACKAGING_ENV}
${Python3_EXECUTABLE} -m build --sdist --no-isolation --config-setting=--quiet --outdir ${sdistOutDir}
WORKING_DIRECTORY ${generatedFileOutDir}
DEPENDS ${filesTarget} trt_packaging_requirements_installed
VERBATIM
)
set(sdistTarget tensorrt_frontend_sdist_${moduleName})
# Add a custom target for the wheel
add_custom_target(
${sdistTarget}
${ENABLE_ALL}
DEPENDS ${sdistOutputFile}
)
add_dependencies(tensorrt_frontend_sdist ${sdistTarget})
# Standalone wheels are only published to the internal tarfile as they are released separately.
install(FILES
${sdistOutputFile}
DESTINATION python_standalone
COMPONENT internal
OPTIONAL
)
endfunction()
foreach(moduleName IN LISTS TRT_PYTHON_MODULE_NAMES)
buildFrontendWheel(${moduleName})
endforeach()
add_dependencies(tensorrt_python_wheels tensorrt_frontend_sdist)