Skip to content

Commit

Permalink
817 disable default nvidia runtime l4t (#818)
Browse files Browse the repository at this point in the history
* Extra doc notes for the `nvidia-container-runtime` configuration for L4T
  • Loading branch information
bwsw authored Jul 20, 2024
1 parent 15b96fb commit d1a8d45
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions docs/source/getting_started/0_configure_prod_env.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,31 @@ Nvidia Jetson Setup

An Nvidia Jetson device is almost ready to run Savant after setup. You only need to install **Compose** plugin for Docker. Follow the official `guide <https://docs.docker.com/compose/install/linux/>`_ to install it.

After the installation disable the default Nvidia runtime for all images to properly use Savant sample compose files. This is necessary because particular containers can work in GPU-accelerated modes and others in CPU-only modes. To disable the runtime for all images, remove the following line from the ``/etc/docker/daemon.json`` file like demonstrated:

.. code-block:: json
{
"default-runtime": "nvidia", /* remove this line */
"runtimes": {
"nvidia": {
"path": "nvidia-container-runtime",
"runtimeArgs": []
}
}
}
Restart the Docker service to apply the changes:

.. code-block:: bash
sudo systemctl restart docker
.. note::

This step is crucial for the Jetson Orin Nano device because it has particular limitations because of NVENC absence and, thus, requires AO-RTSP to work on CPU.


Ubuntu 22.04 Setup
------------------

Expand Down

0 comments on commit d1a8d45

Please sign in to comment.