Install TensorRT_OSS Error make[2]: *** Waiting for unfinished jobs

Jetson Nano Jetpack 4.4.1 [L4T 32.4.4]

At the moment I’ m trying to install and use the TensorRT OSS repository. Unfortunatly I’m not able to install it and get errors during the make process. At the bottom of the post you can see the terminal output for the cmake and make command. Maybe someone has an idea.

Error
[ 47%] Linking CXX static library …/out/libnvinfer_plugin_static.a
[ 47%] Built target nvinfer_plugin_static
[ 47%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/InferPlugin.cpp.o
make[2]: *** No rule to make target ‘/usr/local/cuda-10.2/targets/aarch64-linux/lib/libcublas.so’, needed by ‘out/libnvinfer_plugin.so.7.1.3’. Stop.
make[2]: *** Waiting for unfinished jobs…
[ 47%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/__/samples/common/logger.cpp.o
CMakeFiles/Makefile2:306: recipe for target ‘plugin/CMakeFiles/nvinfer_plugin.dir/all’ failed
make[1]: *** [plugin/CMakeFiles/nvinfer_plugin.dir/all] Error 2
Makefile:151: recipe for target ‘all’ failed
make: *** [all] Error 2


As guide I used these links:


Next I will show my workflow to the Error.

git clone -b master 
https://github.com/nvidia/TensorRT TensorRT
cd TensorRT -b release/7.1
git submodule update --init --recursive
mkdir -p build && cd build 
cmake ..  -DCUBLASLT_LIB=/usr/local/cuda- 
10.2/targets/aarch64-linux/lib/libcublas.so  - DTRT_OUT_DIR=`pwd`/out  - 
DTRT_PLATFORM_ID=aarch64 -DCUDA_VERSION=10.2
 make -j$(nproc)

cmake

cmake … -DCUBLASLT_LIB=/usr/local/cuda-10.2/targets/aarch64-linux/lib/libcublas.so -DTRT_OUT_DIR=pwd/out -DTRT_PLATFORM_ID=aarch64 -DCUDA_VERSION=10.2
Building for TensorRT version: 7.1.3, library version: 7
– The CXX compiler identification is GNU 7.5.0
– The CUDA compiler identification is NVIDIA 10.2.89
– Check for working CXX compiler: /usr/bin/g++
– Check for working CXX compiler: /usr/bin/g++ – works
– Detecting CXX compiler ABI info
– Detecting CXX compiler ABI info - done
– Detecting CXX compile features
– Detecting CXX compile features - done
– Check for working CUDA compiler: /usr/local/cuda/bin/nvcc
– Check for working CUDA compiler: /usr/local/cuda/bin/nvcc – works
– Detecting CUDA compiler ABI info
– Detecting CUDA compiler ABI info - done
– Targeting TRT Platform: aarch64
– CUDA version set to 10.2
– cuDNN version set to 8.0
– Protobuf version set to 3.0.0
– Looking for C++ include pthread.h
– Looking for C++ include pthread.h - found
– Performing Test CMAKE_HAVE_LIBC_PTHREAD
– Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
– Looking for pthread_create in pthreads
– Looking for pthread_create in pthreads - not found
– Looking for pthread_create in pthread
– Looking for pthread_create in pthread - found
– Found Threads: TRUE
– Found PkgConfig: /usr/bin/pkg-config (found version “0.29.1”)
– Checking for one of the modules ‘zlib’
– Found CUDA: /usr/local/cuda (found suitable version “10.2”, minimum required is “10.2”)
– Setting up another Protobuf build for cross compilation targeting aarch64-Linux
– Using libprotobuf /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf_aarch64/lib/libprotobuf.a
– ========================= Importing and creating target nvinfer ==========================
– Looking for library nvinfer
– Library that was found /usr/lib/aarch64-linux-gnu/libnvinfer.so
– ==========================================================================================
– ========================= Importing and creating target nvuffparser ==========================
– Looking for library nvparsers
– Library that was found /usr/lib/aarch64-linux-gnu/libnvparsers.so
– ==========================================================================================
CMake Warning at CMakeLists.txt:157 (message):
Detected CUDA version is < 11.0. SM80 not supported.

  • GPU_ARCHS is not defined. Generating CUDA code for default SMs: 35;53;61;70;75;72
  • Protobuf proto/trtcaffe.proto → proto/trtcaffe.pb.cc proto/trtcaffe.pb.h
  • /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/parsers/caffe
  • The C compiler identification is GNU 7.5.0
  • Check for working C compiler: /usr/bin/cc
  • Check for working C compiler: /usr/bin/cc – works
  • Detecting C compiler ABI info
  • Detecting C compiler ABI info - done
  • Detecting C compile features
  • Detecting C compile features - done
  • Build type not set - defaulting to Release
    Generated: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/parsers/onnx/third_party/onnx/onnx/onnx_onnx2trt_onnx-ml.proto
    Generated: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/parsers/onnx/third_party/onnx/onnx/onnx-operators_onnx2trt_onnx-ml.proto

    – ******** Summary ********
    – CMake version : 3.15.7
    – CMake command : /home/nano-40068618/Downloads/cmake-3.15.7/bin/cmake
    – System : Linux
    – C++ compiler : /usr/bin/g++
    – C++ compiler version : 7.5.0
    – CXX flags : -Wno-deprecated-declarations -DBUILD_SYSTEM=cmake_oss -Wall -Wno-deprecated-declarations -Wno-unused-function -Wnon-virtual-dtor
    – Build type : Release
    – Compile definitions : _PROTOBUF_INSTALL_DIR=/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf;ONNX_NAMESPACE=onnx2trt_onnx
    – CMAKE_PREFIX_PATH :
    – CMAKE_INSTALL_PREFIX : /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/…
    – CMAKE_MODULE_PATH :

    – ONNX version : 1.6.0
    – ONNX NAMESPACE : onnx2trt_onnx
    – ONNX_BUILD_TESTS : OFF
    – ONNX_BUILD_BENCHMARKS : OFF
    – ONNX_USE_LITE_PROTO : OFF
    – ONNXIFI_DUMMY_BACKEND : OFF
    – ONNXIFI_ENABLE_EXT : OFF

    – Protobuf compiler :
    – Protobuf includes :
    – Protobuf libraries :
    – BUILD_ONNX_PYTHON : OFF
    – Found TensorRT headers at /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/include
    – Find TensorRT libs at /usr/lib/aarch64-linux-gnu/libnvinfer.so;/usr/lib/aarch64-linux-gnu/libnvinfer_plugin.so;/usr/lib/aarch64-linux-gnu/libmyelin.so
    – Found TENSORRT: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/include
    – Adding new sample: sample_algorithm_selector
    – - Parsers Used: caffe
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_char_rnn
    – - Parsers Used: uff;caffe;onnx
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_dynamic_reshape
    – - Parsers Used: onnx
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_fasterRCNN
    – - Parsers Used: caffe
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_googlenet
    – - Parsers Used: caffe
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_int8
    – - Parsers Used: caffe
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_int8_api
    – - Parsers Used: onnx
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_mlp
    – - Parsers Used: caffe
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_mnist
    – - Parsers Used: caffe
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_mnist_api
    – - Parsers Used: caffe
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_movielens
    – - Parsers Used: uff
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_movielens_mps
    – - Parsers Used: uff
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_nmt
    – - Parsers Used: none
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_onnx_mnist
    – - Parsers Used: onnx
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_plugin
    – - Parsers Used: caffe
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_reformat_free_io
    – - Parsers Used: caffe
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_ssd
    – - Parsers Used: caffe
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_uff_fasterRCNN
    – - Parsers Used: uff
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_uff_maskRCNN
    – - Parsers Used: uff
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_uff_mnist
    – - Parsers Used: uff
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_uff_plugin_v2_ext
    – - Parsers Used: uff
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Adding new sample: sample_uff_ssd
    – - Parsers Used: uff
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: sample_onnx_mnist_coord_conv_ac
    – - Parsers Used: onnx
    – - InferPlugin Used: ON
    – - Licensing: opensource
    – Adding new sample: trtexec
    – - Parsers Used: caffe;uff;onnx
    – - InferPlugin Used: OFF
    – - Licensing: opensource
    – Configuring done
    – Generating done
    – Build files have been written to: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build

Error during make

make -j$(nproc)
Scanning dependencies of target third_party.protobuf
Scanning dependencies of target third_party.protobuf_aarch64
Scanning dependencies of target nvinfer_plugin_static
Scanning dependencies of target nvinfer_plugin
[ 1%] Creating directories for ‘third_party.protobuf’
[ 2%] Creating directories for ‘third_party.protobuf_aarch64’
[ 2%] Performing download step (download, verify and extract) for ‘third_party.protobuf’
– Downloading…
dst=‘/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/src/protobuf-cpp-3.0.0.tar.gz’
timeout=‘none’
– Using src=‘https://github.com/google/protobuf/releases/download/v3.0.0/protobuf-cpp-3.0.0.tar.gz
[ 2%] Performing download step (download, verify and extract) for ‘third_party.protobuf_aarch64’
– Downloading…
dst=‘/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf_aarch64/src/protobuf-cpp-3.0.0.tar.gz’
timeout=‘none’
– Using src=‘https://github.com/google/protobuf/releases/download/v3.0.0/protobuf-cpp-3.0.0.tar.gz
– [download 100% complete]
– [download 100% complete]
– [download 0% complete]
– [download 0% complete]
– [download 1% complete]
– [download 2% complete]
– [download 1% complete]
– [download 3% complete]
– [download 4% complete]
– [download 2% complete]
– [download 3% complete]
– [download 4% complete]
– [download 5% complete]
– [download 6% complete]
– [download 7% complete]
– [download 8% complete]
– [download 9% complete]
– [download 5% complete]
– [download 6% complete]
– [download 7% complete]
– [download 8% complete]
– [download 10% complete]
– [download 11% complete]
– [download 12% complete]
– [download 13% complete]
– [download 14% complete]
– [download 15% complete]
– [download 16% complete]
– [download 17% complete]
– [download 9% complete]
– [download 18% complete]
– [download 10% complete]
– [download 11% complete]
– [download 12% complete]
– [download 13% complete]
– [download 14% complete]
– [download 15% complete]
– [download 16% complete]
– [download 17% complete]
– [download 19% complete]
– [download 20% complete]
– [download 21% complete]
– [download 22% complete]
– [download 23% complete]
– [download 24% complete]
– [download 25% complete]
– [download 26% complete]
– [download 27% complete]
– [download 28% complete]
– [download 29% complete]
– [download 30% complete]
– [download 31% complete]
– [download 32% complete]
– [download 33% complete]
– [download 34% complete]
– [download 35% complete]
– [download 18% complete]
– [download 36% complete]
– [download 19% complete]
– [download 20% complete]
– [download 21% complete]
– [download 22% complete]
– [download 23% complete]
– [download 24% complete]
– [download 25% complete]
– [download 26% complete]
– [download 27% complete]
– [download 28% complete]
– [download 29% complete]
– [download 30% complete]
– [download 31% complete]
– [download 32% complete]
– [download 33% complete]
– [download 34% complete]
– [download 37% complete]
– [download 35% complete]
– [download 38% complete]
– [download 39% complete]
– [download 40% complete]
– [download 41% complete]
– [download 42% complete]
– [download 43% complete]
– [download 44% complete]
– [download 45% complete]
– [download 46% complete]
– [download 47% complete]
– [download 48% complete]
– [download 49% complete]
– [download 50% complete]
– [download 51% complete]
– [download 52% complete]
– [download 53% complete]
– [download 54% complete]
– [download 55% complete]
– [download 56% complete]
– [download 57% complete]
– [download 58% complete]
– [download 59% complete]
– [download 60% complete]
– [download 61% complete]
– [download 62% complete]
– [download 63% complete]
– [download 64% complete]
– [download 65% complete]
– [download 66% complete]
– [download 67% complete]
– [download 68% complete]
– [download 69% complete]
– [download 70% complete]
– [download 71% complete]
– [download 36% complete]
– [download 72% complete]
– [download 73% complete]
– [download 37% complete]
– [download 38% complete]
– [download 39% complete]
– [download 40% complete]
– [download 41% complete]
– [download 42% complete]
– [download 43% complete]
– [download 44% complete]
– [download 45% complete]
– [download 46% complete]
– [download 47% complete]
– [download 48% complete]
– [download 49% complete]
– [download 50% complete]
– [download 51% complete]
– [download 52% complete]
– [download 53% complete]
– [download 54% complete]
– [download 55% complete]
– [download 56% complete]
– [download 57% complete]
– [download 58% complete]
– [download 59% complete]
– [download 60% complete]
– [download 61% complete]
– [download 62% complete]
– [download 63% complete]
– [download 64% complete]
– [download 65% complete]
– [download 66% complete]
– [download 67% complete]
– [download 68% complete]
– [download 69% complete]
– [download 70% complete]
– [download 71% complete]
– [download 74% complete]
– [download 75% complete]
– [download 76% complete]
– [download 77% complete]
– [download 78% complete]
– [download 79% complete]
– [download 80% complete]
– [download 81% complete]
– [download 82% complete]
– [download 83% complete]
– [download 84% complete]
– [download 85% complete]
– [download 86% complete]
– [download 87% complete]
– [download 88% complete]
– [download 89% complete]
– [download 90% complete]
– [download 91% complete]
– [download 92% complete]
– [download 93% complete]
– [download 94% complete]
– [download 95% complete]
– [download 96% complete]
– [download 97% complete]
– [download 98% complete]
– [download 99% complete]
– [download 100% complete]
– [download 72% complete]
– [download 73% complete]
– [download 74% complete]
– [download 75% complete]
– Downloading… done
– [download 76% complete]
– [download 77% complete]
– [download 78% complete]
– [download 79% complete]
– [download 80% complete]
– [download 81% complete]
– [download 82% complete]
– [download 83% complete]
– [download 84% complete]
– [download 85% complete]
– [download 86% complete]
– [download 87% complete]
– [download 88% complete]
– [download 89% complete]
– [download 90% complete]
– [download 91% complete]
– [download 92% complete]
– [download 93% complete]
– [download 94% complete]
– [download 95% complete]
– [download 96% complete]
– [download 97% complete]
– [download 98% complete]
– [download 99% complete]
– [download 100% complete]
– Downloading… done
– extracting…
src=‘/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf_aarch64/src/protobuf-cpp-3.0.0.tar.gz’
dst=‘/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf_aarch64/src/third_party.protobuf_aarch64’
– extracting… [tar xfz]
– extracting…
src=‘/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/src/protobuf-cpp-3.0.0.tar.gz’
dst=‘/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/src/third_party.protobuf’
– extracting… [tar xfz]
[ 2%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/nmsPlugin/nmsPlugin.cpp.o
– extracting… [analysis]
– extracting… [rename]
– extracting… [clean up]
– extracting… done
– extracting… [analysis]
– extracting… [rename]
– extracting… [clean up]
– extracting… done
[ 2%] No patch step for ‘third_party.protobuf’
[ 2%] No patch step for ‘third_party.protobuf_aarch64’
[ 3%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/nmsPlugin/nmsPlugin.cpp.o
[ 3%] No update step for ‘third_party.protobuf’
[ 3%] No update step for ‘third_party.protobuf_aarch64’
[ 4%] Performing configure step for ‘third_party.protobuf_aarch64’
[ 5%] Performing configure step for ‘third_party.protobuf’
– The C compiler identification is GNU 7.5.0
– The CXX compiler identification is GNU 7.5.0
– Check for working C compiler: /usr/bin/gcc
– Check for working C compiler: /usr/bin/gcc – works
– Detecting C compiler ABI info
– Detecting C compiler ABI info - done
– The C compiler identification is unknown
– Detecting C compile features
– Detecting C compile features - done
– Check for working CXX compiler: /usr/bin/g++
– The CXX compiler identification is GNU 7.5.0
CMake Error at CMakeLists.txt:12 (project):
No CMAKE_C_COMPILER could be found.

Tell CMake where to find the compiler by setting either the environment
variable “CC” or the CMake cache entry CMAKE_C_COMPILER to the full path to
the compiler, or to the compiler name if it is in the PATH.

– Check for working CXX compiler: /usr/bin/g++
[ 5%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/normalizePlugin/normalizePlugin.cpp.o
– Check for working CXX compiler: /usr/bin/g++ – works
– Detecting CXX compiler ABI info
[ 5%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/normalizePlugin/normalizePlugin.cpp.o
– Check for working CXX compiler: /usr/bin/g++ – works
– Detecting CXX compiler ABI info
– Detecting CXX compiler ABI info - done
– Detecting CXX compile features
– Detecting CXX compile features - done
– Looking for pthread.h
– Detecting CXX compiler ABI info - done
– Detecting CXX compile features
– Detecting CXX compile features - done
– Configuring incomplete, errors occurred!
See also “/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf_aarch64/src/third_party.protobuf_aarch64/CMakeFiles/CMakeOutput.log”.
See also “/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf_aarch64/src/third_party.protobuf_aarch64/CMakeFiles/CMakeError.log”.
CMakeFiles/third_party.protobuf_aarch64.dir/build.make:109: recipe for target ‘third_party.protobuf_aarch64/src/third_party.protobuf_aarch64-stamp/third_party.protobuf_aarch64-configure’ failed
make[2]: *** [third_party.protobuf_aarch64/src/third_party.protobuf_aarch64-stamp/third_party.protobuf_aarch64-configure] Error 1
CMakeFiles/Makefile2:167: recipe for target ‘CMakeFiles/third_party.protobuf_aarch64.dir/all’ failed
make[1]: *** [CMakeFiles/third_party.protobuf_aarch64.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs…
[ 5%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/priorBoxPlugin/priorBoxPlugin.cpp.o
– Looking for pthread.h - found
– Performing Test CMAKE_HAVE_LIBC_PTHREAD
– Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
– Looking for pthread_create in pthreads
– Looking for pthread_create in pthreads - not found
– Looking for pthread_create in pthread
– Looking for pthread_create in pthread - found
– Found Threads: TRUE
– Found ZLIB: /usr/lib/aarch64-linux-gnu/libz.so (found version “1.2.11”)
CMake Warning (dev) at install.cmake:41 (message):
The file
“/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/src/third_party.protobuf/src/google/protobuf/repeated_field_reflection.h”
is listed in
“/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/src/third_party.protobuf/cmake/cmake/extract_includes.bat.in”
but there not exists. The file will not be installed.
Call Stack (most recent call first):
CMakeLists.txt:169 (include)
This warning is for project developers. Use -Wno-dev to suppress it.

– Configuring done
[ 6%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/priorBoxPlugin/priorBoxPlugin.cpp.o
[ 6%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/reorgPlugin/reorgPlugin.cpp.o
– Generating done
– Build files have been written to: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/src/third_party.protobuf
[ 6%] Performing build step for ‘third_party.protobuf’
Scanning dependencies of target libprotobuf
[ 0%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
[ 1%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/arenastring.cc.o
[ 6%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/reorgPlugin/reorgPlugin.cpp.o
[ 1%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/extension_set.cc.o
[ 8%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/gridAnchorPlugin/gridAnchorPlugin.cpp.o
[ 8%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/gridAnchorPlugin/gridAnchorPlugin.cpp.o
[ 8%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/regionPlugin/regionPlugin.cpp.o
[ 8%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/regionPlugin/regionPlugin.cpp.o
[ 8%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/nvFasterRCNN/nvFasterRCNNPlugin.cpp.o
[ 9%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/nvFasterRCNN/nvFasterRCNNPlugin.cpp.o
[ 9%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/batchedNMSPlugin/batchedNMSPlugin.cpp.o
[ 2%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_util.cc.o
[ 2%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/coded_stream.cc.o
[ 3%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_stream.cc.o
[ 3%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o
[ 9%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/batchedNMSPlugin/batchedNMSPlugin.cpp.o
[ 4%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/message_lite.cc.o
[ 9%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/flattenConcat/flattenConcat.cpp.o
[ 9%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/cropAndResizePlugin/cropAndResizePlugin.cpp.o
[ 4%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/repeated_field.cc.o
[ 5%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o
[ 5%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o
[ 6%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/bytestream.cc.o
[ 10%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/proposalPlugin/proposalPlugin.cpp.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/flattenConcat/flattenConcat.cpp.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/cropAndResizePlugin/cropAndResizePlugin.cpp.o
[ 6%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/common.cc.o
[ 7%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/int128.cc.o
[ 7%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/once.cc.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/proposalPlugin/proposalPlugin.cpp.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/batchTilePlugin/batchTilePlugin.cpp.o
[ 8%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/status.cc.o
[ 8%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/statusor.cc.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/detectionLayerPlugin/detectionLayerPlugin.cpp.o
[ 9%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/stringpiece.cc.o
[ 9%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/stringprintf.cc.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/batchTilePlugin/batchTilePlugin.cpp.o
[ 10%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/structurally_valid.cc.o
[ 10%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/strutil.cc.o
[ 11%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/proposalLayerPlugin/proposalLayerPlugin.cpp.o
[ 12%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/pyramidROIAlignPlugin/pyramidROIAlignPlugin.cpp.o
[ 13%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/detectionLayerPlugin/detectionLayerPlugin.cpp.o
[ 11%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/time.cc.o
[ 13%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/generateDetectionPlugin/generateDetectionPlugin.cpp.o
[ 13%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/proposalLayerPlugin/proposalLayerPlugin.cpp.o
[ 11%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/wire_format_lite.cc.o
[ 13%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/pyramidROIAlignPlugin/pyramidROIAlignPlugin.cpp.o
[ 12%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/any.cc.o
[ 13%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/generateDetectionPlugin/generateDetectionPlugin.cpp.o
[ 13%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/multilevelProposeROI/multilevelProposeROIPlugin.cpp.o
[ 12%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/any.pb.cc.o
[ 14%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/multilevelProposeROI/multilevelProposeROIPlugin.cpp.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/multilevelProposeROI/multilevelProposeROIPlugin.cpp: In member function ‘virtual int nvinfer1::plugin::MultilevelProposeROI::enqueue(int, const void* const*, void**, void*, cudaStream_t)’:
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/multilevelProposeROI/multilevelProposeROIPlugin.cpp:407:44: warning: pointer of type ‘void ’ used in arithmetic [-Wpointer-arith]
mParam, proposal_ws, workspace + kernel_workspace_offset,
^~~~~~~~~~~~~~~
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/multilevelProposeROI/multilevelProposeROIPlugin.cpp:420:19: warning: pointer of type ‘void ’ used in arithmetic [-Wpointer-arith]
workspace + kernel_workspace_offset, ctopk_ws, reinterpret_cast<void
>(mDeviceScores),
^~~~~~~~~~~~~~~
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/multilevelProposeROI/multilevelProposeROIPlugin.cpp: In member function ‘virtual int nvinfer1::plugin::MultilevelProposeROI::enqueue(int, const void* const*, void**, void*, cudaStream_t)’:
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/multilevelProposeROI/multilevelProposeROIPlugin.cpp:407:44: warning: pointer of type ‘void ’ used in arithmetic [-Wpointer-arith]
mParam, proposal_ws, workspace + kernel_workspace_offset,
^~~~~~~~~~~~~~~
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/multilevelProposeROI/multilevelProposeROIPlugin.cpp:420:19: warning: pointer of type ‘void ’ used in arithmetic [-Wpointer-arith]
workspace + kernel_workspace_offset, ctopk_ws, reinterpret_cast<void
>(mDeviceScores),
^~~~~~~~~~~~~~~
[ 13%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/api.pb.cc.o
[ 14%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/multilevelCropAndResizePlugin/multilevelCropAndResizePlugin.cpp.o
[ 14%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/multilevelCropAndResizePlugin/multilevelCropAndResizePlugin.cpp.o
[ 14%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/resizeNearestPlugin/resizeNearestPlugin.cpp.o
[ 13%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/compiler/importer.cc.o
[ 14%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/specialSlicePlugin/specialSlicePlugin.cpp.o
[ 16%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/resizeNearestPlugin/resizeNearestPlugin.cpp.o
[ 16%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/specialSlicePlugin/specialSlicePlugin.cpp.o
[ 17%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/instanceNormalizationPlugin/instanceNormalizationPlugin.cpp.o
[ 14%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/compiler/parser.cc.o
[ 17%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/instanceNormalizationPlugin/instanceNormalizationPlugin.cpp.o
Scanning dependencies of target libprotobuf-lite
[ 15%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/arena.cc.o
[ 15%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/arenastring.cc.o
[ 17%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/groupNormalizationPlugin/groupNormalizationKernel.cu.o
[ 16%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/extension_set.cc.o
[ 17%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/groupNormalizationPlugin/groupNormalizationKernel.cu.o
[ 16%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/descriptor.cc.o
[ 16%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/generated_message_util.cc.o
[ 17%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/groupNormalizationPlugin/groupNormalizationPlugin.cpp.o
[ 18%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/groupNormalizationPlugin/groupNormalizationPlugin.cpp.o
[ 17%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/coded_stream.cc.o
[ 18%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/coordConvACPlugin/coordConvACPlugin.cpp.o
[ 18%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/coordConvACPlugin/coordConvACPlugin.cpp.o
[ 17%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/zero_copy_stream.cc.o
[ 18%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o
[ 19%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/embLayerNormPlugin/embLayerNormPlugin.cpp.o
[ 18%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/message_lite.cc.o
[ 19%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/embLayerNormPlugin/embLayerNormPlugin.cpp.o
[ 19%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/repeated_field.cc.o
[ 19%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc.o
[ 20%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc.o
[ 20%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/bytestream.cc.o
[ 21%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/descriptor.pb.cc.o
[ 22%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/common.cc.o
[ 19%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/fcPlugin/fcPlugin.cpp.o
[ 19%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/fcPlugin/fcPlugin.cpp.o
[ 22%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/int128.cc.o
[ 23%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/once.cc.o
[ 23%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/status.cc.o
[ 24%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/statusor.cc.o
[ 24%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/stringpiece.cc.o
[ 19%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/geluPlugin/geluPlugin.cpp.o
[ 20%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/geluPlugin/geluPlugin.cpp.o
[ 25%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/stringprintf.cc.o
[ 25%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/structurally_valid.cc.o
[ 25%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/descriptor_database.cc.o
[ 26%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/strutil.cc.o
[ 20%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_128_64_kernel.sm75.cpp.o
[ 20%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_128_64_kernel.sm75.cpp.o
[ 21%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_128_64_kernel.sm80.cpp.o
[ 21%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_128_64_kernel.sm80.cpp.o
[ 21%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_384_64_kernel.sm75.cpp.o
[ 21%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_384_64_kernel.sm75.cpp.o
[ 21%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_384_64_kernel.sm80.cpp.o
[ 22%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_fp16_384_64_kernel.sm80.cpp.o
[ 22%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_128_64_kernel.sm75.cpp.o
[ 22%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_128_64_kernel.sm75.cpp.o
[ 26%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/stubs/time.cc.o
[ 24%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_128_64_kernel.sm80.cpp.o
[ 24%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_128_64_kernel.sm80.cpp.o
[ 24%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_384_64_kernel.sm75.cpp.o
[ 24%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_384_64_kernel.sm75.cpp.o
[ 25%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_384_64_kernel.sm80.cpp.o
[ 25%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/fused_multihead_attention_int8_384_64_kernel.sm80.cpp.o
[ 25%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/qkvToContextPlugin.cpp.o
[ 25%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/qkvToContextPlugin.cpp.o
[ 27%] Building CXX object CMakeFiles/libprotobuf-lite.dir/src/google/protobuf/wire_format_lite.cc.o
[ 28%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/duration.pb.cc.o
[ 28%] Linking CXX static library libprotobuf-lite.a
[ 28%] Built target libprotobuf-lite
[ 28%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/dynamic_message.cc.o
[ 29%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/empty.pb.cc.o
[ 25%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/skipLayerNormPlugin/skipLayerNormPlugin.cpp.o
[ 26%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/skipLayerNormPlugin/skipLayerNormPlugin.cpp.o
[ 26%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/kernel.cpp.o
[ 29%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/extension_set_heavy.cc.o
[ 26%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/checkMacrosPlugin.cpp.o
[ 26%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/kernel.cpp.o
[ 26%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/cudaDriverWrapper.cpp.o
[ 27%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/nmsHelper.cpp.o
[ 30%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/field_mask.pb.cc.o
[ 28%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/common/checkMacrosPlugin.cpp.o
[ 28%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/common/cudaDriverWrapper.cpp.o
[ 28%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/reducedMathPlugin.cpp.o
[ 28%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/batchedNMSPlugin/batchedNMSInference.cu.o
[ 28%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/common/nmsHelper.cpp.o
[ 30%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/generated_message_reflection.cc.o
[ 31%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/gzip_stream.cc.o
[ 28%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/common/reducedMathPlugin.cpp.o
[ 29%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/batchedNMSPlugin/batchedNMSInference.cu.o
[ 29%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/batchedNMSPlugin/gatherNMSOutputs.cu.o
[ 32%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/printer.cc.o
[ 32%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/strtod.cc.o
[ 33%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/tokenizer.cc.o
[ 33%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/io/zero_copy_stream_impl.cc.o
[ 34%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/map_field.cc.o
[ 34%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/message.cc.o
[ 35%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/reflection_ops.cc.o
[ 29%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/batchedNMSPlugin/gatherNMSOutputs.cu.o
[ 29%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/coordConvACPlugin/coordConvACPlugin.cu.o
[ 35%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/service.cc.o
[ 31%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/coordConvACPlugin/coordConvACPlugin.cu.o
[ 36%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/source_context.pb.cc.o
[ 36%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/struct.pb.cc.o
[ 37%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/mathlimits.cc.o
[ 37%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/stubs/substitute.cc.o
[ 38%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/text_format.cc.o
[ 38%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/timestamp.pb.cc.o
[ 31%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/allClassNMS.cu.o
[ 32%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/bboxDeltas2Proposals.cu.o
[ 39%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/type.pb.cc.o
[ 32%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/allClassNMS.cu.o
[ 39%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/unknown_field_set.cc.o
[ 40%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/field_comparator.cc.o
[ 40%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/field_mask_util.cc.o
[ 41%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/datapiece.cc.o
[ 41%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/default_value_objectwriter.cc.o
[ 42%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/error_listener.cc.o
[ 42%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/field_mask_utility.cc.o
[ 32%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/common.cu.o
[ 43%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/json_escaping.cc.o
[ 43%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/json_objectwriter.cc.o
[ 44%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/json_stream_parser.cc.o
[ 44%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/object_writer.cc.o
[ 45%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/proto_writer.cc.o
[ 45%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/protostream_objectsource.cc.o
[ 46%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/protostream_objectwriter.cc.o
[ 32%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/cropAndResizeKernel.cu.o
[ 46%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/type_info.cc.o
[ 32%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/bboxDeltas2Proposals.cu.o
[ 47%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/type_info_test_helper.cc.o
[ 47%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/internal/utility.cc.o
[ 32%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/decodeBBoxes.cu.o
[ 33%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/detectionForward.cu.o
[ 48%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/json_util.cc.o
[ 48%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/message_differencer.cc.o
[ 49%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/time_util.cc.o
[ 49%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/util/type_resolver_util.cc.o
[ 33%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/common.cu.o
[ 50%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/wire_format.cc.o
[ 50%] Building CXX object CMakeFiles/libprotobuf.dir/src/google/protobuf/wrappers.pb.cc.o
[ 33%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/extractFgScores.cu.o
[ 33%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/gatherTopDetections.cu.o
[ 51%] Linking CXX static library libprotobuf.a
[ 51%] Built target libprotobuf
Scanning dependencies of target libprotoc
[ 52%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/code_generator.cc.o
[ 52%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/command_line_interface.cc.o
[ 53%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_enum.cc.o
[ 33%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/generateAnchors.cu.o
[ 34%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/gridAnchorLayer.cu.o
[ 35%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/cropAndResizeKernel.cu.o
[ 53%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o
[ 54%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_extension.cc.o
[ 54%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_field.cc.o
[ 35%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/decodeBBoxes.cu.o
[ 55%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_file.cc.o
[ 55%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_generator.cc.o
[ 56%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o
[ 35%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/maskRCNNKernels.cu.o
[ 35%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/nmsLayer.cu.o
[ 56%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o
[ 57%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_message.cc.o
[ 35%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/detectionForward.cu.o
[ 57%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o
[ 58%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o
[ 58%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_service.cc.o
[ 59%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o
[ 60%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o
[ 60%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_enum.cc.o
[ 61%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o
[ 35%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/extractFgScores.cu.o
[ 61%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o
[ 62%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_generator.cc.o
[ 62%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o
[ 63%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o
[ 63%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_message.cc.o
[ 64%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o
[ 64%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o
[ 36%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/gatherTopDetections.cu.o
[ 65%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o
[ 65%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o
[ 66%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o
[ 66%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o
[ 67%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o
[ 67%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o
[ 68%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_context.cc.o
[ 36%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/generateAnchors.cu.o
[ 68%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_doc_comment.cc.o
[ 69%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_enum.cc.o
[ 69%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_enum_field.cc.o
[ 70%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o
[ 70%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_enum_lite.cc.o
[ 71%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_extension.cc.o
[ 71%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_extension_lite.cc.o
[ 36%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/gridAnchorLayer.cu.o
[ 72%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_field.cc.o
[ 72%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_file.cc.o
[ 73%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_generator.cc.o
[ 73%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_generator_factory.cc.o
[ 74%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_helpers.cc.o
[ 74%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_lazy_message_field.cc.o
[ 75%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc.o
[ 36%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/maskRCNNKernels.cu.o
[ 75%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_map_field.cc.o
[ 76%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_map_field_lite.cc.o
[ 76%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_message.cc.o
[ 77%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_message_builder.cc.o
[ 77%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o
[ 78%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_message_field.cc.o
[ 78%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_message_field_lite.cc.o
[ 79%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_message_lite.cc.o
[ 80%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_name_resolver.cc.o
[ 80%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_primitive_field.cc.o
[ 81%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o
[ 81%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_service.cc.o
[ 82%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o
[ 82%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_string_field.cc.o
[ 83%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/java/java_string_field_lite.cc.o
[ 83%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_enum.cc.o
[ 36%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/normalizeLayer.cu.o
[ 84%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_enum_field.cc.o
[ 84%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_extension.cc.o
[ 85%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_field.cc.o
[ 85%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_file.cc.o
[ 86%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_generator.cc.o
[ 86%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_helpers.cc.o
[ 87%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_map_field.cc.o
[ 37%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/permuteData.cu.o
[ 87%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_message.cc.o
[ 88%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_message_field.cc.o
[ 88%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/javanano/javanano_primitive_field.cc.o
[ 89%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/js/js_generator.cc.o
[ 89%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o
[ 37%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/priorBoxLayer.cu.o
[ 90%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o
[ 90%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o
[ 91%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o
[ 91%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o
[ 92%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o
[ 92%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o
[ 37%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/proposalKernel.cu.o
[ 93%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 93%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 94%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 37%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/proposalsForward.cu.o
[ 94%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 95%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 95%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/plugin.cc.o
[ 96%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/plugin.pb.cc.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 96%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/python/python_generator.cc.o
[ 97%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/ruby/ruby_generator.cc.o
[ 39%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/regionForward.cu.o
[ 97%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/subprocess.cc.o
[ 98%] Building CXX object CMakeFiles/libprotoc.dir/src/google/protobuf/compiler/zip_writer.cc.o
[ 40%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/nmsLayer.cu.o
[ 98%] Linking CXX static library libprotoc.a
[ 98%] Built target libprotoc
Scanning dependencies of target protoc
[ 99%] Building CXX object CMakeFiles/protoc.dir/src/google/protobuf/compiler/main.cc.o
[100%] Linking CXX executable protoc
[100%] Built target protoc
[ 40%] Performing install step for ‘third_party.protobuf’
[ 39%] Built target libprotobuf
[ 51%] Built target libprotobuf-lite
[ 98%] Built target libprotoc
[100%] Built target protoc
Install the project…
– Install configuration: “”
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/libprotobuf-lite.a
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/libprotobuf.a
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/libprotoc.a
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/bin/protoc
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/any.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/any.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/api.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/arena.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/arenastring.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/code_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/command_line_interface.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/cpp/cpp_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/csharp/csharp_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/csharp/csharp_names.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/csharp/csharp_options.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/importer.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/java/java_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/java/java_names.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/javanano/javanano_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/js/js_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/objectivec/objectivec_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/objectivec/objectivec_helpers.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/parser.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/plugin.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/plugin.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/python/python_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/ruby/ruby_generator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/descriptor.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/descriptor.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/descriptor_database.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/duration.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/dynamic_message.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/empty.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/extension_set.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/field_mask.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/generated_enum_reflection.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/generated_enum_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/generated_message_reflection.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/generated_message_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/coded_stream.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/gzip_stream.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/printer.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/strtod.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/tokenizer.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/zero_copy_stream.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/zero_copy_stream_impl.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/io/zero_copy_stream_impl_lite.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map_entry.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map_entry_lite.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map_field.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map_field_inl.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map_field_lite.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/map_type_handler.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/message.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/message_lite.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/metadata.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/reflection.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/reflection_ops.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/repeated_field.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/service.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/source_context.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/struct.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomic_sequence_num.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_arm_gcc.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_arm_qnx.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_atomicword_compat.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_generic_gcc.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_macosx.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_mips_gcc.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_pnacl.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_power.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_solaris.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_tsan.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_x86_gcc.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/atomicops_internals_x86_msvc.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/bytestream.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/callback.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/casts.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/common.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/fastmem.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/hash.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/logging.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/macros.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/mutex.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/once.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/platform_macros.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/port.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/scoped_ptr.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/shared_ptr.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/singleton.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/status.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/stl_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/stringpiece.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/template_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/stubs/type_traits.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/text_format.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/timestamp.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/type.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/unknown_field_set.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/field_comparator.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/field_mask_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/json_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/message_differencer.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/time_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/type_resolver.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/util/type_resolver_util.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/wire_format.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/wire_format_lite.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/wire_format_lite_inl.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/wrappers.pb.h
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/descriptor.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/any.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/api.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/duration.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/empty.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/field_mask.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/source_context.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/struct.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/timestamp.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/type.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/wrappers.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/include/google/protobuf/compiler/plugin.proto
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf/protobuf-targets.cmake
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf/protobuf-targets-noconfig.cmake
– Up-to-date: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf/protobuf-config-version.cmake
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf/protobuf-config.cmake
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf/protobuf-options.cmake
– Installing: /home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/build/third_party.protobuf/lib/cmake/protobuf/protobuf-module.cmake
[ 40%] Completed ‘third_party.protobuf’
[ 40%] Built target third_party.protobuf
[ 40%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/normalizeLayer.cu.o
[ 40%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/reorgForward.cu.o
[ 40%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/permuteData.cu.o
[ 40%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/priorBoxLayer.cu.o
[ 40%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/roiPooling.cu.o
[ 41%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/proposalKernel.cu.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 41%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/proposalsForward.cu.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 41%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/rproiInferenceFused.cu.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/common/kernels/proposalKernel.cu(34): warning: variable “ALIGNMENT” was declared but never referenced

[ 41%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/regionForward.cu.o
[ 41%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/reorgForward.cu.o
[ 42%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/sortScoresPerClass.cu.o
[ 43%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/roiPooling.cu.o
[ 43%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/rproiInferenceFused.cu.o
[ 43%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/sortScoresPerClass.cu.o
[ 43%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/common/kernels/sortScoresPerImage.cu.o
[ 43%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/common/kernels/sortScoresPerImage.cu.o
[ 44%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/embLayerNormPlugin/embLayerNormKernel.cu.o
[ 44%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/geluPlugin/geluKernel.cu.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/embLayerNormPlugin/embLayerNormKernel.cu(51): warning: variable “warp_m” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/embLayerNormPlugin/embLayerNormKernel.cu(51): warning: variable “warp_m” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/embLayerNormPlugin/embLayerNormKernel.cu(51): warning: variable “warp_m” was declared but never referenced

[ 44%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/bertQKVToContextPlugin/qkvToContext.cu.o
[ 44%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin_static.dir/skipLayerNormPlugin/skipLayerNormKernel.cu.o
[ 44%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/embLayerNormPlugin/embLayerNormKernel.cu.o
/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/embLayerNormPlugin/embLayerNormKernel.cu(51): warning: variable “warp_m” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/embLayerNormPlugin/embLayerNormKernel.cu(51): warning: variable “warp_m” was declared but never referenced

/home/nano-40068618/Dokumente/Studienarbeit_Marvin_Frede/TensorRT/plugin/embLayerNormPlugin/embLayerNormKernel.cu(51): warning: variable “warp_m” was declared but never referenced

[ 45%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/InferPlugin.cpp.o
[ 45%] Building CXX object plugin/CMakeFiles/nvinfer_plugin_static.dir/_/samples/common/logger.cpp.o
[ 45%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/geluPlugin/geluKernel.cu.o
[ 45%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/bertQKVToContextPlugin/qkvToContext.cu.o
[ 47%] Building CUDA object plugin/CMakeFiles/nvinfer_plugin.dir/skipLayerNormPlugin/skipLayerNormKernel.cu.o
[ 47%] Linking CXX static library …/out/libnvinfer_plugin_static.a
[ 47%] Built target nvinfer_plugin_static
[ 47%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/InferPlugin.cpp.o
make[2]: *** No rule to make target ‘/usr/local/cuda-10.2/targets/aarch64-linux/lib/libcublas.so’, needed by ‘out/libnvinfer_plugin.so.7.1.3’. Stop.
make[2]: *** Waiting for unfinished jobs…
[ 47%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/__/samples/common/logger.cpp.o
CMakeFiles/Makefile2:306: recipe for target ‘plugin/CMakeFiles/nvinfer_plugin.dir/all’ failed
make[1]: *** [plugin/CMakeFiles/nvinfer_plugin.dir/all] Error 2
Makefile:151: recipe for target ‘all’ failed
make: *** [all] Error 2

Hi,

For JetPack 4.4 or newer, please try the following command.
We just confirmed that it works well on JetPack4.5.

$ git clone -b release/7.1 https://github.com/NVIDIA/TensorRT.git
$ cd TensorRT
$ git submodule update --init --recursive
$ mkdir -p build && cd build
$ cmake .. -DGPU_ARCHS="53"  -DTRT_LIB_DIR=/usr/lib/aarch64-linux-gnu/ -DCMAKE_C_COMPILER=/usr/bin/gcc
$ make -j$(nproc)

Thanks.

Thank you @AastaLLL for your advise. I had to upgrade your solution.

$ git clone -b release/7.1 GitHub - NVIDIA/TensorRT: TensorRT is a C++ library for high performance inference on NVIDIA GPUs and deep learning accelerators.
$ cd TensorRT
$ git submodule update --init --recursive
$ mkdir -p build && cd build
$ cmake … -DGPU_ARCHS=“53” -DTRT_LIB_DIR=/usr/lib/aarch64-linux-gnu/ -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CUDA_COMPILER=/usr/local/cuda/bin/nvcc
$ make -j$(nproc)

You advised helped me for JetPack4.4.1. I could install TensorRT_Oss and use the Plugins.
Than I wanted to reinstall everything from scratch on a new JetPack4.4.1 Image. I used the same steps as bevor and again get following error. I also get the Error on JetPack4.5.
I use cmake1.15.7 and install it with the .tar.gz file.

  • Which cmake version do you use (JetPack4.5 has cmake3.10.1 as standard but you need 1.13 at least)?

Error:
[ 37%] Linking CXX static library …/libnvinfer_plugin_static.a
[ 37%] Built target nvinfer_plugin_static
[ 37%] Building CXX object plugin/CMakeFiles/nvinfer_plugin.dir/__/samples/common/logger.cpp.o
[ 37%] Linking CXX shared library …/libnvinfer_plugin.so
[ 37%] Built target nvinfer_plugin
Makefile:151: recipe for target ‘all’ failed
make: *** [all] Error 2

Hi,

I use cmake 3.13.5 on JetPack4.5.

Thanks.

It is working with cmake 1.17.4 but it seems that it isn’t working with cmake 1.15.7.

Problem solved!

Good to know this.
Thanks for the feedback.