How to run the mini_pipeline sample on DRIVE AGX Orin?

Please provide the following info (tick the boxes after creating this topic):
Software Version
DRIVE OS 6.0.10.0
DRIVE OS 6.0.8.1
DRIVE OS 6.0.6
DRIVE OS 6.0.5
DRIVE OS 6.0.4 (rev. 1)
DRIVE OS 6.0.4 SDK
other

Target Operating System
Linux
QNX
other

Hardware Platform
DRIVE AGX Orin Developer Kit (940-63710-0010-300)
DRIVE AGX Orin Developer Kit (940-63710-0010-200)
DRIVE AGX Orin Developer Kit (940-63710-0010-100)
DRIVE AGX Orin Developer Kit (940-63710-0010-D00)
DRIVE AGX Orin Developer Kit (940-63710-0010-C00)
DRIVE AGX Orin Developer Kit (not sure its number)
other

SDK Manager Version
2.1.0
other

Host Machine Version
native Ubuntu Linux 20.04 Host installed with SDK Manager
native Ubuntu Linux 20.04 Host installed with DRIVE OS Docker Containers
native Ubuntu Linux 18.04 Host installed with DRIVE OS Docker Containers
other

Issue Description
I would like to make the following mini pipeline sample to run on the Drive AGX Orin device:

I followed the official source to cross compile source: DriveWorks SDK Reference: Cross-Compiling for NVIDIA DRIVE OS Linux
Running the exact commands inside the docker

# Open docker:
sudo docker run -it --privileged --net=host \
  -v /dev/bus/usb:/dev/bus/usb \
  -v ${WORKSPACE}:/home/nvidia/nvworkspace \
  nvcr.io/drive/driveos-sdk/drive-agx-orin-linux-aarch64-sdk-build-x86:latest

# Create folder
mkdir -p /home/nvidia/nvworkspace/build-aarch64-linux-gnu
cd /home/nvidia/nvworkspace/build-aarch64-linux-gnu
# Prepare build
cmake -B /home/nvidia/nvworkspace/build-aarch64-linux-gnu \
  -DCMAKE_BUILD_TYPE=Release \
  -DCMAKE_TOOLCHAIN_FILE=/usr/local/driveworks/samples/cmake/Toolchain-V5L.cmake \
  -DVIBRANTE_PDK=/drive/drive-linux \
  -S /usr/local/driveworks/samples

# Build minipiepline_nodes
make minipipeline_nodes
# Create directory via docker that is mapped on /home/reds/cross-compiled/minipipeline
mkdir -p /home/nvidia/nvworkspace/cross-compiled/minipipeline 
# Copy compiled files from the docker
cp /home/nvidia/nvworkspace/build-aarch64-linux-gnu/src/minipipeline/libminipipeline_nodes.so /home/nvidia/nvworkspace/cross-compiled/minipipeline/
# Copy run_mini_pipeline.sh
cp /usr/local/driveworks-5.20/bin/run_mini_pipeline.sh /home/nvidia/nvworkspace/cross-compiled/minipipeline/

# Copy apps folder for minipipeline to the target Drive AGX Orin:
scp -r /usr/local/driveworks/apps reds@10.192.22.212:/home/reds/
sudo mv /home/reds/apps /usr/local/driveworks/apps

# copy dataset folder to the target Drive AGX Orin:
scp -r /usr/local/driveworks/data/samples/minipipeline/dataset reds@10.192.22.212:/home/reds/
sudo mkdir -p /usr/local/driveworks/data/samples/minipipeline
sudo mv /home/reds/dataset /usr/local/driveworks/data/samples/minipipeline/

# Modify limit for msg_max
sudo sed -i '$ a fs.mqueue.msg_max = 4096' /etc/sysctl.conf
sudo sysctl -p

# Modify limit for network stack
sudo sed -i '$ a net.core.wmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_default = 16777216' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_wmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_rmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sysctl -p
# Run ./run_mini_pipeline.sh

reds@tegra-ubuntu:~/cross-compiled/minipipeline$ ./run_mini_pipeline.sh 
20250709_163816
20250709_163816
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :0
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 64
drwxr-xr-x. 6 reds reds  4096 Jul  8 11:06 .
drwxr-xr-x. 5 reds reds  4096 Jul  8 10:33 ..
drwxrwxr-x. 2 reds reds  4096 Jul  9 16:38 LogFolder
-r-xr-xr-x. 1 reds reds 26715 Jul  8 10:33 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10547 Jul  8 10:33 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul  8 10:33 applications
drwxr-xr-x. 2 reds reds  4096 Jul  8 10:33 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul  8 10:33 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1

# Nothing happen ...

What do I miss ? What do I do wrong ?

Error String
Mainly the issue is that nothing happen, the program exist sometimes with :

Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 216

End of launcher.log (see Logs section for complete log):

