summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4e0f610fc39f4a96335a2006a91df7b255fa7d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# Maintainer: Daniel Bermond <dbermond@archlinux.org>

pkgbase=tensorrt
pkgname=(
    'tensorrt'
    'tensorrt-cross-builder-libs'
    'python-tensorrt')
pkgver=10.14.1.48
_cudaver=13.0
_protobuf_ver=3.20.1
_pybind11_ver=2.9.2
#_onnx_graphsurgeon_ver=0.5.9
_polygraphy_ver=0.49.27
_tensorflow_quantization_ver=0.2.0
pkgrel=4
pkgdesc='A platform for high-performance deep learning inference on NVIDIA hardware'
arch=('x86_64')
url='https://developer.nvidia.com/tensorrt/'
license=('Apache-2.0 AND LicenseRef-TensorRT-LICENSE-AGREEMENT')
makedepends=(
    'cmake'
    'cuda'
    'cudnn'
    'git'
    'nvidia-utils' # for satisfying pkgcheck
    'python'
    'python-build'
    'python-installer'
    #'python-ml-dtypes'
    #'python-onnx'
    'python-setuptools'
    'python-typing_extensions'
    'python-wheel')
source=("https://developer.nvidia.com/downloads/compute/machine-learning/tensorrt/${pkgver%.*}/tars/TensorRT-${pkgver}.Linux.${CARCH}-gnu.cuda-${_cudaver}.tar.gz"
        "git+https://github.com/NVIDIA/TensorRT.git#tag=v$(grep -oE '[0-9]+\.[0-9]+' <<< "$pkgver" | head -n1)"
        'git+https://github.com/protocolbuffers/protobuf.git'
        'cub-nvlabs'::'git+https://github.com/NVlabs/cub.git'
        'git+https://github.com/onnx/onnx-tensorrt.git'
        'git+https://github.com/onnx/onnx.git'
        'git+https://github.com/pybind/pybind11.git'
        "https://github.com/google/protobuf/releases/download/v${_protobuf_ver}/protobuf-cpp-${_protobuf_ver}.tar.gz"
        '010-tensorrt-use-local-protobuf-sources.patch'
        '020-tensorrt-fix-python.patch'
        'TensorRT-LICENSE-AGREEMENT.txt')
noextract=("protobuf-cpp-${_protobuf_ver}.tar.gz")
sha256sums=('c74af67db57f1a0d7e66bb01ab93f1ecda5facac491ca76e680d832f1e035ce6'
            '0c976d276abfde1b5de2b341907b696bc670c6235a2f04ed478e8a508f2b2fe9'
            'SKIP'
            'SKIP'
            'SKIP'
            'SKIP'
            'SKIP'
            'dddd73664306d7d895a95e1cf18925b31b52785e468727e4635b45edae5166f9'
            'ba94c0685216fe9566f7989df98b372e72a8da04b66d64380024107f2f7f4a8f'
            '85bb4af31efe157e3e5d13b26ee105b338ef868acb6c66a712f38b06b79ed71c'
            '64907f271b91655a28f3c9f3555a3c645b23d878f41063192a9d2a67f752205a')

prepare() {
    # tensorrt git submodules
    git -C TensorRT submodule init
    git -C TensorRT config --local submodule.parsers/onnx.url         "${srcdir}/onnx-tensorrt"
    git -C TensorRT config --local submodule.third_party/protobuf.url "${srcdir}/protobuf"
    git -C TensorRT config --local submodule.third_party/cub.url      "${srcdir}/cub-nvlabs"
    git -C TensorRT -c protocol.file.allow='always' submodule update
    
    # onnx-tensorrt git submodule
    git -C TensorRT/parsers/onnx submodule init
    git -C TensorRT/parsers/onnx config --local submodule.third_party/onnx.url "${srcdir}/onnx"
    git -C TensorRT/parsers/onnx -c protocol.file.allow='always' submodule update
    
    # onnx git submodules
    git -C TensorRT/parsers/onnx/third_party/onnx submodule init
    git -C TensorRT/parsers/onnx/third_party/onnx config --local submodule.third_party/pybind11.url  "${srcdir}/pybind11"
    git -C TensorRT/parsers/onnx/third_party/onnx -c protocol.file.allow='always' submodule update
    
    git -C pybind11 config --local advice.detachedHead false
    
    # protobuf
    mkdir -p build/third_party.protobuf/src
    cp -af "protobuf-cpp-${_protobuf_ver}.tar.gz" build/third_party.protobuf/src

    patch -d TensorRT -Np1 -i "${srcdir}/010-tensorrt-use-local-protobuf-sources.patch"
    patch -d TensorRT -Np1 -i "${srcdir}/020-tensorrt-fix-python.patch"
}

