mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
wyoming-faster-whisper fix CUDA devices not being detected. (#266167)
This change enables CUDA support by allowing access to /dev/nvidia0.
This commit is contained in:
parent
bc2b72df73
commit
c4d3afef06
@ -146,6 +146,8 @@ in
|
|||||||
CapabilityBoundingSet = "";
|
CapabilityBoundingSet = "";
|
||||||
DeviceAllow = if builtins.elem options.device [ "cuda" "auto" ] then [
|
DeviceAllow = if builtins.elem options.device [ "cuda" "auto" ] then [
|
||||||
# https://docs.nvidia.com/dgx/pdf/dgx-os-5-user-guide.pdf
|
# https://docs.nvidia.com/dgx/pdf/dgx-os-5-user-guide.pdf
|
||||||
|
# CUDA not working? Check DeviceAllow and PrivateDevices first!
|
||||||
|
"/dev/nvidia0"
|
||||||
"/dev/nvidia1"
|
"/dev/nvidia1"
|
||||||
"/dev/nvidia2"
|
"/dev/nvidia2"
|
||||||
"/dev/nvidia3"
|
"/dev/nvidia3"
|
||||||
@ -160,7 +162,6 @@ in
|
|||||||
DevicePolicy = "closed";
|
DevicePolicy = "closed";
|
||||||
LockPersonality = true;
|
LockPersonality = true;
|
||||||
MemoryDenyWriteExecute = true;
|
MemoryDenyWriteExecute = true;
|
||||||
PrivateDevices = true;
|
|
||||||
PrivateUsers = true;
|
PrivateUsers = true;
|
||||||
ProtectHome = true;
|
ProtectHome = true;
|
||||||
ProtectHostname = true;
|
ProtectHostname = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user