You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.3 KiB
Markdown

7 years ago
# nvidia-patch
7 years ago
This patch removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
7 years ago
Requirements:
- ubuntu (< 18.04 for 375.39 nvidia driver or kernel < 4.15)
- nvenc-compatible gpu (https://developer.nvidia.com/video-encode-decode-gpu-support-matrix#Encoder)
- nvidia driver. Patch availible for:
- 375.39 - https://download.nvidia.com/XFree86/Linux-x86_64/375.39/NVIDIA-Linux-x86_64-375.39.run
- 390.87 - https://download.nvidia.com/XFree86/Linux-x86_64/390.87/NVIDIA-Linux-x86_64-390.87.run
- 396.24 - https://download.nvidia.com/XFree86/Linux-x86_64/396.24/NVIDIA-Linux-x86_64-396.24.run
- 396.26 - https://uk.download.nvidia.com/tesla/396.26/NVIDIA-Linux-x86_64-396.26.run
- 396.37 - https://uk.download.nvidia.com/tesla/396.37/NVIDIA-Linux-x86_64-396.37.run
- 396.54 - https://download.nvidia.com/XFree86/Linux-x86_64/396.54/NVIDIA-Linux-x86_64-396.54.run
- 410.48
- 410.57 - https://download.nvidia.com/XFree86/Linux-x86_64/410.57/NVIDIA-Linux-x86_64-410.57.run
- 410.73 - https://download.nvidia.com/XFree86/Linux-x86_64/410.73/NVIDIA-Linux-x86_64-410.73.run
- 410.78 - https://download.nvidia.com/XFree86/Linux-x86_64/410.78/NVIDIA-Linux-x86_64-410.78.run
- 410.79 - https://uk.download.nvidia.com/tesla/410.79/NVIDIA-Linux-x86_64-410.79.run
7 years ago
6 years ago
Tested on Ubuntu 18.04 LTS (GNU/Linux 4.15.0-23-generic x86_64)
7 years ago
## step-by-step :
### Download driver
https://download.nvidia.com/XFree86/Linux-x86_64/410.78/NVIDIA-Linux-x86_64-410.78.run
### Install driver (410.78)
7 years ago
```bash
mkdir /opt/nvidia && cd /opt/nvidia
wget https://download.nvidia.com/XFree86/Linux-x86_64/410.78/NVIDIA-Linux-x86_64-410.78.run
chmod +x ./NVIDIA-Linux-x86_64-410.78.run
./NVIDIA-Linux-x86_64-410.78.run
7 years ago
```
7 years ago
### Check driver
7 years ago
```bash
7 years ago
nvidia-smi
```
7 years ago
### Patch libnvidia-encode.so (with backup)
```bash
bash ./patch.sh
```
7 years ago
### Silent patch libnvidia-encode.so
```bash
bash ./patch.sh -s
```
7 years ago
### Rollback libnvidia-encode.so (restore from backup)
```bash
bash ./patch.sh -r
7 years ago
```
7 years ago
7 years ago
## See also
https://habr.com/post/262563/
7 years ago
If you experience `CreateBitstreamBuffer failed: out of memory (10)`, then you have to lower buffers number used for every encoding session. If you are using `ffmpeg`, consider using this [patch](https://gist.github.com/Snawoot/70ae403716c698cb86ab015626d72bd4).
7 years ago