build() {
    local _cudaver_cmake
    local _cudnnver
    _cudaver_cmake="$(LC_ALL='C' pacman -Qi 'cuda' | awk '/^Version/ { print $3 }' | grep -oE '^([0-9]+\.){2}[0-9]')"
    _cudnnver="$(LC_ALL='C' pacman -Qi 'cudnn' | awk '/^Version/ { print $3 }' | grep -oE '^[0-9]+\.[0-9]+')"
    
    export CXXFLAGS+=' -ffat-lto-objects'
    cmake -B build -S TensorRT \
        -G 'Unix Makefiles' \
        -DBUILD_SAMPLES:BOOL='OFF' \
        -DCMAKE_BUILD_TYPE:STRING='None' \
        -DCMAKE_INSTALL_PREFIX:PATH='/usr' \
        -DCUDA_VERSION:STRING="$_cudaver_cmake" \
        -DCUDNN_VERSION:STRING="$_cudnnver" \
        -DGPU_ARCHS:STRING='75 80 86 87 89 90 100 103 110 120 121' \
        -DONNX_BUILD_PYTHON:BOOL='ON' \
        -DPROTOBUF_VERSION:STRING="$_protobuf_ver" \
        -DTRT_LIB_DIR:STRING="${srcdir}/TensorRT-${pkgver}/lib" \
        -Wno-dev
    cmake --build build
    
    # python bindings
    local _pyver
    _pyver="$(python -c 'import sys; print("%s.%s" %sys.version_info[:2])')"
    local -x TENSORRT_MODULE='tensorrt'
    local -x PYTHON_MAJOR_VERSION="${_pyver%%.*}"
    local -x PYTHON_MINOR_VERSION="${_pyver#*.}"
    local -x TARGET_ARCHITECTURE="$CARCH"
    local -x TRT_OSSPATH="${srcdir}/TensorRT"
    local -x CUDA_ROOT='/opt/cuda'
    local -x ROOT_PATH="${srcdir}/TensorRT"
    local -x EXT_PATH="$srcdir"
    local -x TRT_LIBPATH="${srcdir}/TensorRT-${pkgver}/lib"
    git -C pybind11 checkout "v${_pybind11_ver}"
    cd TensorRT/python
    ./build.sh
    mv build build_tensorrt
    TENSORRT_MODULE='tensorrt_dispatch'
    ./build.sh
    mv build build_tensorrt_dispatch
    TENSORRT_MODULE='tensorrt_lean'
    ./build.sh
    mv build build_tensorrt_lean
    
    # python tools
    local _dir
    for _dir in Polygraphy tensorflow-quantization #onnx-graphsurgeon
    do
        cd "${srcdir}/TensorRT/tools/${_dir}"
        python -m build --wheel --no-isolation
    done
}

_package_license() {
    install -D -m644 TensorRT/NOTICE -t "${1}/usr/share/licenses/${2}"
    install -D -m644 TensorRT-LICENSE-AGREEMENT.txt "${1}/usr/share/licenses/${2}/TensorRT-LICENSE-AGREEMENT"
    install -D -m644 "TensorRT-${pkgver}/doc/Acknowledgements.txt" "${1}/usr/share/licenses/${2}/ACKNOWLEDGEMENTS"
}

