mirror of
https://github.com/keylase/nvidia-patch.git
synced 2025-04-24 23:26:21 +00:00
parent
0708031724
commit
6ecada87ad
@ -1,7 +1,7 @@
|
|||||||
NVENC and NvFBC patches for Nvidia drivers
|
NVENC and NvFBC patches for Nvidia drivers
|
||||||
==========================================
|
==========================================
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
|
[NVENC patch](patch.sh) removes restriction on maximum number of simultaneous NVENC video encoding sessions imposed by Nvidia to consumer-grade GPUs.
|
||||||
|
|
||||||
@ -232,6 +232,7 @@ If you want to donate, please send it to your favorite open source organizations
|
|||||||
| 570.86.16 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/570.86.16/NVIDIA-Linux-x86_64-570.86.16.run) |
|
| 570.86.16 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/570.86.16/NVIDIA-Linux-x86_64-570.86.16.run) |
|
||||||
| 570.124.04 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/570.124.04/NVIDIA-Linux-x86_64-570.124.04.run) |
|
| 570.124.04 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/570.124.04/NVIDIA-Linux-x86_64-570.124.04.run) |
|
||||||
| 570.124.06 | YES | YES | [Driver link](https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-570_570.124.06-1_amd64.deb) |
|
| 570.124.06 | YES | YES | [Driver link](https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-570_570.124.06-1_amd64.deb) |
|
||||||
|
| 570.133.07 | YES | YES | [Driver link](http://international.download.nvidia.com/XFree86/Linux-x86_64/570.133.07/NVIDIA-Linux-x86_64-570.133.07.run) |
|
||||||
|
|
||||||
## Synopsis
|
## Synopsis
|
||||||
|
|
||||||
|
@ -1193,6 +1193,12 @@
|
|||||||
"nvenc_patch": true,
|
"nvenc_patch": true,
|
||||||
"nvfbc_patch": true,
|
"nvfbc_patch": true,
|
||||||
"driver_url": "https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-570_570.124.06-1_amd64.deb"
|
"driver_url": "https://developer.download.nvidia.com/compute/cuda/repos/debian12/x86_64/cuda-drivers-570_570.124.06-1_amd64.deb"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"version": "570.133.07",
|
||||||
|
"nvenc_patch": true,
|
||||||
|
"nvfbc_patch": true,
|
||||||
|
"driver_url": "http://international.download.nvidia.com/XFree86/Linux-x86_64/570.133.07/NVIDIA-Linux-x86_64-570.133.07.run"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"example": {
|
"example": {
|
||||||
@ -4641,7 +4647,7 @@
|
|||||||
"patch32_url": "win10_x64/572.75/nvencodeapi.1337",
|
"patch32_url": "win10_x64/572.75/nvencodeapi.1337",
|
||||||
"driver_url": "https://international.download.nvidia.com/Windows/572.75hf/572.75-desktop-notebook-win10-win11-64bit-international-dch.hf.exe"
|
"driver_url": "https://international.download.nvidia.com/Windows/572.75hf/572.75-desktop-notebook-win10-win11-64bit-international-dch.hf.exe"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"os": "win10",
|
"os": "win10",
|
||||||
"product": "GeForce",
|
"product": "GeForce",
|
||||||
"version": "572.83",
|
"version": "572.83",
|
||||||
|
@ -227,6 +227,7 @@ declare -A patch_list=(
|
|||||||
["570.86.16"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
["570.86.16"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||||
["570.124.04"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
["570.124.04"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||||
["570.124.06"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
["570.124.06"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||||
|
["570.133.07"]='s/\x85\xc0\x0f\x84\x9b\x00\x00\x00\x48/\x85\xc0\x90\x90\x90\x90\x90\x90\x48/g'
|
||||||
)
|
)
|
||||||
|
|
||||||
check_version_supported () {
|
check_version_supported () {
|
||||||
|
1
patch.sh
1
patch.sh
@ -266,6 +266,7 @@ declare -A patch_list=(
|
|||||||
["570.86.16"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
["570.86.16"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||||
["570.124.04"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
["570.124.04"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||||
["570.124.06"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
["570.124.06"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||||
|
["570.133.07"]='s/\xe8\x45\x30\xfe\xff\x85\xc0\x41\x89\xc4/\xe8\x45\x30\xfe\xff\x29\xc0\x41\x89\xc4/g'
|
||||||
)
|
)
|
||||||
|
|
||||||
check_version_supported () {
|
check_version_supported () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user