[2025-07-09T14:38:16.570928Z][DEBUG][tid:0][Launcher.cpp:1021][Launcher] All apps are launched.
[2025-07-09T14:38:16.570956Z][ERROR][tid:0][Launcher.cpp:1289][Launcher] Launcher::waitForAllApps: sigprocmask failed!
[2025-07-09T14:38:16.596156Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279077
[2025-07-09T14:38:16.596205Z][DEBUG][tid:0][Launcher.cpp:1410][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-07-09T14:38:16.596285Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process stm_master:2279077 terminated by signal: 6 (Aborted)
[2025-07-09T14:38:16.599043Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279076
[2025-07-09T14:38:16.599134Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process schedule_manager:2279076 terminated by signal: 15 (Terminated)


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [09-07-2025 14:38:16] TopExecutor: set TopExecutor to cpuset /sys/fs/cgroup/cpuset/rr2init/tasks
DefaultLogger: [09-07-2025 14:38:16] Failed to open cpuset /sys/fs/cgroup/cpuset/rr2init/tasks, errno: Permission denied (13)
DefaultLogger: [09-07-2025 14:38:16] Failed to set TopExecutor to RR2 init cpuset: /sys/fs/cgroup/cpuset/rr2init/tasks

Logs
FYI, I add to reduce the logs : An error occurred: Body is limited to 99000 characters; you entered 115813.

root@6.0.10.0-0009-build-linux-sdk:/home/nvidia/nvworkspace/build-aarch64-linux-gnu# make minipipeline_nodes
[  3%] Built target samples_allocator
[  6%] Built target lodepng-src
Scanning dependencies of target samples_framework_data_path
[  9%] Building CXX object src/framework/CMakeFiles/samples_framework_data_path.dir/SamplesDataPath.cpp.o
[  9%] Linking CXX static library libsamples_framework_data_path.a
[  9%] Built target samples_framework_data_path
Scanning dependencies of target glfw-x11
[ 12%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/context.c.o
[ 12%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/init.c.o
[ 16%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/input.c.o
[ 16%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/monitor.c.o
[ 19%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/vulkan.c.o
[ 19%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/window.c.o
[ 22%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/x11_init.c.o
[ 22%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/x11_monitor.c.o
[ 25%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/x11_window.c.o
[ 25%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/xkb_unicode.c.o
[ 29%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/linux_joystick.c.o
[ 32%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/posix_time.c.o
[ 32%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/posix_tls.c.o
[ 35%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/glx_context.c.o
[ 35%] Building C object 3rdparty/src/glfw/CMakeFiles/glfw-x11.dir/3.2-screen/src/egl_context.c.o
[ 35%] Built target glfw-x11
Scanning dependencies of target glfw-src
[ 38%] Linking C shared library libglfw.so
[ 38%] Built target glfw-src
Scanning dependencies of target samples_framework_program_arguments
[ 38%] Building CXX object src/framework/CMakeFiles/samples_framework_program_arguments.dir/ProgramArguments.cpp.o
[ 41%] Linking CXX static library libsamples_framework_program_arguments.a
[ 41%] Built target samples_framework_program_arguments
Scanning dependencies of target samples_framework_screenshot_helper
[ 45%] Building CXX object src/framework/CMakeFiles/samples_framework_screenshot_helper.dir/ScreenshotHelper.cpp.o
[ 45%] Linking CXX static library libsamples_framework_screenshot_helper.a
[ 45%] Built target samples_framework_screenshot_helper
[ 48%] Built target samples_framework_log
Scanning dependencies of target samples_framework_camera_frame_pipeline
[ 51%] Building CXX object src/framework/CMakeFiles/samples_framework_camera_frame_pipeline.dir/CameraFramePipeline.cpp.o
[ 51%] Linking CXX static library libsamples_framework_camera_frame_pipeline.a
[ 51%] Built target samples_framework_camera_frame_pipeline
Scanning dependencies of target samples_framework_math_utils
[ 51%] Building CXX object src/framework/CMakeFiles/samples_framework_math_utils.dir/MathUtils.cpp.o
[ 54%] Linking CXX static library libsamples_framework_math_utils.a
[ 54%] Built target samples_framework_math_utils
Scanning dependencies of target samples_framework_mouse_view
[ 54%] Building CXX object src/framework/CMakeFiles/samples_framework_mouse_view.dir/MouseView3D.cpp.o
[ 58%] Linking CXX static library libsamples_framework_mouse_view.a
[ 58%] Built target samples_framework_mouse_view
Scanning dependencies of target samples_framework_grid
[ 61%] Building CXX object src/framework/CMakeFiles/samples_framework_grid.dir/Grid.cpp.o
[ 64%] Linking CXX static library libsamples_framework_grid.a
[ 64%] Built target samples_framework_grid
Scanning dependencies of target samples_framework_render_utils
[ 67%] Building CXX object src/framework/CMakeFiles/samples_framework_render_utils.dir/RenderUtils.cpp.o
[ 67%] Linking CXX static library libsamples_framework_render_utils.a
[ 67%] Built target samples_framework_render_utils
Scanning dependencies of target samples_framework_simple_camera
[ 70%] Building CXX object src/framework/CMakeFiles/samples_framework_simple_camera.dir/SimpleCamera.cpp.o
[ 70%] Linking CXX static library libsamples_framework_simple_camera.a
[ 70%] Built target samples_framework_simple_camera
Scanning dependencies of target samples_framework_simple_recording_player
[ 74%] Building CXX object src/framework/CMakeFiles/samples_framework_simple_recording_player.dir/SimpleRecordingPlayer.cpp.o
[ 74%] Linking CXX static library libsamples_framework_simple_recording_player.a
[ 74%] Built target samples_framework_simple_recording_player
Scanning dependencies of target samples_framework_simple_renderer
[ 77%] Building CXX object src/framework/CMakeFiles/samples_framework_simple_renderer.dir/SimpleRenderer.cpp.o
[ 80%] Linking CXX static library libsamples_framework_simple_renderer.a
[ 80%] Built target samples_framework_simple_renderer
Scanning dependencies of target samples_framework_profiler_cuda
[ 80%] Building CXX object src/framework/CMakeFiles/samples_framework_profiler_cuda.dir/ProfilerCUDA.cpp.o
[ 83%] Linking CXX static library libsamples_framework_profiler_cuda.a
[ 83%] Built target samples_framework_profiler_cuda
Scanning dependencies of target samples_framework
[ 87%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/DriveWorksSample.cpp.o
[ 87%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/Window.cpp.o
[ 90%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/WindowGLFW.cpp.o
[ 90%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/WindowEGL.cpp.o
[ 93%] Building CXX object src/framework/CMakeFiles/samples_framework.dir/WindowLinuxEGL.cpp.o
[ 93%] Linking CXX static library libsamples_framework.a
[ 93%] Built target samples_framework
Scanning dependencies of target minipipeline_nodes
[ 96%] Building CXX object src/minipipeline/CMakeFiles/minipipeline_nodes.dir/VisualizationNode.cpp.o
[ 96%] Building CXX object src/minipipeline/CMakeFiles/minipipeline_nodes.dir/VisualizationNodeImpl.cpp.o
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp: In member function 'minipipeline::VisualizationNodeImpl::IMUString minipipeline::VisualizationNodeImpl::getIMUdata(dwIMUFrame&)':
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:798:69: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  798 |     DW_LOGD << "Epoch: " << m_epochCount << ", IMU flag: " << frame.flags << Logger::State::endl;
      |                                                                     ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:798:69: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  798 |     DW_LOGD << "Epoch: " << m_epochCount << ", IMU flag: " << frame.flags << Logger::State::endl;
      |                                                                     ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:798:69: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  798 |     DW_LOGD << "Epoch: " << m_epochCount << ", IMU flag: " << frame.flags << Logger::State::endl;
      |                                                                     ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:803:25: warning: 'dwIMUFrame::timestamp_us' is deprecated: timestamp_us  is deprecated and will not be used in the next major release. Please use hostTimestamp or sensorTimestamp instead. [-Wdeprecated-declarations]
  803 |         result += frame.timestamp_us;
      |                         ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:379:14: note: declared here
  379 |     dwTime_t timestamp_us;
      |              ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:803:25: warning: 'dwIMUFrame::timestamp_us' is deprecated: timestamp_us  is deprecated and will not be used in the next major release. Please use hostTimestamp or sensorTimestamp instead. [-Wdeprecated-declarations]
  803 |         result += frame.timestamp_us;
      |                         ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:379:14: note: declared here
  379 |     dwTime_t timestamp_us;
      |              ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:803:25: warning: 'dwIMUFrame::timestamp_us' is deprecated: timestamp_us  is deprecated and will not be used in the next major release. Please use hostTimestamp or sensorTimestamp instead. [-Wdeprecated-declarations]
  803 |         result += frame.timestamp_us;
      |                         ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:379:14: note: declared here
  379 |     dwTime_t timestamp_us;
      |              ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:28: warning: 'DW_IMU_ROLL' is deprecated: Use dwIMUFrame.validityInfo.orientation[0] instead [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:52:5: note: declared here
   52 |     DW_IMU_ROLL DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientation[0] instead") = 1 << 2, //!< Value of dwIMUFrame.orientation[0] is valid.
      |     ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:42: warning: 'DW_IMU_PITCH' is deprecated: Use dwIMUFrame.validityInfo.orientation[1] instead [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                                          ^~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:55:5: note: declared here
   55 |     DW_IMU_PITCH DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientation[1] instead") = 1 << 3, //!< Value of dwIMUFrame.orientation[1] is valid.
      |     ^~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:807:57: warning: 'DW_IMU_YAW' is deprecated: Use dwIMUFrame.validityInfo.orientation[2] instead [-Wdeprecated-declarations]
  807 |         if (frame.flags & (DW_IMU_ROLL | DW_IMU_PITCH | DW_IMU_YAW))
      |                                                         ^~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:58:5: note: declared here
   58 |     DW_IMU_YAW DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientation[2] instead") = 1 << 4, //!< Value of dwIMUFrame.orientation[2] is valid.
      |     ^~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:28: warning: 'DW_IMU_QUATERNION_X' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                            ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:61:5: note: declared here
   61 |     DW_IMU_QUATERNION_X DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 5, //!< Value of dwIMUFrame.orientationQuaternion.x is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:50: warning: 'DW_IMU_QUATERNION_Y' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                                                  ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:64:5: note: declared here
   64 |     DW_IMU_QUATERNION_Y DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 6, //!< Value of dwIMUFrame.orientationQuaternion.y is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:72: warning: 'DW_IMU_QUATERNION_Z' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |         if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                                                                        ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:67:5: note: declared here
   67 |     DW_IMU_QUATERNION_Z DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 7, //!< Value of dwIMUFrame.orientationQuaternion.z is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:818:94: warning: 'DW_IMU_QUATERNION_W' is deprecated: Use dwIMUFrame.validityInfo.orientationQuaternion instead [-Wdeprecated-declarations]
  818 |       if (frame.flags & (DW_IMU_QUATERNION_X | DW_IMU_QUATERNION_Y | DW_IMU_QUATERNION_Z | DW_IMU_QUATERNION_W))
      |                                                                                            ^~~~~~~~~~~~~~~~~~~

In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:70:5: note: declared here
   70 |     DW_IMU_QUATERNION_W DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.orientationQuaternion instead") = 1 << 8, //!< Value of dwIMUFrame.orientationQuaternion.w is valid.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:28: warning: 'DW_IMU_ROLL_RATE' is deprecated: Use dwIMUFrame.validityInfo.turnrate[0] instead [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                            ^~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:73:5: note: declared here
   73 |     DW_IMU_ROLL_RATE DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.turnrate[0] instead") = 1 << 9, //!< Value of dwIMUFrame.turnrate[0] is valid.
      |     ^~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:47: warning: 'DW_IMU_PITCH_RATE' is deprecated: Use dwIMUFrame.validityInfo.turnrate[1] instead [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                                               ^~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:76:5: note: declared here
   76 |     DW_IMU_PITCH_RATE DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.turnrate[1] instead") = 1 << 10, //!< Value of dwIMUFrame.turnrate[1] is valid.
      |     ^~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:830:67: warning: 'DW_IMU_YAW_RATE' is deprecated: Use dwIMUFrame.validityInfo.turnrate[2] instead [-Wdeprecated-declarations]
  830 |         if (frame.flags & (DW_IMU_ROLL_RATE | DW_IMU_PITCH_RATE | DW_IMU_YAW_RATE))
      |                                                                   ^~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:79:5: note: declared here
   79 |     DW_IMU_YAW_RATE DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.turnrate[2] instead") = 1 << 11, //!< Value of dwIMUFrame.turnrate[2] is valid.
      |     ^~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:841:27: warning: 'DW_IMU_HEADING' is deprecated: Use dwIMUFrame.validityInfo.heading instead [-Wdeprecated-declarations]
  841 |         if (frame.flags & DW_IMU_HEADING)
      |                           ^~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:49:5: note: declared here
   49 |     DW_IMU_HEADING DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.heading instead") = 1 << 1, //!< Value of dwIMUFrame.heading is valid.
      |     ^~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:23: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                       ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:23: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                       ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:23: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                       ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:845:38: warning: 'DW_IMU_HEADING_TRUE' is deprecated: dwIMUHeadingType will be removed [-Wdeprecated-declarations]
  845 |             if (frame.headingType == DW_IMU_HEADING_TRUE)
      |                                      ^~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:108:5: note: declared here
  108 |     DW_IMU_HEADING_TRUE DW_DEPRECATED_ENUM("dwIMUHeadingType will be removed") = 0, //!< 'dwIMUFrame.heading' points towards true north.
      |     ^~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:28: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:28: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:28: warning: 'dwIMUFrame::headingType' is deprecated: headingType is deprecated and will be removed in the next major release. Please don't use this field. [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                            ^~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:563:22: note: declared here
  563 |     dwIMUHeadingType headingType;
      |                      ^~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:849:43: warning: 'DW_IMU_HEADING_MAGNETIC' is deprecated: dwIMUHeadingType will be removed [-Wdeprecated-declarations]
  849 |             else if (frame.headingType == DW_IMU_HEADING_MAGNETIC)
      |                                           ^~~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:112:5: note: declared here
  112 |     DW_IMU_HEADING_MAGNETIC DW_DEPRECATED_ENUM("dwIMUHeadingType will be removed") = 1, //!< 'dwIMUFrame.heading' points towards magnetic north.
      |     ^~~~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:28: warning: 'DW_IMU_ACCELERATION_X' is deprecated: Use dwIMUFrame.validityInfo.acceleration[0] instead [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:82:5: note: declared here
   82 |     DW_IMU_ACCELERATION_X DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.acceleration[0] instead") = 1 << 12, //!< Value of dwIMUFrame.acceleration[0] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:52: warning: 'DW_IMU_ACCELERATION_Y' is deprecated: Use dwIMUFrame.validityInfo.acceleration[1] instead [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                                                    ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:85:5: note: declared here
   85 |     DW_IMU_ACCELERATION_Y DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.acceleration[1] instead") = 1 << 13, //!< Value of dwIMUFrame.acceleration[1] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:864:76: warning: 'DW_IMU_ACCELERATION_Z' is deprecated: Use dwIMUFrame.validityInfo.acceleration[2] instead [-Wdeprecated-declarations]
  864 |         if (frame.flags & (DW_IMU_ACCELERATION_X | DW_IMU_ACCELERATION_Y | DW_IMU_ACCELERATION_Z))
      |                                                                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:88:5: note: declared here
   88 |     DW_IMU_ACCELERATION_Z DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.acceleration[2] instead") = 1 << 14, //!< Value of dwIMUFrame.acceleration[2] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:19: warning: 'dwIMUFrame::flags' is deprecated: flags is deprecated and will be removed in next major release. Please use APIs provided in IMUGetterSetter.h to access and check validity of signals [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                   ^~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:569:14: note: declared here
  569 |     uint32_t flags;
      |              ^~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:28: warning: 'DW_IMU_MAGNETOMETER_X' is deprecated: Use dwIMUFrame.validityInfo.magnetometer[0] instead [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:91:5: note: declared here
   91 |     DW_IMU_MAGNETOMETER_X DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.magnetometer[0] instead") = 1 << 15, //!< Value of dwIMUFrame.magnetometer[0] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:52: warning: 'DW_IMU_MAGNETOMETER_Y' is deprecated: Use dwIMUFrame.validityInfo.magnetometer[1] instead [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                                                    ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:94:5: note: declared here
   94 |     DW_IMU_MAGNETOMETER_Y DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.magnetometer[1] instead") = 1 << 16, //!< Value of dwIMUFrame.magnetometer[1] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
/usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:875:76: warning: 'DW_IMU_MAGNETOMETER_Z' is deprecated: Use dwIMUFrame.validityInfo.magnetometer[2] instead [-Wdeprecated-declarations]
  875 |         if (frame.flags & (DW_IMU_MAGNETOMETER_X | DW_IMU_MAGNETOMETER_Y | DW_IMU_MAGNETOMETER_Z))
      |                                                                            ^~~~~~~~~~~~~~~~~~~~~
In file included from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMU.h:50,
                 from /usr/local/driveworks-5.20/targets/aarch64-Linux/include/dwframework/dwnodes/common/channelpackets/IMU.hpp:34,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNode.hpp:53,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.hpp:55,
                 from /usr/local/driveworks/samples/src/minipipeline/VisualizationNodeImpl.cpp:31:
/usr/local/driveworks-5.20/targets/aarch64-Linux/include/dw/sensors/imu/IMUTypes.h:97:5: note: declared here
   97 |     DW_IMU_MAGNETOMETER_Z DW_DEPRECATED_ENUM("Use dwIMUFrame.validityInfo.magnetometer[2] instead") = 1 << 17, //!< Value of dwIMUFrame.magnetometer[2] is valid.
      |     ^~~~~~~~~~~~~~~~~~~~~
[100%] Building CXX object src/minipipeline/CMakeFiles/minipipeline_nodes.dir/WindowApp.cpp.o
[100%] Linking CXX shared library libminipipeline_nodes.so
[100%] Built target minipipeline_nodes
root@6.0.10.0-0009-build-linux-sdk:/home/nvidia/nvworkspace/build-aarch64-linux-gnu#

launcher.log:

reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat launcher.log 
[2025-07-09T14:38:16.568073Z][ERROR][tid:0][Launcher.cpp:1966][Launcher] RoadRunner Main initiated at:602498929540160
[2025-07-09T14:38:16.568275Z][VERBOSE][tid:0][Launcher.cpp:153][Launcher] Predefined device type not used outside of dual mode
[2025-07-09T14:38:16.568344Z][ERROR][tid:0][Launcher.cpp:309][Launcher] model_fd close failed
[2025-07-09T14:38:16.568379Z][DEBUG][tid:0][Launcher.cpp:1979][Launcher] Launcher Arguments:
[2025-07-09T14:38:16.568389Z][DEBUG][tid:0][Launcher.cpp:1980][Launcher] --amend=
--app_parameter=
--argumentsFile=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disable_errors_seh_reporting=
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enablePrioSched=1
--enableTracer=0
--enable_errors_seh_reporting=
--enable_nodes_seh_reporting=
--end_timestamp=0
--fiufile=
--frame=
--fullscreen=0
--gdb_debug=0
--instantiate_rig_sensors=
--lcmSafetyModuleAsSyncClient=0
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logSpec=console
--logStreaming=
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memwatch_frames=
--memwatch_free_enable=0
--navRoute=
--ncuProfileFrames=
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--runWithRvc=0
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--sehFailureMask=
--service-framework=0
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stm_discriminator=
--time_multiplier=
--time_multiplier_nonblocking=
--tracerPath=
--useDynamicMap=0
--useLCM=1
--useNominalTransform=0
--valamend=
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-09T14:38:16.568417Z][DEBUG][tid:0][Launcher.cpp:1988][Launcher] SWC Arguments:
[2025-07-09T14:38:16.568425Z][DEBUG][tid:0][Launcher.cpp:1989][Launcher] --amend=
--app_parameter=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disable_errors_seh_reporting=
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enablePrioSched=1
--enable_errors_seh_reporting=
--enable_nodes_seh_reporting=
--end_timestamp=0
--fiufile=
--frame=
--fullscreen=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logStreaming=
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memwatch_frames=
--memwatch_free_enable=0
--navRoute=
--ncuProfileFrames=
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stm_discriminator=
--time_multiplier=
--time_multiplier_nonblocking=
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-09T14:38:16.568674Z][DEBUG][tid:0][LaunchSpecReader.cpp:1123][JsonSystemReader] [JsonSystemReader] LaunchSpec version: 2
[2025-07-09T14:38:16.568953Z][VERBOSE][tid:0][LaunchSpecReader.cpp:779][LaunchSpecReaderBase] Failed to get argument: --logStreaming=
[2025-07-09T14:38:16.569015Z][DEBUG][tid:0][LaunchSpecReader.cpp:1391][JsonSystemReader] [JsonSystemReader] ScheduleKey: standardSchedule id: 0
[2025-07-09T14:38:16.569087Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app cgf_sync_ctrl_client
[2025-07-09T14:38:16.569109Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] cgf_sync_ctrl_client exe: /usr/local/driveworks/bin//SyncControlClientLite
[2025-07-09T14:38:16.569129Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure cgf_sync_ctrl_client
[2025-07-09T14:38:16.569134Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//SyncControlClientLite
[2025-07-09T14:38:16.569139Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.569143Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --port=4002
[2025-07-09T14:38:16.569147Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.cgf_sync_ctrl_client:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_ctrl_client.log
[2025-07-09T14:38:16.569403Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app cgf_sync_server
[2025-07-09T14:38:16.569416Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] cgf_sync_server exe: /usr/local/driveworks/bin//SyncServer
[2025-07-09T14:38:16.569425Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure cgf_sync_server
[2025-07-09T14:38:16.569430Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//SyncServer
[2025-07-09T14:38:16.569435Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.569439Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --participant=mainClient,schedule_manager,cgf_sync_ctrl_client
[2025-07-09T14:38:16.569443Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --port=4002
[2025-07-09T14:38:16.569448Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.cgf_sync_server:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_server.log
[2025-07-09T14:38:16.569708Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app mainClient
[2025-07-09T14:38:16.569717Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] mainClient exe: /usr/local/driveworks/bin//LoaderLite
[2025-07-09T14:38:16.569726Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure mainClient
[2025-07-09T14:38:16.569731Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//LoaderLite
[2025-07-09T14:38:16.569736Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --swcid=mainClient
[2025-07-09T14:38:16.569740Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --libname=RuntimeGraphlet
[2025-07-09T14:38:16.569744Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --modulename=mainClient
[2025-07-09T14:38:16.569748Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --amend=
[2025-07-09T14:38:16.569752Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --app_parameter=
[2025-07-09T14:38:16.569756Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --autolanechange=0
[2025-07-09T14:38:16.569760Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --base_port=
[2025-07-09T14:38:16.569764Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --binPath=/usr/local/driveworks/bin/
[2025-07-09T14:38:16.569768Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --calibrationOverlayFile=
[2025-07-09T14:38:16.569771Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --configOverlayFile=
[2025-07-09T14:38:16.569775Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --configOverlayName=
[2025-07-09T14:38:16.569779Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
[2025-07-09T14:38:16.569783Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disableParamServiceThread=
[2025-07-09T14:38:16.569788Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disablePrioInit=0
[2025-07-09T14:38:16.569792Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disableStmControlLogger=0
[2025-07-09T14:38:16.569795Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disable_errors_seh_reporting=
[2025-07-09T14:38:16.569799Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disablefaulthandler=0
[2025-07-09T14:38:16.569803Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --ds2_control=
[2025-07-09T14:38:16.569807Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --dwdatapath=/usr/local/driveworks/data
[2025-07-09T14:38:16.569811Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enablePrioSched=1
[2025-07-09T14:38:16.569825Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enable_errors_seh_reporting=
[2025-07-09T14:38:16.569830Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enable_nodes_seh_reporting=
[2025-07-09T14:38:16.569833Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --end_timestamp=0
[2025-07-09T14:38:16.569837Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --fiufile=
[2025-07-09T14:38:16.569841Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --frame=
[2025-07-09T14:38:16.569845Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --fullscreen=0
[2025-07-09T14:38:16.569849Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --instantiate_rig_sensors=
[2025-07-09T14:38:16.569853Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --lockstep_deterministic_replay=
[2025-07-09T14:38:16.569857Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
[2025-07-09T14:38:16.569861Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logdebug=0
[2025-07-09T14:38:16.569865Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.569869Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logprintstats=0
[2025-07-09T14:38:16.569873Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logremovedup=0
[2025-07-09T14:38:16.569877Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logremovenl=0
[2025-07-09T14:38:16.569881Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logremovetag=
[2025-07-09T14:38:16.569884Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loop=0
[2025-07-09T14:38:16.569888Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --mapPath=
[2025-07-09T14:38:16.569892Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --memwatch_frames=
[2025-07-09T14:38:16.569896Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --memwatch_free_enable=0
[2025-07-09T14:38:16.569900Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --navRoute=
[2025-07-09T14:38:16.569904Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --ncuProfileFrames=
[2025-07-09T14:38:16.569908Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --offscreen=0
[2025-07-09T14:38:16.569912Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --path=/usr/local/driveworks/apps/minipipeline
[2025-07-09T14:38:16.569916Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --preInitSerialize=0
[2025-07-09T14:38:16.569920Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --rc2f=
[2025-07-09T14:38:16.569923Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --region=
[2025-07-09T14:38:16.569927Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --rig=
[2025-07-09T14:38:16.569931Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-09T14:38:16.569935Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --shadow=
[2025-07-09T14:38:16.569939Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-09T14:38:16.569943Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --start_timestamp=0
[2025-07-09T14:38:16.569947Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --stm_discriminator=
[2025-07-09T14:38:16.569951Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --time_multiplier=
[2025-07-09T14:38:16.569955Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --time_multiplier_nonblocking=
[2025-07-09T14:38:16.569959Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --useDynamicMap=0
[2025-07-09T14:38:16.569963Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --useNominalTransform=0
[2025-07-09T14:38:16.569967Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --vinOverlayFile=
[2025-07-09T14:38:16.569971Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --virtual=1
[2025-07-09T14:38:16.569975Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --virtual_time=
[2025-07-09T14:38:16.569978Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --winSizeH=1200
[2025-07-09T14:38:16.569982Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --winSizeW=1920
[2025-07-09T14:38:16.569986Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
[2025-07-09T14:38:16.569997Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --instanceId=0
[2025-07-09T14:38:16.570002Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --rrErrorReportingInstance=0
[2025-07-09T14:38:16.570006Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --machine_id=machine0
[2025-07-09T14:38:16.570226Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app schedule_manager
[2025-07-09T14:38:16.570238Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] schedule_manager exe: /usr/local/driveworks/bin//ScheduleManager
[2025-07-09T14:38:16.570249Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure schedule_manager
[2025-07-09T14:38:16.570257Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//ScheduleManager
[2025-07-09T14:38:16.570262Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --loglevel=DW_LOG_DEBUG
[2025-07-09T14:38:16.570267Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --binPath=/usr/local/driveworks/bin/
[2025-07-09T14:38:16.570271Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-09T14:38:16.570276Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-09T14:38:16.570279Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enableScheduleSwitching=true
[2025-07-09T14:38:16.570283Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerHostIP=127.0.0.1
[2025-07-09T14:38:16.570287Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerHostPort=4010
[2025-07-09T14:38:16.570291Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerNumLoaderClients=1
[2025-07-09T14:38:16.570295Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --scheduleManagerNumSSMClients=1
[2025-07-09T14:38:16.570299Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --logspec=file/rfc5424.user.schedule_manager:/usr/local/driveworks/apps/minipipeline/LogFolder/schedule_manager.log
[2025-07-09T14:38:16.570303Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule-manager-name=CGF-ScheduleManager
[2025-07-09T14:38:16.570307Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --sensorSyncEnabled=1
[2025-07-09T14:38:16.570311Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --disablePrioInit=0
[2025-07-09T14:38:16.570315Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --enablePrioSched=1
[2025-07-09T14:38:16.570549Z][DEBUG][tid:0][Launcher.cpp:886][Launcher] Launching app stm_master
[2025-07-09T14:38:16.570564Z][DEBUG][tid:0][Launcher.cpp:887][Launcher] stm_master exe: /usr/local/driveworks/bin//stm_master
[2025-07-09T14:38:16.570575Z][DEBUG][tid:0][Launcher.cpp:768][Launcher] Configure stm_master
[2025-07-09T14:38:16.570581Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         /usr/local/driveworks/bin//stm_master
[2025-07-09T14:38:16.570586Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-09T14:38:16.570591Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --log=/usr/local/driveworks/apps/minipipeline/LogFolder/stm_sreport
[2025-07-09T14:38:16.570595Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --soc=TegraA
[2025-07-09T14:38:16.570599Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --timeout-us=80000000
[2025-07-09T14:38:16.570603Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         -m
[2025-07-09T14:38:16.570607Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --schedule-manager-name=CGF-ScheduleManager
[2025-07-09T14:38:16.570611Z][DEBUG][tid:0][Launcher.cpp:771][Launcher]         --num-input-schedule=1
[2025-07-09T14:38:16.570616Z][DEBUG][tid:0][Launcher.cpp:804][Launcher] The standard streams are redirected into file for app: stm_master logSpec: file/rfc5424.user.stm_master:/usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-07-09T14:38:16.570639Z][ERROR][tid:0][Launcher.cpp:833][Launcher] Invalid file type for fopen: /usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-07-09T14:38:16.570928Z][DEBUG][tid:0][Launcher.cpp:1021][Launcher] All apps are launched.
[2025-07-09T14:38:16.570956Z][ERROR][tid:0][Launcher.cpp:1289][Launcher] Launcher::waitForAllApps: sigprocmask failed!
[2025-07-09T14:38:16.596156Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279077
[2025-07-09T14:38:16.596205Z][DEBUG][tid:0][Launcher.cpp:1410][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-07-09T14:38:16.596285Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process stm_master:2279077 terminated by signal: 6 (Aborted)
[2025-07-09T14:38:16.599043Z][INFO][tid:0][Launcher.cpp:1330][Launcher] Got signal: 17 (Child exited), si_pid: 2279076
[2025-07-09T14:38:16.599134Z][FATAL][tid:0][Launcher.cpp:1158][Launcher] Process schedule_manager:2279076 terminated by signal: 15 (Terminated)


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [09-07-2025 14:38:16] TopExecutor: set TopExecutor to cpuset /sys/fs/cgroup/cpuset/rr2init/tasks
DefaultLogger: [09-07-2025 14:38:16] Failed to open cpuset /sys/fs/cgroup/cpuset/rr2init/tasks, errno: Permission denied (13)
DefaultLogger: [09-07-2025 14:38:16] Failed to set TopExecutor to RR2 init cpuset: /sys/fs/cgroup/cpuset/rr2init/tasks
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat cgf_sync_ctrl_client.log 
<10>1 2025-07-09T14:38:16.605746Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:223][NO_TAG] Initialize SyncClient with parameters:
<10>1 2025-07-09T14:38:16.605768Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:224][NO_TAG] logSpec: file/rfc5424.user.cgf_sync_ctrl_client:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_ctrl_client.log
<10>1 2025-07-09T14:38:16.605775Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:225][NO_TAG] port: 4002
<10>1 2025-07-09T14:38:16.605779Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:226][NO_TAG] groupID: 15
<10>1 2025-07-09T14:38:16.606036Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:237][NO_TAG] SyncClient initialized
<10>1 2025-07-09T14:38:16.606051Z - cgf_sync_ctrl_client 2279073 - - [0us][SILENT][tid:0][main_client.cpp:84][NO_TAG] Starting SyncClient
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat cgf_sync_server.log 
<10>1 2025-07-09T14:38:16.607276Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:0][main_server.cpp:87][NO_TAG] Initialize SyncServer with parameters:
<10>1 2025-07-09T14:38:16.607294Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:0][main_server.cpp:88][NO_TAG] logSpec: file/rfc5424.user.cgf_sync_server:/usr/local/driveworks/apps/minipipeline/LogFolder/cgf_sync_server.log

... log reduced ...

[0us][SILENT][tid:0][main_server.cpp:132][NO_TAG] SyncServer started
<10>1 2025-07-09T14:38:16.608754Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:0][main_server.cpp:145][NO_TAG] Waiting clients disconnect to stop server
<10>1 2025-07-09T14:38:16.608872Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:552][NO_TAG] Sync server accepted connection: nConnected = 1 nParticipant = 3
<10>1 2025-07-09T14:38:16.608967Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:605][NO_TAG] Client: cgf_sync_ctrl_client request 22 fence registration

... log reduced ...

<10>1 2025-07-09T14:38:16.952681Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:598][NO_TAG] Client: mainClient request fence registration: P0_INIT_START
<10>1 2025-07-09T14:38:16.953489Z - cgf_sync_server 2279074 - - [0us][SILENT][tid:1][CGFSyncServer.cpp:347][NO_TAG] Server recv sync request from: mainClient, with fence: 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ 
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat mainClient_0.log 
<11>1 2025-07-09T14:38:16.943916Z - mainClient 2279075 - - [0us][ERROR][tid:rr2_main][TopExecutor.hpp:3105][TopExecutor] SWC initiated at:602499305366112
<13>1 2025-07-09T14:38:16.944015Z - mainClient 2279075 - - [0us][DEBUG][tid:rr2_main][TopExecutor.hpp:3109][TopExecutor] Program Arguments:
--amend=
--app_parameter=
--augreplay=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--channelBindingThreadPoolSize=auto
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableCudaGraph=0
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disable_errors_seh_reporting=
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable-ssm-degradation=0
--enablePrioSched=1
--enable_errors_seh_reporting=
--enable_nodes_seh_reporting=
--end_timestamp=0
--fiufile=
--frame=
--fullscreen=0
--instanceId=0
--instantiate_rig_sensors=
--libname=RuntimeGraphlet
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
--loop=0
--machine_id=machine0
--mapPath=
--memwatch_frames=
--memwatch_free_enable=0
--modulename=mainClient
--navRoute=
--ncuProfileFrames=
--nodeInitThreadPoolSize=auto
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--rrErrorReportingInstance=0
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stm_discriminator=
--swcid=mainClient
--time_multiplier=
--time_multiplier_nonblocking=
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

<13>1 2025-07-09T14:38:16.944022Z - mainClient 2279075 - - [0us][DEBUG][tid:rr2_main][TopExecutor.hpp:3115][TopExecutor] argv[0]: /usr/local/driveworks/bin//LoaderLite
<13>1 2025-07-09T14:38:16.944025Z - mainClient 2279075 - - [0us][DEBUG][tid:rr2_main][TopExecutor.hpp:3115][TopExecutor] argv[1]: --swcid=mainClient
... log reduced ...
<13>1 2025-07-09T14:38:16.952625Z - mainClient 2279075 - - [0us][DEBUG][tid:0][SyncClient.cpp:594][NO_TAG] SyncClient registering fence: P0_INIT_END
<13>1 2025-07-09T14:38:16.952645Z - mainClient 2279075 - - [0us][DEBUG][tid:0][SyncClient.cpp:594][NO_TAG] SyncClient registering fence: P1_READY_START
<13>1 2025-07-09T14:38:16.952664Z - mainClient 2279075 - - [0us][DEBUG][tid:0][SyncClient.cpp:594][NO_TAG] SyncClient registering fence: P0_INIT_START
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat stm_master.log 
terminate called after throwing an instance of 'nvstm::ErrnoError'
  what():  Could not open ShmDescriptor; errno: 17 (File exists)
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$

Thanks for support and help,
Kind regards,
Lucas

Dear @lucas.lattion1 ,
do you notice issue when running on target?

Yes, I have the issue when running it on the target: NVIDIA DRIVE AGX Orin
I provided mostly everything.
I specify all the version just in case:
I use DRIVE OS 6.0.10.0
so there is in it:
DriveWorks 5.20
cuda 11.4

Thanks for support,
Lucas

CGF daemon is not stable and notice issues with CGF samples in DW 5.20. Please use DRIVE OS 6.0.8.1 + DW 5.14 to test CGF samples.

Dear @SivaRamaKrishnaNV,

I have downloaded the docker and reflashed the card to use DRIVE OS 6.0.8.1 + DW 5.14 to test CGF samples.

I get another error 217 on run_minipipeline.sh :

reds@tegra-ubuntu:~/cross-compiled$ ./run_mini_pipeline.sh 
20250714_101447
20250714_101447
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
!!! Require larger message queue !!!
STM requires at least 4096 msgs
-------------------------------------------------------------
sudo sed -i '$ a fs.mqueue.msg_max = 4096' /etc/sysctl.conf
sudo sysctl -p
-------------------------------------------------------------
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a fs.mqueue.msg_max = 4096' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sysctl -p
fs.mqueue.msg_max = 4096
fs.mqueue.msg_max = 4096
reds@tegra-ubuntu:~/cross-compiled$ ls /usr/local/driveworks/data/samples/minipipeline/dataset
can_ta1.bin            radar_FXL.bin              video_A1_RL_120.h264.seek
gps_xsens.bin          radar_FXL.bin.seek         video_A1_XL_120.h264
imu_xsens.bin          radar_FXR.bin              video_A1_XL_120.h264.seek
irisSimShort_2217.bin  radar_FXR.bin.seek         video_A2_RR_120.h264
radar_BSL.bin          radar_RL.bin               video_A2_RR_120.h264.seek
radar_BSL.bin.seek     radar_RL.bin.seek          video_A2_XR_120.h264
radar_BSR.bin          radar_RR.bin               video_A2_XR_120.h264.seek
radar_BSR.bin.seek     radar_RR.bin.seek          video_B0_FC_60.h264
radar_FL.bin           rig.json                   video_B0_FC_60.h264.seek
radar_FL.bin.seek      video_A0_FC_120.h264       video_B0_RC_60.h264
radar_FR.bin           video_A0_FC_120.h264.seek  video_B0_RC_60.h264.seek
radar_FR.bin.seek      video_A1_RL_120.h264       video_time_0.txt
reds@tegra-ubuntu:~/cross-compiled$ ls /usr/local/driveworks/apps/minipipeline
MiniPipeline__standardSchedule.stm   applications  nodes
MiniPipeline__standardSchedule.yaml  graphlets
reds@tegra-ubuntu:~/cross-compiled$ ./run_mini_pipeline.sh 
20250714_101611
20250714_101611
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
!!! Require larger NetworkStack !!!
The default value of rmem_max and wmem_max is about 128 KB in Linux, which is too small to
to fit the current sample mini pipeline (causing high-latencies).
The following setting is going to improve networking performance.
Please enlarge NetworkStack with following commands:
-----------------------------------------------------------------------------------
sudo sed -i '$ a net.core.wmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_max = 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.core.rmem_default = 16777216' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_wmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sed -i '$ a net.ipv4.tcp_rmem = 65011712 65011712 65011712' /etc/sysctl.conf
sudo sysctl -p
-----------------------------------------------------------------------------------
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.core.wmem_max = 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.core.rmem_max = 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.core.rmem_default = 16777216' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.ipv4.tcp_wmem = 65011712 65011712 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sed -i '$ a net.ipv4.tcp_rmem = 65011712 65011712 65011712' /etc/sysctl.conf
reds@tegra-ubuntu:~/cross-compiled$ sudo sysctl -p
fs.mqueue.msg_max = 4096
fs.mqueue.msg_max = 4096
net.core.wmem_max = 65011712
net.core.rmem_max = 65011712
net.core.rmem_default = 16777216
net.ipv4.tcp_wmem = 65011712 65011712 65011712
net.ipv4.tcp_rmem = 65011712 65011712 65011712
reds@tegra-ubuntu:~/cross-compiled$ ./run_mini_pipeline.sh 
20250714_101637
20250714_101637
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
total 68
drwxr-xr-x. 6 reds reds  4096 Jul 14 10:16 .
drwxr-xr-x. 5 reds reds  4096 Jul 14 10:09 ..
drwxrwxr-x. 2 reds reds  4096 Jul 14 10:16 LogFolder
-r-xr-xr-x. 1 reds reds 29188 Jul 14 10:09 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10113 Jul 14 10:09 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 applications
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 217

reds@tegra-ubuntu:~/cross-compiled$ 
reds@tegra-ubuntu:~/cross-compiled$ ls
apps                                                                      mnist_orin.bin                  samples-data
bandwidthTest                                                             onnx_results.txt                stm_sreport_20250714_101638
carla-workspace                                                           pip                             tensorrt_results.txt
framesync_TegraA_mainHyperepoch_mainEpoch_73746d_20250714_101638.txt      run_mini_pipeline.sh            tensorrt_results_new.txt
framesync_TegraA_renderHyperepoch_renderEpoch_73746d_20250714_101638.txt  run_mini_pipeline_debug.sh      yolo.onnx
libdnn_pool_plugin.so                                                     sample_dnn_plugin               yolo_onnx_output.json
libminipipeline_nodes.so                                                  sample_dnn_tensor               yolo_onnx_times.json
minipipeline                                                              sample_hello_world              yolo_orin_simple.bin
mnist.onnx                                                                sample_object_detector_tracker  yolo_tensorrt_output.json
reds@tegra-ubuntu:~/cross-compiled$ cd minipipeline/
reds@tegra-ubuntu:~/cross-compiled/minipipeline$ ls
run_mini_pipeline.sh
reds@tegra-ubuntu:~/cross-compiled/minipipeline$ ./run_mini_pipeline.sh 
20250714_121611
20250714_121612
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 68
drwxr-xr-x. 6 reds reds  4096 Jul 14 10:16 .
drwxr-xr-x. 5 reds reds  4096 Jul 14 10:09 ..
drwxrwxr-x. 2 reds reds  4096 Jul 14 10:16 LogFolder
-r-xr-xr-x. 1 reds reds 29188 Jul 14 10:09 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10113 Jul 14 10:09 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 applications
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 1

reds@tegra-ubuntu:~/cross-compiled/minipipeline$ sudo ./run_mini_pipeline.sh 
[sudo] password for reds: 
20250714_121653
20250714_121654
DW_TOP_PATH=/usr/local/driveworks
SAMPLE_TOP_PATH=/usr/local/driveworks/apps/minipipeline
CGF_SYS_PATH=
SMP_LOG_PATH=/usr/local/driveworks/apps/minipipeline/LogFolder
DATA_PATH=/usr/local/driveworks/data/samples/minipipeline/dataset
Current DISPLAY is :1
|--> Tuning message queue
|--> Tuning network stack
LD_LIBRARY_PATH: :/usr/local/driveworks/lib
/usr/local/driveworks/apps/minipipeline/LogFolder dir exists
total 68
drwxr-xr-x. 6 reds reds  4096 Jul 14 10:16 .
drwxr-xr-x. 5 reds reds  4096 Jul 14 10:09 ..
drwxrwxr-x. 2 reds reds  4096 Jul 14 10:16 LogFolder
-r-xr-xr-x. 1 reds reds 29188 Jul 14 10:09 MiniPipeline__standardSchedule.stm
-r-xr-xr-x. 1 reds reds 10113 Jul 14 10:09 MiniPipeline__standardSchedule.yaml
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 applications
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 graphlets
drwxr-xr-x. 2 reds reds  4096 Jul 14 10:09 nodes
Running command: /usr/local/driveworks/bin//launcher --binPath=/usr/local/driveworks/bin/ --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder --path=/usr/local/driveworks/apps/minipipeline --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset --dwdatapath=/usr/local/driveworks/data --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm --start_timestamp=0 --loglevel=DW_LOG_DEBUG --fullscreen=0 --winSizeW=1920 --winSizeH=1200 --virtual=1 --gdb_debug=0 --app_parameter= > /usr/local/driveworks/apps/minipipeline/LogFolder/launcher.log 2>&1
Check if reset NetworkStack needed
Restore LD_LIBRARY_PATH to 
=======================================================================
launcher exit status: 217

reds@tegra-ubuntu:~/cross-compiled/minipipeline$

Log from launcher:

reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat launcher.log 
[2025-07-14T12:16:54.247167Z][ERROR][tid:0][Launcher.cpp:1736][Launcher] RoadRunner Main initiated at:236437556249536
[2025-07-14T12:16:54.247391Z][VERBOSE][tid:0][Launcher.cpp:150][Launcher] Predefined device type not used outside of dual mode
[2025-07-14T12:16:54.247486Z][DEBUG][tid:0][Launcher.cpp:1743][Launcher] Launcher Arguments:
[2025-07-14T12:16:54.247499Z][DEBUG][tid:0][Launcher.cpp:1744][Launcher] --amend=
--app_parameter=
--argumentsFile=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--checkMemLeak=0
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable_max_time_diff_check=0
--end_timestamp=0
--fileBackendEnabled=1
--fiufile=
--frame=
--ftraceBackendEnabled=0
--fullscreen=0
--gdb_debug=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logSpec=console
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memTraceEnabled=0
--memwatch_frames=
--navRoute=
--ncuProfileFrames=
--networkBackendEnabled=0
--nvtxBackendEnabled=0
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--sehFailureMask=
--service-framework=0
--shadow=
--sm_init_timeout=0
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stmControlTracing=1
--stm_discriminator=
--time_multiplier=
--traceChannelMask=0x0001
--traceFilePath=
--traceLevel=10
--useDynamicMap=0
--useLCM=1
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-14T12:16:54.247532Z][DEBUG][tid:0][Launcher.cpp:1754][Launcher] SWC Arguments:
[2025-07-14T12:16:54.247540Z][DEBUG][tid:0][Launcher.cpp:1755][Launcher] --amend=
--app_parameter=
--autolanechange=0
--base_port=
--binPath=/usr/local/driveworks/bin/
--calibrationOverlayFile=
--configOverlayFile=
--configOverlayName=
--datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
--disableParamServiceThread=
--disablePrioInit=0
--disableStmControlLogger=0
--disablefaulthandler=0
--ds2_control=
--dwdatapath=/usr/local/driveworks/data
--enable_max_time_diff_check=0
--end_timestamp=0
--fileBackendEnabled=1
--fiufile=
--frame=
--ftraceBackendEnabled=0
--fullscreen=0
--instantiate_rig_sensors=
--lockstep_deterministic_replay=
--logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
--logdebug=0
--loglevel=DW_LOG_DEBUG
--logprintstats=0
--logremovedup=0
--logremovenl=0
--logremovetag=
--loop=0
--mapPath=
--memTraceEnabled=0
--memwatch_frames=
--navRoute=
--ncuProfileFrames=
--networkBackendEnabled=0
--nvtxBackendEnabled=0
--offscreen=0
--path=/usr/local/driveworks/apps/minipipeline
--preInitSerialize=0
--rc2f=
--region=
--rig=
--schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
--shadow=
--spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
--start_timestamp=0
--stmControlTracing=1
--stm_discriminator=
--time_multiplier=
--traceChannelMask=0x0001
--traceFilePath=
--traceLevel=10
--useDynamicMap=0
--useNominalTransform=0
--vinOverlayFile=
--virtual=1
--virtual_time=
--winSizeH=1200
--winSizeW=1920

[2025-07-14T12:16:54.247848Z][DEBUG][tid:0][LaunchSpecReader.cpp:897][JsonSystemReader] [JsonSystemReader] LaunchSpec version: 2
[2025-07-14T12:16:54.254357Z][WARN][tid:0][LaunchSpecReader.cpp:1662][JsonSystemReader] Flag --mapPath is empty
[2025-07-14T12:16:54.255739Z][DEBUG][tid:0][LaunchSpecReader.cpp:1115][JsonSystemReader] [JsonSystemReader] ScheduleKey: standardSchedule id: 0
[2025-07-14T12:16:54.255990Z][DEBUG][tid:0][Launcher.cpp:407][Launcher] Schedule Switching Param enabled:  --enableScheduleSwitching=true
[2025-07-14T12:16:54.256381Z][ERROR][tid:0][Launcher.cpp:2020][Launcher] Unlink ret: -1, -1
[2025-07-14T12:16:54.256422Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app ssm
[2025-07-14T12:16:54.256430Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] ssm exe: /usr/local/driveworks/bin//SSM/vanillassm
[2025-07-14T12:16:54.256452Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] ssm arg[0]: /usr/local/driveworks/bin//SSM/vanillassm
[2025-07-14T12:16:54.256459Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] ssm arg[1]: --logspec=file/rfc5424.user.ssm:/usr/local/driveworks/apps/minipipeline/LogFolder/ssm.log
[2025-07-14T12:16:54.256465Z][DEBUG][tid:0][Launcher.cpp:764][Launcher] The standard streams are redirected into file for app: ssm logSpec: file/rfc5424.user.ssm:/usr/local/driveworks/apps/minipipeline/LogFolder/ssm.log
[2025-07-14T12:16:54.256842Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app mainClient
[2025-07-14T12:16:54.256856Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] mainClient exe: /usr/local/driveworks/bin//LoaderLite
[2025-07-14T12:16:54.256866Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[0]: /usr/local/driveworks/bin//LoaderLite
[2025-07-14T12:16:54.256872Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[1]: --swcid=mainClient
[2025-07-14T12:16:54.256877Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[2]: --libname=RuntimeGraphlet
[2025-07-14T12:16:54.256881Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[3]: --modulename=mainClient
[2025-07-14T12:16:54.256885Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[4]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
[2025-07-14T12:16:54.256889Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[5]: --amend=
[2025-07-14T12:16:54.256893Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[6]: --app_parameter=
[2025-07-14T12:16:54.256897Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[7]: --autolanechange=0
[2025-07-14T12:16:54.256901Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[8]: --base_port=
[2025-07-14T12:16:54.256905Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[9]: --binPath=/usr/local/driveworks/bin/
[2025-07-14T12:16:54.256909Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[10]: --calibrationOverlayFile=
[2025-07-14T12:16:54.256913Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[11]: --configOverlayFile=
[2025-07-14T12:16:54.256917Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[12]: --configOverlayName=
[2025-07-14T12:16:54.256921Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[13]: --datapath=/usr/local/driveworks/data/samples/minipipeline/dataset
[2025-07-14T12:16:54.256925Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[14]: --disableParamServiceThread=
[2025-07-14T12:16:54.256929Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[15]: --disablePrioInit=0
[2025-07-14T12:16:54.256933Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[16]: --disableStmControlLogger=0
[2025-07-14T12:16:54.256937Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[17]: --disablefaulthandler=0
[2025-07-14T12:16:54.256941Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[18]: --ds2_control=
[2025-07-14T12:16:54.256944Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[19]: --dwdatapath=/usr/local/driveworks/data
[2025-07-14T12:16:54.256949Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[20]: --enable_max_time_diff_check=0
[2025-07-14T12:16:54.256952Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[21]: --end_timestamp=0
[2025-07-14T12:16:54.256956Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[22]: --fileBackendEnabled=1
[2025-07-14T12:16:54.256960Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[23]: --fiufile=
[2025-07-14T12:16:54.256964Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[24]: --frame=
[2025-07-14T12:16:54.256968Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[25]: --ftraceBackendEnabled=0
[2025-07-14T12:16:54.256982Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[26]: --fullscreen=0
[2025-07-14T12:16:54.256987Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[27]: --instantiate_rig_sensors=
[2025-07-14T12:16:54.256991Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[28]: --lockstep_deterministic_replay=
[2025-07-14T12:16:54.256995Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[29]: --logPath=/usr/local/driveworks/apps/minipipeline/LogFolder
[2025-07-14T12:16:54.256999Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[30]: --logdebug=0
[2025-07-14T12:16:54.257003Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[31]: --loglevel=DW_LOG_DEBUG
[2025-07-14T12:16:54.257007Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[32]: --logprintstats=0
[2025-07-14T12:16:54.257011Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[33]: --logremovedup=0
[2025-07-14T12:16:54.257015Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[34]: --logremovenl=0
[2025-07-14T12:16:54.257018Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[35]: --logremovetag=
[2025-07-14T12:16:54.257022Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[36]: --loop=0
[2025-07-14T12:16:54.257026Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[37]: --mapPath=
[2025-07-14T12:16:54.257030Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[38]: --memTraceEnabled=0
[2025-07-14T12:16:54.257034Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[39]: --memwatch_frames=
[2025-07-14T12:16:54.257038Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[40]: --navRoute=
[2025-07-14T12:16:54.257041Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[41]: --ncuProfileFrames=
[2025-07-14T12:16:54.257045Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[42]: --networkBackendEnabled=0
[2025-07-14T12:16:54.257049Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[43]: --nvtxBackendEnabled=0
[2025-07-14T12:16:54.257053Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[44]: --offscreen=0
[2025-07-14T12:16:54.257057Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[45]: --path=/usr/local/driveworks/apps/minipipeline
[2025-07-14T12:16:54.257061Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[46]: --preInitSerialize=0
[2025-07-14T12:16:54.257065Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[47]: --rc2f=
[2025-07-14T12:16:54.257068Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[48]: --region=
[2025-07-14T12:16:54.257072Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[49]: --rig=
[2025-07-14T12:16:54.257076Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[50]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-14T12:16:54.257080Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[51]: --shadow=
[2025-07-14T12:16:54.257084Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[52]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-14T12:16:54.257088Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[53]: --start_timestamp=0
[2025-07-14T12:16:54.257092Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[54]: --stmControlTracing=1
[2025-07-14T12:16:54.257096Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[55]: --stm_discriminator=
[2025-07-14T12:16:54.257100Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[56]: --time_multiplier=
[2025-07-14T12:16:54.257103Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[57]: --traceChannelMask=0x0001
[2025-07-14T12:16:54.257107Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[58]: --traceFilePath=
[2025-07-14T12:16:54.257111Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[59]: --traceLevel=10
[2025-07-14T12:16:54.257115Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[60]: --useDynamicMap=0
[2025-07-14T12:16:54.257119Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[61]: --useNominalTransform=0
[2025-07-14T12:16:54.257129Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[62]: --vinOverlayFile=
[2025-07-14T12:16:54.257133Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[63]: --virtual=1
[2025-07-14T12:16:54.257137Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[64]: --virtual_time=
[2025-07-14T12:16:54.257141Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[65]: --winSizeH=1200
[2025-07-14T12:16:54.257145Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[66]: --winSizeW=1920
[2025-07-14T12:16:54.257149Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[67]: --logspec=file/rfc5424.user.mainClient:/usr/local/driveworks/apps/minipipeline/LogFolder/mainClient.log
[2025-07-14T12:16:54.257153Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] mainClient arg[68]: --machine_id=machine0
[2025-07-14T12:16:54.257398Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app schedule_manager
[2025-07-14T12:16:54.257415Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] schedule_manager exe: /usr/local/driveworks/bin//ScheduleManager
[2025-07-14T12:16:54.257425Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[0]: /usr/local/driveworks/bin//ScheduleManager
[2025-07-14T12:16:54.257431Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[1]: --launchspec=/usr/local/driveworks/apps/minipipeline/LogFolder/dumpLaunchSpec.json
[2025-07-14T12:16:54.257437Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[2]: --loglevel=DW_LOG_DEBUG
[2025-07-14T12:16:54.257441Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[3]: --binPath=/usr/local/driveworks/bin/
[2025-07-14T12:16:54.257446Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[4]: --fileBackendEnabled=1
[2025-07-14T12:16:54.257450Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[5]: --ftraceBackendEnabled=0
[2025-07-14T12:16:54.257454Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[6]: --memTraceEnabled=0
[2025-07-14T12:16:54.257457Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[7]: --networkBackendEnabled=0
[2025-07-14T12:16:54.257461Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[8]: --nvtxBackendEnabled=0
[2025-07-14T12:16:54.257465Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[9]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-14T12:16:54.257469Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[10]: --spec=/usr/local/driveworks/apps/minipipeline/applications/MiniPipeline.app.json
[2025-07-14T12:16:54.257473Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[11]: --stmControlTracing=1
[2025-07-14T12:16:54.257477Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[12]: --traceChannelMask=0x0001
[2025-07-14T12:16:54.257481Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[13]: --traceLevel=10
[2025-07-14T12:16:54.257485Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[14]: --enableScheduleSwitching=true
[2025-07-14T12:16:54.257488Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[15]: --scheduleManagerHostIP=127.0.0.1
[2025-07-14T12:16:54.257492Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[16]: --scheduleManagerHostPort=4010
[2025-07-14T12:16:54.257496Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[17]: --scheduleManagerNumClients=1
[2025-07-14T12:16:54.257500Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[18]: --logspec=file/rfc5424.user.schedule_manager:/usr/local/driveworks/apps/minipipeline/LogFolder/schedule_manager.log
[2025-07-14T12:16:54.257504Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[19]: --schedule-manager-name=CGF-ScheduleManager
[2025-07-14T12:16:54.257508Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[20]: --sensorSyncEnabled=1
[2025-07-14T12:16:54.257512Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] schedule_manager arg[21]: --disablePrioInit=0
[2025-07-14T12:16:54.257776Z][DEBUG][tid:0][Launcher.cpp:544][Launcher] Skipped app: ssm. Skip type: ssm
[2025-07-14T12:16:54.257787Z][DEBUG][tid:0][Launcher.cpp:797][Launcher] Launching app stm_master
[2025-07-14T12:16:54.257792Z][DEBUG][tid:0][Launcher.cpp:798][Launcher] stm_master exe: /usr/local/driveworks/bin//stm_master
[2025-07-14T12:16:54.257797Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[0]: /usr/local/driveworks/bin//stm_master
[2025-07-14T12:16:54.257802Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[1]: --schedule=/usr/local/driveworks/apps/minipipeline/MiniPipeline__standardSchedule.stm
[2025-07-14T12:16:54.257806Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[2]: --log=stm_sreport
[2025-07-14T12:16:54.257810Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[3]: --soc=TegraA
[2025-07-14T12:16:54.257814Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[4]: --timeout-us=80000000
[2025-07-14T12:16:54.257818Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[5]: -m
[2025-07-14T12:16:54.257822Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[6]: --schedule-manager-name=CGF-ScheduleManager
[2025-07-14T12:16:54.257825Z][DEBUG][tid:0][Launcher.cpp:744][Launcher] stm_master arg[7]: --num-input-schedule=1
[2025-07-14T12:16:54.257830Z][DEBUG][tid:0][Launcher.cpp:764][Launcher] The standard streams are redirected into file for app: stm_master logSpec: file/rfc5424.user.stm_master:/usr/local/driveworks/apps/minipipeline/LogFolder/stm_master.log
[2025-07-14T12:16:54.258140Z][DEBUG][tid:0][Launcher.cpp:927][Launcher] All apps are launched.


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [14-07-2025 12:16:54] TopExecutor: set TopExecutor to cpuset /sys/fs/cgroup/cpuset/rr2init/tasks
DefaultLogger: [14-07-2025 12:16:54] Failed to open cpuset /sys/fs/cgroup/cpuset/rr2init/tasks, errno: No such file or directory (2)
DefaultLogger: [14-07-2025 12:16:54] Failed to set TopExecutor to RR2 init cpuset: /sys/fs/cgroup/cpuset/rr2init/tasks
terminate called after throwing an instance of 'std::runtime_error'
  what():  Cannot load node shared library libminipipeline_nodes.so: libminipipeline_nodes.so: cannot open shared object file: No such file or directory


***** Backtrace disabled *****
[2025-07-14T12:17:05.250379Z][INFO][tid:0][Launcher.cpp:1198][Launcher] Got signal: 17 (Child exited), si_pid: 1440689
[2025-07-14T12:17:05.250452Z][DEBUG][tid:0][Launcher.cpp:1270][Launcher] Sending SIGINT: /usr/local/driveworks/bin//ScheduleManager, name: schedule_manager
[2025-07-14T12:17:05.250588Z][FATAL][tid:0][Launcher.cpp:1033][Launcher] Process mainClient:1440689 failed with exit code: 217
[2025-07-14T12:17:05.250609Z][ERROR][tid:0][Launcher.cpp:1299][Launcher] There is child process exited abnormally.
[2025-07-14T12:17:05.250625Z][ERROR][tid:0][Launcher.cpp:1392][Launcher] Running processes:
[2025-07-14T12:17:05.250631Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	ssm: 1440688
[2025-07-14T12:17:05.250636Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	schedule_manager: 1440690
[2025-07-14T12:17:05.250641Z][ERROR][tid:0][Launcher.cpp:1397][Launcher] 	stm_master: 1440691
[2025-07-14T12:17:05.250648Z][ERROR][tid:0][Launcher.cpp:1356][Launcher] Killing all live child processes with SIGTERM...


--------------------------------------------------------------
WARNING: Using default Logger, most probably DriveWorks
         library was linked more than once.
--------------------------------------------------------------

DefaultLogger: [14-07-2025 12:17:05] [ScheduleManager] received exit
[2025-07-14T12:17:05.301280Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process ssm:1440688 terminated by signal: 15 (Terminated)
[2025-07-14T12:17:35.301425Z][ERROR][tid:0][Launcher.cpp:1327][Launcher] sigtimedwait() timeout.
[2025-07-14T12:17:35.301582Z][ERROR][tid:0][Launcher.cpp:1384][Launcher] Killing all live child processes with SIGKILL...
[2025-07-14T12:17:35.304198Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process stm_master:1440691 terminated by signal: 9 (Killed)
[2025-07-14T12:17:35.315059Z][FATAL][tid:0][Launcher.cpp:1039][Launcher] Process schedule_manager:1440690 terminated by signal: 9 (Killed)
[2025-07-14T12:17:35.315096Z][INFO][tid:0][Launcher.cpp:1095][Launcher] waitForChildExit: No more child process!
[2025-07-14T12:17:35.315102Z][ERROR][tid:0][Launcher.cpp:1345][Launcher] All child processes has been killed successfully.
[2025-07-14T12:17:35.315116Z][FATAL][tid:0][Launcher.cpp:1565][Launcher] launcher exit status: 217
[2025-07-14T12:17:35.315199Z][DEBUG][tid:0][Launcher.cpp:1589][Launcher] swc_list.txt content:
line 1 : mainClient,127.0.0.1
line 2 : schedule_manager,127.0.0.1
line 3 : 

[2025-07-14T12:17:35.315399Z][ERROR][tid:0][Launcher.cpp:1601][Launcher] Failed to remove SWC/SSM temp files: Inappropriate ioctl for device
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$

mainClient_0.log

reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat mainClient_0.log
....
<14>1 2025-07-14T12:17:05.042587Z - mainClient 1440689 - - [1693220066992634us][INFO][tid:rr2_main][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor camera:front:center:60fov id: 1 protocol: camera.virtual parameters: video=video_B0_FC_60.h264,timestamp=video_time_0.txt
<13>1 2025-07-14T12:17:05.042656Z - mainClient 1440689 - - [1693220066992703us][DEBUG][tid:rr2_main][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> camera.virtual, video=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_B0_FC_60.h264,timestamp=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_time_0.txt
<13>1 2025-07-14T12:17:05.042906Z - mainClient 1440689 - - [1693220066992953us][DEBUG][tid:rr2_main][SensorFactory.cpp:333][NO_TAG] Found driver: camera.virtual
<12>1 2025-07-14T12:17:05.042937Z - mainClient 1440689 - - [1693220066992984us][WARN][tid:rr2_main][CameraVirtual.cpp:171][NO_TAG] CameraVirtual: h264 and h265 video format decoding is deprecated. Please switch to a different format.
<13>1 2025-07-14T12:17:05.056399Z - mainClient 1440689 - - [1693220067006440us][DEBUG][tid:scheduleManagerReceiver][ScheduleManagerReceiver.cpp:193][Receiver] [Receiver] attempting connection 
<13>1 2025-07-14T12:17:05.075160Z - mainClient 1440689 - - [1693220067025202us][DEBUG][tid:rr2_main][IndexTable.cpp:226][NO_TAG] IndexTable: loading from file "/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_B0_FC_60.h264.seek"
<13>1 2025-07-14T12:17:05.075266Z - mainClient 1440689 - - [1693220067025314us][DEBUG][tid:rr2_main][VirtualSensor.cpp:158][NO_TAG] CameraVirtualNvMedia: no seek table found at /usr/local/driveworks-5.14/data/samples/minipipeline/dataset/video_B0_FC_60.h264.seek, seeking is not available.
<13>1 2025-07-14T12:17:05.075282Z - mainClient 1440689 - - [1693220067025330us][DEBUG][tid:rr2_main][VirtualSensor.cpp:167][NO_TAG] CameraVirtualNvMedia: seek table with 601 entries covering 601 events ranging from 1526502646677968 to 1526502666677973 usecs
<13>1 2025-07-14T12:17:05.137338Z - mainClient 1440689 - - [1693220067087377us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:112][dwCameraNode] params sensorName = camera:front:center:60fov
<13>1 2025-07-14T12:17:05.137386Z - mainClient 1440689 - - [1693220067087433us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:113][dwCameraNode] params rigHandle = not nullptr
<13>1 2025-07-14T12:17:05.137398Z - mainClient 1440689 - - [1693220067087447us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:114][dwCameraNode] params cudaStream = not nullptr
<13>1 2025-07-14T12:17:05.137408Z - mainClient 1440689 - - [1693220067087457us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:115][dwCameraNode] params sal = not nullptr
<13>1 2025-07-14T12:17:05.137418Z - mainClient 1440689 - - [1693220067087466us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:116][dwCameraNode] params ctx = not nullptr
<13>1 2025-07-14T12:17:05.137426Z - mainClient 1440689 - - [1693220067087475us][DEBUG][tid:rr2_main][dwCameraNodeImpl.cpp:117][dwCameraNode] params frameSkipMask = null
<14>1 2025-07-14T12:17:05.137550Z - mainClient 1440689 - - [1693220067087597us][INFO][tid:rr2_main][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.camera1.cameraNode
<13>1 2025-07-14T12:17:05.137634Z - mainClient 1440689 - - [1693220067087682us][DEBUG][tid:rr2_main][Runtime.cpp:429][Runtime] PRE INIT, SWC NAME : miniPipeline : calling subcomponent imuSensor->initNodeCollectTasks()
<13>1 2025-07-14T12:17:05.137677Z - mainClient 1440689 - - [1693220067087725us][DEBUG][tid:rr2_main][Runtime.cpp:429][Runtime] PRE INIT, SWC NAME : miniPipeline : calling subcomponent radarSensor0->initNodeCollectTasks()
<13>1 2025-07-14T12:17:05.137700Z - mainClient 1440689 - - [1693220067087748us][DEBUG][tid:rr2_main][Runtime.cpp:429][Runtime] PRE INIT, SWC NAME : miniPipeline : calling subcomponent radarSensor1->initNodeCollectTasks()
<13>1 2025-07-14T12:17:05.138137Z - mainClient 1440689 - - [1693220067088180us][DEBUG][tid:1][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline.imuSensor : subcomponent imuNode is being created with parameter {
    "frameSkipMask": {
        "default": "",
        "type": "dw::core::FixedString<32>"
    },
    "inputModeVal": {
        "default": false,
        "type": "bool"
    }
}
<13>1 2025-07-14T12:17:05.138190Z - mainClient 1440689 - - [1693220067088236us][DEBUG][tid:2][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline.radarSensor0 : subcomponent radarNode is being created with parameter {
    "frameSkipMask": {
        "default": "",
        "type": "dw::core::FixedString<32>"
    },
    "sensorId": {
        "default": 0,
        "type": "size_t"
    }
}
<13>1 2025-07-14T12:17:05.138265Z - mainClient 1440689 - - [1693220067088308us][DEBUG][tid:3][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline.radarSensor1 : subcomponent radarNode is being created with parameter {
    "frameSkipMask": {
        "default": "",
        "type": "dw::core::FixedString<32>"
    },
    "sensorId": {
        "default": 1,
        "type": "size_t"
    }
}
<14>1 2025-07-14T12:17:05.138429Z - mainClient 1440689 - - [1693220067088475us][INFO][tid:1][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor imu:xsens id: 16 protocol: imu.virtual parameters: file=imu_xsens.bin
<13>1 2025-07-14T12:17:05.138465Z - mainClient 1440689 - - [1693220067088508us][DEBUG][tid:4][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<14>1 2025-07-14T12:17:05.138528Z - mainClient 1440689 - - [1693220067088570us][INFO][tid:2][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor radar:rear:left:center id: 7 protocol: radar.virtual parameters: file=radar_BSL.bin
<14>1 2025-07-14T12:17:05.138572Z - mainClient 1440689 - - [1693220067088614us][INFO][tid:3][dwSensorNodeImpl.hpp:147][dwSensorNodeImpl] New sensor radar:rear:right:center id: 8 protocol: radar.virtual parameters: file=radar_BSR.bin
<13>1 2025-07-14T12:17:05.138609Z - mainClient 1440689 - - [1693220067088656us][DEBUG][tid:5][Runtime.cpp:381][Runtime] PRE INIT, GRAPHLET NAME : miniPipeline : subcomponent visualization is being created with parameter {
    "fullscreen": {
        "default": true,
        "type": "bool"
    },
    "masterCameraIndex": {
        "default": 0,
        "type": "size_t"
    },
    "offscreen": {
        "default": false,
        "type": "bool"
    },
    "streamIndex": {
        "default": 0,
        "type": "size_t"
    },
    "winSizeH": {
        "default": 900,
        "type": "uint32_t"
    },
    "winSizeW": {
        "default": 1600,
        "type": "uint32_t"
    }
}
<13>1 2025-07-14T12:17:05.138636Z - mainClient 1440689 - - [1693220067088680us][DEBUG][tid:3][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> radar.virtual, file=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSR.bin
<13>1 2025-07-14T12:17:05.138679Z - mainClient 1440689 - - [1693220067088719us][DEBUG][tid:6][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.138724Z - mainClient 1440689 - - [1693220067088767us][DEBUG][tid:2][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> radar.virtual, file=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSL.bin
<13>1 2025-07-14T12:17:05.138763Z - mainClient 1440689 - - [1693220067088807us][DEBUG][tid:1][SensorFactory.cpp:321][NO_TAG] SensorFactory::createSensor() -> imu.virtual, file=/usr/local/driveworks-5.14/data/samples/minipipeline/dataset/imu_xsens.bin
<13>1 2025-07-14T12:17:05.138820Z - mainClient 1440689 - - [1693220067088852us][DEBUG][tid:7][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.138853Z - mainClient 1440689 - - [1693220067088900us][DEBUG][tid:3][SensorFactory.cpp:333][NO_TAG] Found driver: radar.virtual
<13>1 2025-07-14T12:17:05.138912Z - mainClient 1440689 - - [1693220067088955us][DEBUG][tid:8][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.138955Z - mainClient 1440689 - - [1693220067088998us][DEBUG][tid:9][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139000Z - mainClient 1440689 - - [1693220067089040us][DEBUG][tid:10][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139040Z - mainClient 1440689 - - [1693220067089083us][DEBUG][tid:11][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139106Z - mainClient 1440689 - - [1693220067089144us][DEBUG][tid:12][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.139160Z - mainClient 1440689 - - [1693220067089207us][DEBUG][tid:1][SensorFactory.cpp:333][NO_TAG] Found driver: imu.virtual
<13>1 2025-07-14T12:17:05.139223Z - mainClient 1440689 - - [1693220067089270us][DEBUG][tid:2][SensorFactory.cpp:333][NO_TAG] Found driver: radar.virtual
<13>1 2025-07-14T12:17:05.139427Z - mainClient 1440689 - - [1693220067089474us][DEBUG][tid:3][LegacyDemuxer.cpp:430][NO_TAG] Seek file /usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSR.bin.seek: seek table with 112 entries covering 3571 events ranging from 1526502646752732 to 1526502666699517 usecs
<13>1 2025-07-14T12:17:05.139667Z - mainClient 1440689 - - [1693220067089714us][DEBUG][tid:2][LegacyDemuxer.cpp:430][NO_TAG] Seek file /usr/local/driveworks-5.14/data/samples/minipipeline/dataset/radar_BSL.bin.seek: seek table with 113 entries covering 3599 events ranging from 1526502646700301 to 1526502666699499 usecs
<14>1 2025-07-14T12:17:05.141429Z - mainClient 1440689 - - [1693220067091474us][INFO][tid:1][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.imuSensor.imuNode
<13>1 2025-07-14T12:17:05.141473Z - mainClient 1440689 - - [1693220067091521us][DEBUG][tid:1][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<14>1 2025-07-14T12:17:05.148450Z - mainClient 1440689 - - [1693220067098493us][INFO][tid:2][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.radarSensor0.radarNode
<14>1 2025-07-14T12:17:05.148530Z - mainClient 1440689 - - [1693220067098572us][INFO][tid:3][CVarManager.cpp:242][NO_TAG] There is no CVAR group associated with the given module: miniPipeline.radarSensor1.radarNode
<13>1 2025-07-14T12:17:05.148590Z - mainClient 1440689 - - [1693220067098637us][DEBUG][tid:2][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<13>1 2025-07-14T12:17:05.148635Z - mainClient 1440689 - - [1693220067098681us][DEBUG][tid:3][ThreadPool.hpp:107][ThreadPool] Thread exit from ThreadPool: nodeInit
<11>1 2025-07-14T12:17:05.148848Z - mainClient 1440689 - - [1693220067098892us][ERROR][tid:rr2_main][TopExecutor.hpp:3514][TopExecutor] initSSM: Failed to initialize module with error: Cannot load node shared library libminipipeline_nodes.so: libminipipeline_nodes.so: cannot open shared object file: No such file or directory
<11>1 2025-07-14T12:17:05.149302Z - mainClient 1440689 - - [1693220067099348us][ERROR][tid:rr2_main][TopExecutor.hpp:694][TopExecutor] [FaultHandler] Caught signal: 6 sent by pid 1440689
<8>1 2025-07-14T12:17:05.149358Z - mainClient 1440689 - - [1693220067099406us][FATAL][tid:rr2_main][FaultHandler.cpp:94][FaultHandler] 

***** Backtrace disabled *****
<8>1 2025-07-14T12:17:05.149391Z - mainClient 1440689 - - [1693220067099439us][FATAL][tid:rr2_main][TopExecutor.hpp:634][TopExecutor] Caught signal 6 sent by pid 1440689 during initialization step 217: Initializing system state manager
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat dumpLaunchSpec.json 
{
    "connections": [],
    "description": {
        "CameraSensor": {
            "connections": [
                {
                    "dests": {
                        "cameraNode.SENSOR_EXTRINSICS": {}
                    },
                    "src": "SENSOR_EXTRINSICS"
                },
                {
                    "dests": {
                        "cameraNode.VIRTUAL_SYNC_TIME": {}
                    },
                    "src": "VIRTUAL_SYNC_TIME"
                },
                {
                    "dests": {
                        "CUDA_PROCESSED": {}
                    },
                    "params": {
                        "singleton": true
                    },
                    "src": "cameraNode.IMAGE_NATIVE_PROCESSED"
                },
                {
                    "dests": {
                        "CUDA_PROCESSED_RGBA": {}
                    },
                    "src": "cameraNode.IMAGE_PROCESSED_RGBA"
                },
                {
                    "dests": {
                        "IMAGE_TIMESTAMP": {}
                    },
                    "src": "cameraNode.IMAGE_TIMESTAMP"
                },
                {
                    "dests": {
                        "INTRINSICS": {}
                    },
                    "src": "cameraNode.INTRINSICS"
                },
                {
                    "dests": {
                        "NEXT_IMAGE_TIMESTAMP": {}
                    },
                    "src": "cameraNode.NEXT_IMAGE_TIMESTAMP"
                },
                {
                    "dests": {
                        "SENSOR_PROPERTIES": {}
                    },
                    "src": "cameraNode.SENSOR_PROPERTIES"
                }
            ],
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "name": "CameraSensor",
            "outputPorts": {
                "CUDA_PROCESSED": {
                    "type": "dwImageHandle_t"
                },
                "CUDA_PROCESSED_RGBA": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "INTRINSICS": {
                    "type": "dwCameraIntrinsics"
                },
                "NEXT_IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                }
            },
            "parameters": {
                "cameraIndex": {
                    "default": 0,
                    "type": "size_t"
                },
                "frameSkipMask": {
                    "default": "",
                    "type": "dw::core::FixedString<32>"
                },
                "streamIndex": {
                    "default": 0,
                    "type": "size_t"
                },
                "useEEPROMIntrinsics": {
                    "default": false,
                    "type": "bool"
                }
            },
            "subcomponents": {
                "cameraNode": {
                    "componentType": "dw::framework::dwCameraNode",
                    "parameters": {
                        "cameraIndex": "$cameraIndex",
                        "frameSkipMask": "$frameSkipMask",
                        "streamIndex": "$streamIndex",
                        "useEEPROMIntrinsics": "$useEEPROMIntrinsics"
                    }
                }
            }
        },
        "ImuSensor": {
            "connections": [
                {
                    "dests": {
                        "imuNode.SENSOR_EXTRINSICS": {}
                    },
                    "src": "IMU_SENSOR_EXTRINSICS"
                },
                {
                    "dests": {
                        "imuNode.VIRTUAL_SYNC_TIME": {}
                    },
                    "src": "IMU_VIRTUAL_SYNC_TIME"
                },
                {
                    "dests": {
                        "NEXT_IMU_TIMESTAMP": {}
                    },
                    "src": "imuNode.NEXT_TIMESTAMP"
                },
                {
                    "dests": {
                        "IMU_PROCESSED_DATA": {}
                    },
                    "src": "imuNode.PROCESSED_DATA"
                },
                {
                    "dests": {
                        "IMU_SENSOR_PROPERTIES": {}
                    },
                    "src": "imuNode.SENSOR_PROPERTIES"
                },
                {
                    "dests": {
                        "IMU_TIMESTAMP": {}
                    },
                    "src": "imuNode.TIMESTAMP"
                }
            ],
            "inputPorts": {
                "IMU_SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "IMU_VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "name": "ImuSensor",
            "outputPorts": {
                "IMU_PROCESSED_DATA": {
                    "type": "dwIMUFrame"
                },
                "IMU_SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                },
                "IMU_TIMESTAMP": {
                    "type": "dwSensorTsAndID"
                },
                "NEXT_IMU_TIMESTAMP": {
                    "type": "dwTime_t"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "default": "",
                    "type": "dw::core::FixedString<32>"
                },
                "sensorAffinityMask": {
                    "default": 1,
                    "type": "int32_t"
                },
                "sensorThreadPriority": {
                    "default": 99,
                    "type": "int32_t"
                }
            },
            "subcomponents": {
                "imuNode": {
                    "componentType": "dw::framework::dwIMUNode",
                    "parameters": {
                        "frameSkipMask": "$frameSkipMask"
                    }
                }
            }
        },
        "MiniPipeline": {
            "connections": [
                {
                    "dests": {
                        "visualization.IMAGE[0]": {}
                    },
                    "src": "camera0.CUDA_PROCESSED"
                },
                {
                    "dests": {
                        "visualization.IMAGE[1]": {}
                    },
                    "src": "camera1.CUDA_PROCESSED"
                },
                {
                    "dests": {
                        "visualization.IMU_FRAME": {}
                    },
                    "src": "imuSensor.IMU_PROCESSED_DATA"
                },
                {
                    "dests": {
                        "visualization.RADAR_PROCESSED_DATA": {}
                    },
                    "src": "radarSensor0.RADAR_PROCESSED_DATA"
                }
            ],
            "inputPorts": {},
            "name": "MiniPipeline",
            "outputPorts": {},
            "parameters": {
                "masterCameraIndex": {
                    "default": 0,
                    "type": "size_t"
                },
                "streamIndex": {
                    "default": 0,
                    "type": "size_t"
                }
            },
            "subcomponents": {
                "camera0": {
                    "componentType": "CameraSensor",
                    "parameters": {
                        "cameraIndex": 0
                    }
                },
                "camera1": {
                    "componentType": "CameraSensor",
                    "parameters": {
                        "cameraIndex": 1
                    }
                },
                "imuSensor": {
                    "componentType": "ImuSensor"
                },
                "radarSensor0": {
                    "componentType": "RadarSensor",
                    "parameters": {
                        "sensorId": 0
                    }
                },
                "radarSensor1": {
                    "componentType": "RadarSensor",
                    "parameters": {
                        "sensorId": 1
                    }
                },
                "visualization": {
                    "componentType": "minipipeline::VisualizationNode",
                    "parameters": {
                        "fullscreen": true,
                        "masterCameraIndex": "$masterCameraIndex",
                        "offscreen": false,
                        "streamIndex": "$streamIndex",
                        "winSizeH": 900,
                        "winSizeW": 1600
                    }
                }
            }
        },
        "RadarSensor": {
            "connections": [
                {
                    "dests": {
                        "radarNode.SENSOR_EXTRINSICS": {}
                    },
                    "src": "SENSOR_EXTRINSICS"
                },
                {
                    "dests": {
                        "radarNode.VIRTUAL_SYNC_TIME": {}
                    },
                    "src": "VIRTUAL_SYNC_TIME"
                },
                {
                    "dests": {
                        "NEXT_RADAR_TIMESTAMP": {}
                    },
                    "src": "radarNode.NEXT_TIMESTAMP"
                },
                {
                    "dests": {
                        "RADAR_PROCESSED_DATA": {}
                    },
                    "src": "radarNode.PROCESSED_DATA"
                },
                {
                    "dests": {
                        "SENSOR_PROPERTIES": {}
                    },
                    "src": "radarNode.SENSOR_PROPERTIES"
                },
                {
                    "dests": {
                        "RADAR_TIMESTAMP": {}
                    },
                    "src": "radarNode.TIMESTAMP"
                }
            ],
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "name": "RadarSensor",
            "outputPorts": {
                "NEXT_RADAR_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "RADAR_PROCESSED_DATA": {
                    "type": "dwRadarScan"
                },
                "RADAR_TIMESTAMP": {
                    "type": "dwSensorTsAndID"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "default": "",
                    "type": "dw::core::FixedString<32>"
                },
                "sensorAffinityMask": {
                    "default": 1,
                    "type": "int32_t"
                },
                "sensorId": {
                    "default": 0,
                    "type": "size_t"
                },
                "sensorThreadPriority": {
                    "default": 99,
                    "type": "int32_t"
                }
            },
            "subcomponents": {
                "radarNode": {
                    "componentType": "dw::framework::dwRadarNode",
                    "parameters": {
                        "frameSkipMask": "$frameSkipMask",
                        "sensorId": "$sensorId"
                    }
                }
            }
        },
        "dw::framework::dwCameraNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "library": "libdwframework_dwnodes.so.5.14",
            "name": "dw::framework::dwCameraNode",
            "outputPorts": {
                "IMAGE_NATIVE_PROCESSED": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_NATIVE_RAW": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_PROCESSED_RGBA": {
                    "type": "dwImageHandle_t"
                },
                "IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "IMAGE_TIMESTAMP_AND_ID": {
                    "type": "dwSensorTsAndID"
                },
                "INTRINSICS": {
                    "type": "dwCameraIntrinsics"
                },
                "NEXT_IMAGE_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                }
            },
            "parameters": {
                "cameraIndex": {
                    "type": "size_t"
                },
                "frameSkipMask": {
                    "type": "dw::core::FixedString<32>"
                },
                "streamIndex": {
                    "type": "size_t"
                },
                "useEEPROMIntrinsics": {
                    "type": "bool"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RAW_OUTPUT",
                    "processorTypes": [
                        "GPU"
                    ]
                },
                {
                    "name": "PROCESSED_OUTPUT",
                    "processorTypes": [
                        "GPU"
                    ]
                },
                {
                    "name": "PROCESSED_RGBA_OUTPUT",
                    "processorTypes": [
                        "GPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        },
        "dw::framework::dwIMUNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "FRAME": {
                    "bindingRequired": true,
                    "type": "dwIMUFrame"
                },
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "bindingRequired": true,
                    "type": "dwTime_t"
                }
            },
            "library": "libdwframework_dwnodes.so.5.14",
            "name": "dw::framework::dwIMUNode",
            "outputPorts": {
                "NEXT_TIMESTAMP": {
                    "bindingRequired": true,
                    "type": "dwTime_t"
                },
                "PROCESSED_DATA": {
                    "bindingRequired": true,
                    "type": "dwIMUFrame"
                },
                "RAW_DATA": {
                    "bindingRequired": true,
                    "type": "dwSensorNodeRawData"
                },
                "SENSOR_PROPERTIES": {
                    "bindingRequired": true,
                    "type": "dwSensorNodeProperties"
                },
                "TIMESTAMP": {
                    "bindingRequired": true,
                    "type": "dwSensorTsAndID"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "type": "dw::core::FixedString<32>"
                },
                "inputModeVal": {
                    "default": false,
                    "type": "bool"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RAW_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "PROCESSED_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        },
        "dw::framework::dwRadarNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "SENSOR_EXTRINSICS": {
                    "type": "dwCalibratedExtrinsics"
                },
                "SENSOR_INTRINSICS": {
                    "type": "dwCalibratedRadarIntrinsics"
                },
                "VIRTUAL_SYNC_TIME": {
                    "type": "dwTime_t"
                }
            },
            "library": "libdwframework_dwnodes.so.5.14",
            "name": "dw::framework::dwRadarNode",
            "outputPorts": {
                "NEXT_TIMESTAMP": {
                    "type": "dwTime_t"
                },
                "PROCESSED_DATA": {
                    "type": "dwRadarScan"
                },
                "RAW_DATA": {
                    "type": "dwSensorNodeRawData"
                },
                "SENSOR_INTRINSICS": {
                    "type": "dwCalibratedRadarIntrinsics"
                },
                "SENSOR_PROPERTIES": {
                    "type": "dwSensorNodeProperties"
                },
                "TIMESTAMP": {
                    "type": "dwSensorTsAndID"
                }
            },
            "parameters": {
                "frameSkipMask": {
                    "type": "dw::core::FixedString<32>"
                },
                "sensorId": {
                    "type": "size_t"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RAW_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "PROCESSED_OUTPUT",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        },
        "minipipeline::VisualizationNode": {
            "comment": "Generated by the nodedescriptor tool based on data provided by the C++ API of the node class",
            "generated": true,
            "inputPorts": {
                "BOX_ARR": {
                    "type": "YoloScoreRectArray"
                },
                "BOX_NUM": {
                    "type": "uint32_t"
                },
                "IMAGE": {
                    "array": 9,
                    "bindingRequired": true,
                    "type": "dwImageHandle_t"
                },
                "IMU_FRAME": {
                    "type": "dwIMUFrame"
                },
                "LIDAR_PACKET_ARRAYS": {
                    "array": 8,
                    "type": "dwLidarPacketsArray"
                },
                "LIDAR_POINT_CLOUD": {
                    "array": 8,
                    "type": "dwPointCloud"
                },
                "RADAR_PROCESSED_DATA": {
                    "type": "dwRadarScan"
                },
                "VIO_NON_SAFETY_STATE": {
                    "type": "dwVehicleIONonSafetyState"
                },
                "VIO_SAFETY_STATE": {
                    "type": "dwVehicleIOSafetyState"
                }
            },
            "library": "libminipipeline_nodes.so",
            "name": "minipipeline::VisualizationNode",
            "outputPorts": {
                "VIO_SAFETY_CMD": {
                    "type": "dwVehicleIOSafetyCommand"
                }
            },
            "parameters": {
                "fullscreen": {
                    "type": "bool"
                },
                "masterCameraIndex": {
                    "type": "size_t"
                },
                "offscreen": {
                    "type": "bool"
                },
                "streamIndex": {
                    "type": "size_t"
                },
                "winSizeH": {
                    "type": "uint32_t"
                },
                "winSizeW": {
                    "type": "uint32_t"
                }
            },
            "passes": [
                {
                    "name": "SETUP",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "ACQUIRE_FRAME",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RENDER_FRAME",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RENDER_INFO_BAR",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "RENDER_DEBUG",
                    "processorTypes": [
                        "CPU"
                    ]
                },
                {
                    "name": "TEARDOWN",
                    "processorTypes": [
                        "CPU"
                    ]
                }
            ]
        }
    },
    "extraInfo": {
        "Map_ini": {
            "enabled": "false",
            "useAbsolutePath": "false",
            "useMapTracker": "false"
        },
        "calibrationOutputFileName": "out_calibration.json",
        "cameraEnabled": "true, true, false, false, false, false, false, false",
        "masterCameraIndex": "0",
        "rigFileName": "rig.json",
        "rigOutputFileName": "rig.json"
    },
    "logSpec": "file/rfc5424:{{logpath}}/{{appname}}.log",
    "name": "MiniPipelineApp",
    "parameters": {
        "imageFov0": {
            "default": "ISP_120FOV",
            "type": "string"
        },
        "imageFov1": {
            "default": "ISP_60FOV",
            "type": "string"
        },
        "imageFov2": {
            "default": "ISP_60FOV",
            "type": "string"
        },
        "imageFov3": {
            "default": "ISP_120FOV",
            "type": "string"
        },
        "imageHeight0": {
            "default": "1208",
            "type": "string"
        },
        "imageHeight1": {
            "default": "1208",
            "type": "string"
        },
        "imageHeight2": {
            "default": "1208",
            "type": "string"
        },
        "imageHeight3": {
            "default": "1208",
            "type": "string"
        },
        "imageWidth0": {
            "default": "1920",
            "type": "string"
        },
        "imageWidth1": {
            "default": "1920",
            "type": "string"
        },
        "imageWidth2": {
            "default": "1920",
            "type": "string"
        },
        "imageWidth3": {
            "default": "1920",
            "type": "string"
        }
    },
    "processes": {
        "mainClient": {
            "executable": "LoaderLite",
            "libName": "RuntimeGraphlet",
            "moduleName": "mainClient",
            "runOn": "machine0",
            "subcomponents": [
                "miniPipeline.camera0",
                "miniPipeline.camera1",
                "miniPipeline.radarSensor0",
                "miniPipeline.radarSensor1",
                "miniPipeline.imuSensor",
                "miniPipeline.visualization"
            ]
        },
        "schedule_manager": {
            "argv": {
                "--enableScheduleSwitching": "true",
                "--scheduleManagerHostIP": "127.0.0.1",
                "--scheduleManagerHostPort": "4010",
                "--scheduleManagerNumClients": "1"
            },
            "executable": "ScheduleManager",
            "runOn": "machine0"
        },
        "ssm": {
            "executable": "SSM/vanillassm",
            "runOn": "machine0"
        },
        "stm_master": {
            "argv": {
                "--log": "stm_sreport",
                "--soc": "TegraA",
                "--timeout-us": "80000000",
                "-m": true
            },
            "executable": "stm_master",
            "runOn": "machine0"
        }
    },
    "requiredSensors": {
        "camera:front:center:120fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 0
        },
        "camera:front:center:60fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 1
        },
        "camera:rear:left:120fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 3
        },
        "camera:rear:right:120fov": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 2
        },
        "imu:xsens": {
            "connectedTo": [
                "machine0"
            ]
        },
        "radar:rear:left:center": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 0
        },
        "radar:rear:right:center": {
            "connectedTo": [
                "machine0"
            ],
            "typeIndex": 1
        }
    },
    "sensorMappings": {
        "SIM-HPY8": {
            "gps0": "gps:simulator",
            "imu0": "imu:simulator",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:vehicle"
        },
        "hy8": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hy8.1_daimler_c118": {
            "gps0": "gps:vehicle",
            "imu0": "imu:vehicle",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "timeSensor0": "time:nvpps:rec:00",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hy8.1_daimler_gls": {
            "gps0": "gps:novatel",
            "gps1": "gps:novatel",
            "imu0": "imu:novatel",
            "imu1": "imu:novatel",
            "lidar:front:center:p128": "lidar:gt:top:p128",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hy8_daimler": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "lidar:front:center:p128": "lidar:gt:top:p128",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hy8_protoplus": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hy8_protoplus_parking": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hyperion_8": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hyperion_8.1": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:vehicle"
        },
        "hyperion_8.1_daimler_c118": {
            "gps0": "gps:vehicle",
            "imu0": "imu:vehicle",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "timeSensor0": "time:nvpps:rec:00",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8.1_daimler_c118_sat": {
            "timeSensor0": "time:nvpps:rec:00",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8.1_sat": {},
        "hyperion_8.1p_8.0s_daimler_s223": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8_daimler_s222": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "lidar:front:center:p128": "lidar:gt:top:p128",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8_daimler_s223": {
            "gps0": "gps:ublox:f9k",
            "imu0": "imu:continental",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "hyperion_8_protoplus": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "hyperion_8_protoplus_parking": {
            "gps0": "gps:ublox:f9k",
            "gps1": "gps:novatel",
            "imu0": "imu:continental",
            "imu1": "imu:continental:safety",
            "imu2": "imu:novatel",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "can:0",
            "vehicleSensor1": "can:1"
        },
        "sim_hyperion_8.1_daimler_s223": {
            "gps0": "gps:simulator",
            "imu0": "imu:simulator",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        },
        "sim_hyperion_8_daimler_s223": {
            "gps0": "gps:simulator",
            "imu0": "imu:simulator",
            "synthesizedCameraFC60": "camera:front:wide:120fov",
            "ultrasonic": "uss:valeo",
            "vehicleSensor0": "data:daimler"
        }
    },
    "states": {
        "STANDARD": {
            "default": true,
            "stmScheduleKey": "standardSchedule"
        }
    },
    "stmSchedules": {
        "standardSchedule": {
            "hyperepochs": {
                "mainHyperepoch": {
                    "epochs": {
                        "mainEpoch": {
                            "frames": 1,
                            "passes": [
                                [
                                    "miniPipeline.imuSensor",
                                    "miniPipeline.radarSensor0",
                                    "miniPipeline.radarSensor1"
                                ]
                            ],
                            "period": 33000000
                        }
                    },
                    "period": 33000000,
                    "resources": {
                        "machine0.CPU0": []
                    }
                },
                "renderHyperepoch": {
                    "epochs": {
                        "renderEpoch": {
                            "frames": 1,
                            "passes": [
                                [
                                    "miniPipeline.camera0",
                                    "miniPipeline.camera1",
                                    "miniPipeline.visualization"
                                ]
                            ],
                            "period": 33000000
                        }
                    },
                    "period": 33000000,
                    "resources": {
                        "machine0.CPU1": [],
                        "machine0.CPU2": [],
                        "machine0.CPU3": [],
                        "machine0.CPU4": [],
                        "machine0.dGPU": [],
                        "mainClient.CUDA_MUTEX_LOCK": [],
                        "mainClient.CUDA_STREAM0:dGPU": []
                    }
                }
            },
            "wcet": "./MiniPipeline_wcet.yaml"
        }
    },
    "subcomponents": {
        "miniPipeline": {
            "componentType": "MiniPipeline",
            "parameters": {}
        }
    },
    "version": 2
}
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$ cat stm_master.log 
av/stm/runtime/src/master/master.c:472 assertion failure, errno=13 (Permission denied)

raised PROGRAM_ERROR : unhandled signal
reds@tegra-ubuntu:/usr/local/driveworks/apps/minipipeline/LogFolder$

Let me know if you need other specific logs, or informations ?

Kind regards,
Lucas

Dear @lucas.lattion1 ,
Could you review the steps in Error in Minipipeline Application after adding custom nodes - #8 by SivaRamaKrishnaNV. You can skip the custom node related entries.
Are you running the sample in a remote ssh session or directly on target ?

Dear @SivaRamaKrishnaNV,
How could I skip the related nodes entries ?
I am running the sample directly on target.
Additional info: I have no sensor connected, I would like to use the dataset.

Thanks,
Kind regards,
Lucas