package_tensorrt() {
    depends=(
        'cuda'
        'cudnn'
        'gcc-libs'
        'glibc'
        'nvidia-utils')
    optdepends=(
        'tensorrt-cross-builder-libs: for cross building engine files')
    
    DESTDIR="$pkgdir" cmake --install build
    install -D -m755 "TensorRT-${pkgver}/bin"/* -t "${pkgdir}/usr/bin"
    install -D -m644 build/libnvinfer_plugin_static.a -t "${pkgdir}/usr/lib"
    install -D -m644 "TensorRT-${pkgver}/lib/libnvinfer_vc_plugin_static.a" -t "${pkgdir}/usr/lib"
    cp -dr --no-preserve='ownership' "TensorRT-${pkgver}/include" "${pkgdir}/usr"
    cp -dr --no-preserve='ownership' "TensorRT-${pkgver}/lib"/libnvinfer{,_dispatch,_lean}{.so*,_static.a} "${pkgdir}/usr/lib"
    
    local _arch
    for _arch in ptx sm{75,80,86,89,90,100,120}
    do
        install -D -m644 "TensorRT-${pkgver}/lib/libnvinfer_builder_resource_${_arch}.so.${pkgver%.*}" -t "${pkgdir}/usr/lib"
        ln -s "libnvinfer_builder_resource_${_arch}.so.${pkgver%.*}" "${pkgdir}/usr/lib/libnvinfer_builder_resource_${_arch}.so.${pkgver%%.*}"
        ln -s "libnvinfer_builder_resource_${_arch}.so.${pkgver%%.*}" "${pkgdir}/usr/lib/libnvinfer_builder_resource_${_arch}.so"
    done
    
    _package_license "$pkgdir" "$pkgname"
}

package_tensorrt-cross-builder-libs() {
    pkgdesc='Additional TensorRT libraries for cross building engine files'
    license=('LicenseRef-TensorRT-LICENSE-AGREEMENT')
    depends=(
        'gcc-libs'
        'glibc')
    options=('!strip')
    
    local _arch
    for _arch in ptx sm{75,80,86,89,90,120}
    do
        install -D -m644 "TensorRT-${pkgver}/lib/libnvinfer_builder_resource_win_${_arch}.so.${pkgver%.*}" -t "${pkgdir}/usr/lib"
        ln -s "libnvinfer_builder_resource_win_${_arch}.so.${pkgver%.*}" "${pkgdir}/usr/lib/libnvinfer_builder_resource_win_${_arch}.so.${pkgver%%.*}"
        ln -s "libnvinfer_builder_resource_win_${_arch}.so.${pkgver%%.*}" "${pkgdir}/usr/lib/libnvinfer_builder_resource_win_${_arch}.so"
    done
    
    _package_license "$pkgdir" "$pkgname"
}

package_python-tensorrt() {
    pkgdesc+=' (python bindings and tools)'
    license=("${license[0]} AND LicenseRef-Python-TensorRT-LICENSE-AGREEMENT")
    depends=(
        'gcc-libs'
        'glibc'
        'python'
        'python-numpy'
        'tensorrt')
    optdepends=(
        ##'python-colored: for onnx_graphsurgeon and polygraphy python modules'
        'python-colored: for polygraphy python module'
        #'python-ml-dtypes: for onnx_graphsurgeon python module'
        #'python-onnx: for onnx_graphsurgeon python module'
        #'python-onnxruntime: for onnx_graphsurgeon python module'
        'python-protobuf: for polygraphy python modules'
        'python-tensorflow-cuda: for polygraphy and tensorflow-quantization python modules'
        'python-tf2onnx: for tensorflow-quantization python module')
    provides=(
        #"python-onnx-graphsurgeon=${_onnx_graphsurgeon_ver}"
        "python-polygraphy=${_polygraphy_ver}"
        "python-tensorflow-quantization=${_tensorflow_quantization_ver}")
    
    local _dir
    for _dir in tensorrt{,_dispatch,_lean}
    do
        python -m installer --destdir="$pkgdir" "TensorRT/python/build_${_dir}/bindings_wheel/dist"/*.whl
    done
    
    for _dir in Polygraphy tensorflow-quantization #onnx-graphsurgeon
    do
        python -m installer --destdir="$pkgdir" "TensorRT/tools/${_dir}/dist"/*.whl
    done
    
    _package_license "$pkgdir" "$pkgname"
    
    local _sitepkgs
    _sitepkgs="$(python -c 'import site; print(site.getsitepackages()[0])')"
    ln -sr "${pkgdir}${_sitepkgs}/tensorrt-${pkgver%.*}.dist-info/licenses/LICENSE.txt" \
        "${pkgdir}/usr/share/licenses/${pkgname}/Python-TensorRT-LICENSE-AGREEMENT"
}