fix(whisper): add CuDNN support
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-09-05 09:18:23 -04:00
parent 86b7e0b1ec
commit 5d6ed1be6e
3 changed files with 3 additions and 2 deletions

View file

@ -21,7 +21,7 @@ inputs: rec {
++ (builtins.attrValues { ++ (builtins.attrValues {
inherit inherit
(inputs.self.overlays) (inputs.self.overlays)
broken-packages misc
xdg-desktop-portal-kde xdg-desktop-portal-kde
; ;
}); });

View file

@ -1,4 +1,4 @@
{...}: { {...}: {
broken-packages = import ./broken-packages; misc = import ./misc;
xdg-desktop-portal-kde = import ./xdg-desktop-portal-kde; xdg-desktop-portal-kde = import ./xdg-desktop-portal-kde;
} }

View file

@ -1,5 +1,6 @@
final: prev: { final: prev: {
ctranslate2 = prev.ctranslate2.override { ctranslate2 = prev.ctranslate2.override {
withCUDA = true; withCUDA = true;
withCuDNN = true;
}; };
} }