You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mxnet.apache.org by GitBox <gi...@apache.org> on 2021/01/08 08:32:10 UTC

[GitHub] [incubator-mxnet] Kh4L commented on issue #19731: USE_TENSORRT=1 not userfriendly

Kh4L commented on issue #19731:
URL: https://github.com/apache/incubator-mxnet/issues/19731#issuecomment-756623388


   Did you run this successfully:
   
   ```
        # Build ONNX 
        pushd . 
        echo "Installing ONNX." 
        cd 3rdparty/onnx-tensorrt/third_party/onnx 
        rm -rf build 
        mkdir -p build 
        cd build 
        cmake -DCMAKE_CXX_FLAGS=-I/usr/include/python${PYVER} -DBUILD_SHARED_LIBS=ON .. 
        make -j$(nproc) 
        export LIBRARY_PATH=`pwd`:`pwd`/onnx/:$LIBRARY_PATH 
        export CPLUS_INCLUDE_PATH=`pwd`:$CPLUS_INCLUDE_PATH 
        export CXXFLAGS=-I`pwd` 
     
        popd 
     
        # Build ONNX-TensorRT 
        export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib 
        export CPLUS_INCLUDE_PATH=${CPLUS_INCLUDE_PATH}:/usr/local/cuda-10.2/targets/x86_64-linux/include/ 
        pushd . 
        cd 3rdparty/onnx-tensorrt/ 
        mkdir -p build 
        cd build 
        cmake -DONNX_NAMESPACE=$ONNX_NAMESPACE .. 
        make -j$(nproc) 
        export LIBRARY_PATH=`pwd`:$LIBRARY_PATH 
        popd 
     
        mkdir -p /work/mxnet/lib/ 
        cp 3rdparty/onnx-tensorrt/third_party/onnx/build/*.so /work/mxnet/lib/ 
        cp -L 3rdparty/onnx-tensorrt/build/libnvonnxparser.so /work/mxnet/lib/
   ```
   
   If yes, what is the outputs of :
   ```
   ls 3rdparty/onnx-tensorrt/third_party/onnx/onnx
   ```
   and finally, can you verify if this path is part of `$LIBRARY_PATH`?


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@mxnet.apache.org
For additional commands, e-mail: issues-help@mxnet.apache.org