Does DeepStream support RTX 2070? [DOCKER]

It’s taking forever to inference a “sample_720p.mjpeg” file.

And the docs need to updated as well, for building the binary before running the sample apps from the “~/deepstream_sdk_v4.0.2_x86_64/sources/apps/sample_apps” folder otherwise, the conf file is not found.

can you specify which sample app you are using?

I was introduced to DeepStream through a Nvidia’s webinar, so the first app that I tried after downloading the docker image was ‘deepstream-test1’

about this, sources/apps/sample_apps/deepstream-test1/README,

Please follow instructions in the apps/sample_apps/deepstream-app/README on how
to install the prequisites for Deepstream SDK, the DeepStream SDK itself and the
apps.
Compilation Steps:
$ cd apps/deepstream-test1/
$ make
$ ./deepstream-test1-app <h264_elementary_stream>

About taking forever issue, which GPU are you using? this sample render output on screen, if you are using Tesla platform, you can follow Deepstream/FAQ - eLinux.org 5A to setup virtual display
or you can choose modify the source to use fakesink.

  • sink = gst_element_factory_make (“nveglglessink”, “nvvideo-renderer”);
  • sink = gst_element_factory_make (“fakesink”, “nvvideo-renderer”);

Using the RTX 2070, based on the Turing platform

Will be making it from scratch on CUDA 10.1, since there is the pipeline that I need to develop