From 84d0ef6b70ccd8221fbda28a216dc01a08903ce0 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 8 Dec 2024 17:59:42 +0100 Subject: fix(modules/ollama): Always use the CPU for ollama My AMD GPU is just not supported by ROCm. And whilst ollama will (sometime) start with this configuration, it is just slower than directly running with the CPU. --- modules/by-name/ol/ollama/module.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules/by-name/ol') diff --git a/modules/by-name/ol/ollama/module.nix b/modules/by-name/ol/ollama/module.nix index 0c500aa7..bd0baaa6 100644 --- a/modules/by-name/ol/ollama/module.nix +++ b/modules/by-name/ol/ollama/module.nix @@ -27,8 +27,7 @@ in { services.ollama = { enable = true; - rocmOverrideGfx = "10.3.0"; - acceleration = "rocm"; + acceleration = false; }; }; } -- cgit 1.4.1