fix(whisper): add CuDNN support
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
86b7e0b1ec
commit
5d6ed1be6e
3 changed files with 3 additions and 2 deletions
|
@ -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
|
||||||
;
|
;
|
||||||
});
|
});
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
final: prev: {
|
final: prev: {
|
||||||
ctranslate2 = prev.ctranslate2.override {
|
ctranslate2 = prev.ctranslate2.override {
|
||||||
withCUDA = true;
|
withCUDA = true;
|
||||||
|
withCuDNN = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in a new issue