You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
Pipelines can sometimes fail in multi GPU systems due to video decode incompatibility. Pipeline will return an error when starting and service log will contain an entry like this
{"levelname": "INFO", "asctime": "2021-11-30 22:48:40,620", "message": "Creating Instance of Pipeline object_detection/person_vehicle_bike", "module": "pipeline_manager"}
{"levelname": "ERROR", "asctime": "2021-11-30 22:48:47,369", "message": "Error on Pipeline 1: gst-stream-error-quark: No valid frames decoded before end of stream (7): ../gst-libs/gst/video/gstvideodecoder.c(1246): gst_video_decoder_sink_event_default (): /GstPipeline:pipeline11/GstURIDecodeBin:source/GstDecodeBin:decodebin2/GstVaapiDecodeBin:vaapidecodebin2/GstVaapiDecode:vaapidecode2:\nno valid frames found", "module": "gstreamer_pipeline"}
Workaround is to disable GPU decode by clearing environment variable LIBVA_DRIVER_NAME
e.g. if using run script to start service:
./run.sh -v /tmp:/tmp -e LIBVA_DRIVER_NAME=
The text was updated successfully, but these errors were encountered:
Pipelines can sometimes fail in multi GPU systems due to video decode incompatibility. Pipeline will return an error when starting and service log will contain an entry like this
Workaround is to disable GPU decode by clearing environment variable
LIBVA_DRIVER_NAME
e.g. if using run script to start service:
The text was updated successfully, but these errors were encountered: