Please provide complete information as applicable to your setup.
Follow up of the following thread: DeepStream 7.1 docker python GazeNet pipeline - #4 by clemens.richter
• Hardware Platform (Jetson / GPU)
Jetson AGX Orin
• DeepStream Version
Container: nvcr.io/nvidia/deepstream:7.0-triton-multiarch
• JetPack Version (valid for Jetson only)
see : Container: nvcr.io/nvidia/deepstream:7.0-triton-multiarch
• TensorRT Version
see: Container: nvcr.io/nvidia/deepstream:7.0-triton-multiarch
• NVIDIA GPU Driver Version (valid for GPU only)
see: Container: nvcr.io/nvidia/deepstream:7.0-triton-multiarch
• Issue Type( questions, new requirements, bugs)
Bug
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
I tried setting up the gaze demo the following way:
- Created a docker container with DeepStream 7.0 installed:
Dockerfile:
FROM nvcr.io/nvidia/deepstream:7.0-triton-multiarch
WORKDIR /home - Cloned the corresponding branch of deepstream_tao_apps repo (GitHub - NVIDIA-AI-IOT/deepstream_tao_apps at release/tao5.3_ds7.0ga) inside the container.
- Followed “Build" from README (GitHub - NVIDIA-AI-IOT/deepstream_tao_apps at release/tao5.3_ds7.0ga)
Running make gives the folowing error:
make -C post_processor
make[1]: Entering directory '/home/deepstream_tao_apps/post_processor'
g++ -o libnvds_infercustomparser_tao.so nvdsinfer_custombboxparser_tao.cpp -I/opt/nvidia/deepstream/deepstream-7.0/sources/includes -I/usr/local/cuda-12.2/include -Wall -std=c++11 -shared -fPIC -Wl,--start-group -lnvinfer -L/usr/local/cuda-12.2/lib64 -lcudart -lcublas -Wl,--end-group
nvdsinfer_custombboxparser_tao.cpp: In lambda function:
nvdsinfer_custombboxparser_tao.cpp:371:90: error: 'INT64' was not declared in this scope
371 | if ((layer.dataType == FLOAT || layer.dataType == INT32 || layer.dataType == INT64) &&
| ^~~~~
make[1]: *** [Makefile:49: libnvds_infercustomparser_tao.so] Error 1
make[1]: Leaving directory '/home/deepstream_tao_apps/post_processor'
make: *** [Makefile:24: all] Error 2