============= Compute Setup ============= x86 Platforms ------------- 1. Prepare a NVIDIA-powered platform with the following minimum specs: - Ubuntu 20.04+ - **Experimental**: WSL2 on Windows 11 - 16 GB general RAM - Discrete NVIDIA GPU with the following specs: - supports CUDA 11.8 with Volta or newer - minimum 8GB of VRAM and recommended 12GB+ 2. Install Docker from official instructions (`here `__) 3. Install the latest NVIDIA GPU Driver from official instructions (`here `__) Jetson Platforms ---------------- 1. `Install Jetpack `__ including the ``nvidia-container`` package. 2. After boot, confirm that you have installed ``Jetpack 5.1.2`` by running the following command. Confirm that the output has the terms ``R35 (release), REVISION: 4.1``. .. code:: bash cat /etc/nv_tegra_release 3. Run the following command to set the GPU and CPU clock to max. See `Maximizing Jetson Performance `__ for more details. .. code:: bash sudo /usr/bin/jetson_clocks 4. Run the following command to set the to power to MAX settings. See `Power Mode Controls `__ for more details. .. code:: bash sudo /usr/sbin/nvpmodel -m 0 5. Add your user to the ``docker`` group. .. code:: bash sudo usermod -aG docker $USER newgrp docker 6. Setup Docker. .. include:: /_snippets/docker_buildx.rst Consider adding more storage to your Jetson for a better experience: :doc:`Developer Environment Setup for Jetson ` .. toctree:: :hidden: :maxdepth: 1 jetson_storage.rst