linux: new driver version 440.82

pull/253/head
Vladislav Yarmak 4 years ago
parent 36f3e9d075
commit 6432a5c960

@ -1,6 +1,6 @@
# nvidia-patch
![GitHub last commit](https://img.shields.io/github/last-commit/keylase/nvidia-patch.svg) ![Latest version](https://img.shields.io/badge/latest%20linux%20driver%20version-440.66.08-brightgreen.svg)
![GitHub last commit](https://img.shields.io/github/last-commit/keylase/nvidia-patch.svg) ![Latest version](https://img.shields.io/badge/latest%20linux%20driver%20version-440.82-brightgreen.svg)
This patch removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
@ -69,6 +69,7 @@ Requirements:
| 440.66.03 | :heavy_check_mark: | :heavy_check_mark: | |
| 440.66.04 | :heavy_check_mark: | :heavy_check_mark: | |
| 440.66.08 | :heavy_check_mark: | :heavy_check_mark: | |
| 440.82 | :heavy_check_mark: | :heavy_check_mark: | [Driver link](https://international.download.nvidia.com/XFree86/Linux-x86_64/440.82/NVIDIA-Linux-x86_64-440.82.run) |
## Synopsis

@ -297,6 +297,12 @@
"version": "440.66.08",
"nvenc_patch": true,
"nvfbc_patch": true
},
{
"version": "440.82",
"nvenc_patch": true,
"nvfbc_patch": true,
"driver_url": "https://international.download.nvidia.com/XFree86/Linux-x86_64/440.82/NVIDIA-Linux-x86_64-440.82.run"
}
],
"example": {

@ -60,6 +60,7 @@ declare -A patch_list=(
["440.66.03"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
["440.66.04"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
["440.66.08"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
["440.82"]='s/\x85\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/\x31\xc0\x89\xc3\x0f\x85\xa9\xfa\xff\xff/'
)
declare -A object_list=(
@ -80,6 +81,7 @@ declare -A object_list=(
["440.66.03"]='libnvidia-fbc.so'
["440.66.04"]='libnvidia-fbc.so'
["440.66.08"]='libnvidia-fbc.so'
["440.82"]='libnvidia-fbc.so'
)
check_version_supported () {

@ -96,6 +96,7 @@ declare -A patch_list=(
["440.66.03"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
["440.66.04"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
["440.66.08"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
["440.82"]='s/\x85\xc0\x41\x89\xc4\x75\x1f/\x31\xc0\x41\x89\xc4\x75\x1f/g'
)
declare -A object_list=(
@ -150,6 +151,7 @@ declare -A object_list=(
["440.66.03"]='libnvidia-encode.so'
["440.66.04"]='libnvidia-encode.so'
["440.66.08"]='libnvidia-encode.so'
["440.82"]='libnvidia-encode.so'
)
check_version_supported () {

Loading…
Cancel
Save