Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cuda 12.6 support #393

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions docs/guides/advanced-usage/using-nvidia-gpu.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The utilization of a GPU is advised for demanding transcoding tasks. If you want

Once you have confirmed the existence of a hardware-based encoder in your GPU, the only remaining step is to install the CUDA toolkit onto your system.

### Installation on Ubuntu 18.04, 20.04 and 22.04
### Installation on Ubuntu 20.04, 22.04 and 24.04

Ant Media Server now automatically utilizes the GPU with CUDA version 11.8, which is why it is necessary to install it.

Expand All @@ -31,15 +31,6 @@ To install, follow [this link](https://developer.nvidia.com/cuda-11-8-0-download

Instead of using ```sudo apt-get -y install cuda``` command to download whole CUDA package, we will just install the limited package of CUDA 11.8 to decrease installation time and space.

#### Ubuntu 18.04

```bash
sudo wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb
sudo dpkg -i cuda-keyring_1.0-1_all.deb
sudo apt-get update
sudo apt-get install cuda-runtime-11-8
```

#### Ubuntu 20.04

```bash
Expand All @@ -59,6 +50,18 @@ sudo apt-get update
sudo apt-get install cuda-runtime-11-8
```

#### Ubuntu 24.04

```bash
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb
sudo dpkg -i cuda-keyring_1.1-1_all.deb
sudo apt-get update
sudo apt-get -y install cuda-toolkit-12-6
sudo apt-get install -y cuda-drivers
sudo reboot

```

### NVIDIA A10 Tensor Core GPU

If you are using a GPU instance of the ```NV4as_v4/NV6ads``` family from Azure Marketplace, which features the NVIDIA A10 Tensor Core GPU, you may need to install the NVIDIA GRID drivers to ensure proper GPU functionality.
Expand Down