Merge pull request #290363 from abysssol/update-ollama-0.1.26
ollama: 0.1.24 -> 0.1.26
This commit is contained in:
commit
033a375a23
2 changed files with 149 additions and 137 deletions
|
@ -1,9 +1,14 @@
|
||||||
{ config, lib, pkgs, ... }: let
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
inherit (lib.types) nullOr enum;
|
||||||
|
|
||||||
cfg = config.services.ollama;
|
cfg = config.services.ollama;
|
||||||
|
ollamaPackage = cfg.package.override {
|
||||||
in {
|
inherit (cfg) acceleration;
|
||||||
|
linuxPackages.nvidia_x11 = config.hardware.nvidia.package;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
{
|
||||||
options = {
|
options = {
|
||||||
services.ollama = {
|
services.ollama = {
|
||||||
enable = lib.mkEnableOption (
|
enable = lib.mkEnableOption (
|
||||||
|
@ -16,12 +21,22 @@ in {
|
||||||
Specifies the bind address on which the ollama server HTTP interface listens.
|
Specifies the bind address on which the ollama server HTTP interface listens.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
acceleration = lib.mkOption {
|
||||||
|
type = nullOr (enum [ "rocm" "cuda" ]);
|
||||||
|
default = null;
|
||||||
|
example = "rocm";
|
||||||
|
description = lib.mdDoc ''
|
||||||
|
Specifies the interface to use for hardware acceleration.
|
||||||
|
|
||||||
|
- `rocm`: supported by modern AMD GPUs
|
||||||
|
- `cuda`: supported by modern NVIDIA GPUs
|
||||||
|
'';
|
||||||
|
};
|
||||||
package = lib.mkPackageOption pkgs "ollama" { };
|
package = lib.mkPackageOption pkgs "ollama" { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
|
|
||||||
systemd = {
|
systemd = {
|
||||||
services.ollama = {
|
services.ollama = {
|
||||||
wantedBy = [ "multi-user.target" ];
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
@ -33,7 +48,7 @@ in {
|
||||||
OLLAMA_HOST = cfg.listenAddress;
|
OLLAMA_HOST = cfg.listenAddress;
|
||||||
};
|
};
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = "${lib.getExe cfg.package} serve";
|
ExecStart = "${lib.getExe ollamaPackage} serve";
|
||||||
WorkingDirectory = "/var/lib/ollama";
|
WorkingDirectory = "/var/lib/ollama";
|
||||||
StateDirectory = [ "ollama" ];
|
StateDirectory = [ "ollama" ];
|
||||||
DynamicUser = true;
|
DynamicUser = true;
|
||||||
|
@ -41,10 +56,8 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ cfg.package ];
|
environment.systemPackages = [ ollamaPackage ];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
meta.maintainers = with lib.maintainers; [ onny ];
|
meta.maintainers = with lib.maintainers; [ abysssol onny ];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, stdenv
|
, stdenv
|
||||||
|
|
||||||
|
, pkgs
|
||||||
, cmake
|
, cmake
|
||||||
, gcc12
|
, gcc12
|
||||||
, clblast
|
, clblast
|
||||||
|
@ -17,98 +18,21 @@
|
||||||
, linuxPackages
|
, linuxPackages
|
||||||
, darwin
|
, darwin
|
||||||
|
|
||||||
, enableRocm ? false
|
# one of `[ null "rocm" "cuda" ]`
|
||||||
, enableCuda ? false
|
, acceleration ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "ollama";
|
pname = "ollama";
|
||||||
version = "0.1.24";
|
version = "0.1.26";
|
||||||
|
|
||||||
warnIfNotLinux = warning: (lib.warnIfNot stdenv.isLinux warning stdenv.isLinux);
|
validAccel = lib.assertOneOf "ollama.acceleration" acceleration [ null "rocm" "cuda" ];
|
||||||
gpuWarning = api: "building ollama with ${api} is only supported on linux; falling back to cpu";
|
|
||||||
rocmIsEnabled = enableRocm && (warnIfNotLinux (gpuWarning "rocm"));
|
|
||||||
cudaIsEnabled = enableCuda && (warnIfNotLinux (gpuWarning "cuda"));
|
|
||||||
enableLinuxGpu = rocmIsEnabled || cudaIsEnabled;
|
|
||||||
|
|
||||||
appleFrameworks = darwin.apple_sdk_11_0.frameworks;
|
|
||||||
metalFrameworks = [
|
|
||||||
appleFrameworks.Accelerate
|
|
||||||
appleFrameworks.Metal
|
|
||||||
appleFrameworks.MetalKit
|
|
||||||
appleFrameworks.MetalPerformanceShaders
|
|
||||||
];
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "jmorganca";
|
|
||||||
repo = "ollama";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-GwZA1QUH8I8m2bGToIcMMaB5MBnioQP4+n1SauUJYP8=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
preparePatch = patch: hash: fetchpatch {
|
|
||||||
url = "file://${src}/llm/patches/${patch}";
|
|
||||||
inherit hash;
|
|
||||||
stripLen = 1;
|
|
||||||
extraPrefix = "llm/llama.cpp/";
|
|
||||||
};
|
|
||||||
inherit (lib) licenses platforms maintainers;
|
|
||||||
ollama = {
|
|
||||||
inherit pname version src;
|
|
||||||
vendorHash = "sha256-wXRbfnkbeXPTOalm7SFLvHQ9j46S/yLNbFy+OWNSamQ=";
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
|
||||||
cmake
|
|
||||||
] ++ lib.optionals enableLinuxGpu [
|
|
||||||
makeWrapper
|
|
||||||
] ++ lib.optionals stdenv.isDarwin
|
|
||||||
metalFrameworks;
|
|
||||||
|
|
||||||
patches = [
|
|
||||||
# remove uses of `git` in the `go generate` script
|
|
||||||
# instead use `patch` where necessary
|
|
||||||
./remove-git.patch
|
|
||||||
# replace a hardcoded use of `g++` with `$CXX`
|
|
||||||
./replace-gcc.patch
|
|
||||||
|
|
||||||
# ollama's patches of llama.cpp's example server
|
|
||||||
# `ollama/llm/generate/gen_common.sh` -> "apply temporary patches until fix is upstream"
|
|
||||||
(preparePatch "01-cache.diff" "sha256-PC4yN98hFvK+PEITiDihL8ki3bJuLVXrAm0CGf8GPJE=")
|
|
||||||
(preparePatch "02-shutdown.diff" "sha256-cElAp9Z9exxN964vB/YFuBhZoEcoAwGSMCnbh+l/V4Q=")
|
|
||||||
];
|
|
||||||
postPatch = ''
|
|
||||||
# use a patch from the nix store in the `go generate` script
|
|
||||||
substituteInPlace llm/generate/gen_common.sh \
|
|
||||||
--subst-var-by cmakeIncludePatch '${./cmake-include.patch}'
|
|
||||||
# `ollama/llm/generate/gen_common.sh` -> "avoid duplicate main symbols when we link into the cgo binary"
|
|
||||||
substituteInPlace llm/llama.cpp/examples/server/server.cpp \
|
|
||||||
--replace-fail 'int main(' 'int __main('
|
|
||||||
# replace inaccurate version number with actual release version
|
|
||||||
substituteInPlace version/version.go --replace-fail 0.0.0 '${version}'
|
|
||||||
'';
|
|
||||||
preBuild = ''
|
|
||||||
export OLLAMA_SKIP_PATCHING=true
|
|
||||||
# build llama.cpp libraries for ollama
|
|
||||||
go generate ./...
|
|
||||||
'';
|
|
||||||
|
|
||||||
ldflags = [
|
|
||||||
"-s"
|
|
||||||
"-w"
|
|
||||||
"-X=github.com/jmorganca/ollama/version.Version=${version}"
|
|
||||||
"-X=github.com/jmorganca/ollama/server.mode=release"
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Get up and running with large language models locally";
|
|
||||||
homepage = "https://github.com/jmorganca/ollama";
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.unix;
|
|
||||||
mainProgram = "ollama";
|
|
||||||
maintainers = with maintainers; [ abysssol dit7ya elohmeier ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
warnIfNotLinux = api: (lib.warnIfNot stdenv.isLinux
|
||||||
|
"building ollama with `${api}` is only supported on linux; falling back to cpu"
|
||||||
|
stdenv.isLinux);
|
||||||
|
enableRocm = validAccel && (acceleration == "rocm") && (warnIfNotLinux "rocm");
|
||||||
|
enableCuda = validAccel && (acceleration == "cuda") && (warnIfNotLinux "cuda");
|
||||||
|
|
||||||
rocmClang = linkFarm "rocm-clang" {
|
rocmClang = linkFarm "rocm-clang" {
|
||||||
llvm = rocmPackages.llvm.clang;
|
llvm = rocmPackages.llvm.clang;
|
||||||
|
@ -120,10 +44,6 @@ let
|
||||||
rocmClang
|
rocmClang
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
rocmVars = {
|
|
||||||
ROCM_PATH = rocmPath;
|
|
||||||
CLBlast_DIR = "${clblast}/lib/cmake/CLBlast";
|
|
||||||
};
|
|
||||||
|
|
||||||
cudaToolkit = buildEnv {
|
cudaToolkit = buildEnv {
|
||||||
name = "cuda-toolkit";
|
name = "cuda-toolkit";
|
||||||
|
@ -133,50 +53,129 @@ let
|
||||||
cudaPackages.cuda_cudart
|
cudaPackages.cuda_cudart
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
cudaVars = {
|
|
||||||
CUDA_LIB_DIR = "${cudaToolkit}/lib";
|
|
||||||
CUDACXX = "${cudaToolkit}/bin/nvcc";
|
|
||||||
CUDAToolkit_ROOT = cudaToolkit;
|
|
||||||
};
|
|
||||||
|
|
||||||
linuxGpuLibs = {
|
runtimeLibs = lib.optionals enableRocm [
|
||||||
buildInputs = lib.optionals rocmIsEnabled [
|
|
||||||
rocmPackages.clr
|
|
||||||
rocmPackages.hipblas
|
|
||||||
rocmPackages.rocblas
|
|
||||||
rocmPackages.rocsolver
|
|
||||||
rocmPackages.rocsparse
|
|
||||||
libdrm
|
|
||||||
] ++ lib.optionals cudaIsEnabled [
|
|
||||||
cudaPackages.cuda_cudart
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
appleGpuLibs = { buildInputs = metalFrameworks; };
|
|
||||||
|
|
||||||
runtimeLibs = lib.optionals rocmIsEnabled [
|
|
||||||
rocmPackages.rocm-smi
|
rocmPackages.rocm-smi
|
||||||
] ++ lib.optionals cudaIsEnabled [
|
] ++ lib.optionals enableCuda [
|
||||||
linuxPackages.nvidia_x11
|
linuxPackages.nvidia_x11
|
||||||
];
|
];
|
||||||
runtimeLibWrapper = {
|
|
||||||
postFixup = ''
|
appleFrameworks = darwin.apple_sdk_11_0.frameworks;
|
||||||
mv "$out/bin/${pname}" "$out/bin/.${pname}-unwrapped"
|
metalFrameworks = [
|
||||||
makeWrapper "$out/bin/.${pname}-unwrapped" "$out/bin/${pname}" \
|
appleFrameworks.Accelerate
|
||||||
--suffix LD_LIBRARY_PATH : '${lib.makeLibraryPath runtimeLibs}'
|
appleFrameworks.Metal
|
||||||
'';
|
appleFrameworks.MetalKit
|
||||||
};
|
appleFrameworks.MetalPerformanceShaders
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
goBuild =
|
goBuild =
|
||||||
if cudaIsEnabled then
|
if enableCuda then
|
||||||
buildGoModule.override { stdenv = overrideCC stdenv gcc12; }
|
buildGoModule.override { stdenv = overrideCC stdenv gcc12; }
|
||||||
else
|
else
|
||||||
buildGoModule;
|
buildGoModule;
|
||||||
in
|
|
||||||
goBuild (ollama
|
|
||||||
// (lib.optionalAttrs rocmIsEnabled rocmVars)
|
|
||||||
// (lib.optionalAttrs cudaIsEnabled cudaVars)
|
|
||||||
// (lib.optionalAttrs enableLinuxGpu linuxGpuLibs)
|
|
||||||
// (lib.optionalAttrs enableLinuxGpu runtimeLibWrapper)
|
|
||||||
|
|
||||||
// (lib.optionalAttrs stdenv.isDarwin appleGpuLibs))
|
src = fetchFromGitHub {
|
||||||
|
owner = "jmorganca";
|
||||||
|
repo = "ollama";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-Kw3tt9ayEMgI2V6OeaOkWfNwqfCL7MDD/nN5iXk5LnY=";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
preparePatch = patch: hash: fetchpatch {
|
||||||
|
url = "file://${src}/llm/patches/${patch}";
|
||||||
|
inherit hash;
|
||||||
|
stripLen = 1;
|
||||||
|
extraPrefix = "llm/llama.cpp/";
|
||||||
|
};
|
||||||
|
inherit (lib) licenses platforms maintainers;
|
||||||
|
in
|
||||||
|
goBuild ((lib.optionalAttrs enableRocm {
|
||||||
|
ROCM_PATH = rocmPath;
|
||||||
|
CLBlast_DIR = "${clblast}/lib/cmake/CLBlast";
|
||||||
|
}) // (lib.optionalAttrs enableCuda {
|
||||||
|
CUDA_LIB_DIR = "${cudaToolkit}/lib";
|
||||||
|
CUDACXX = "${cudaToolkit}/bin/nvcc";
|
||||||
|
CUDAToolkit_ROOT = cudaToolkit;
|
||||||
|
}) // {
|
||||||
|
inherit pname version src;
|
||||||
|
vendorHash = "sha256-zTrBighPBqZ9hhkEV3UawJZUYyPRay7+P6wkhDtpY7M=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
] ++ lib.optionals (enableRocm || enableCuda) [
|
||||||
|
makeWrapper
|
||||||
|
] ++ lib.optionals stdenv.isDarwin
|
||||||
|
metalFrameworks;
|
||||||
|
|
||||||
|
buildInputs = lib.optionals enableRocm [
|
||||||
|
rocmPackages.clr
|
||||||
|
rocmPackages.hipblas
|
||||||
|
rocmPackages.rocblas
|
||||||
|
rocmPackages.rocsolver
|
||||||
|
rocmPackages.rocsparse
|
||||||
|
libdrm
|
||||||
|
] ++ lib.optionals enableCuda [
|
||||||
|
cudaPackages.cuda_cudart
|
||||||
|
] ++ lib.optionals stdenv.isDarwin
|
||||||
|
metalFrameworks;
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# remove uses of `git` in the `go generate` script
|
||||||
|
# instead use `patch` where necessary
|
||||||
|
./remove-git.patch
|
||||||
|
# replace a hardcoded use of `g++` with `$CXX`
|
||||||
|
./replace-gcc.patch
|
||||||
|
|
||||||
|
# ollama's patches of llama.cpp's example server
|
||||||
|
# `ollama/llm/generate/gen_common.sh` -> "apply temporary patches until fix is upstream"
|
||||||
|
(preparePatch "01-cache.diff" "sha256-MTTln2G0G8dntihUzEjPM1ruTsApb4ZToBczJb8EG68=")
|
||||||
|
(preparePatch "02-cudaleaks.diff" "sha256-Cu7E9iEcvddPL9mPPI5Z96qmwWigi3f0WgSpPRjGc88=")
|
||||||
|
];
|
||||||
|
postPatch = ''
|
||||||
|
# use a patch from the nix store in the `go generate` script
|
||||||
|
substituteInPlace llm/generate/gen_common.sh \
|
||||||
|
--subst-var-by cmakeIncludePatch '${./cmake-include.patch}'
|
||||||
|
# `ollama/llm/generate/gen_common.sh` -> "avoid duplicate main symbols when we link into the cgo binary"
|
||||||
|
substituteInPlace llm/llama.cpp/examples/server/server.cpp \
|
||||||
|
--replace-fail 'int main(' 'int __main('
|
||||||
|
# replace inaccurate version number with actual release version
|
||||||
|
substituteInPlace version/version.go --replace-fail 0.0.0 '${version}'
|
||||||
|
'';
|
||||||
|
preBuild = ''
|
||||||
|
export OLLAMA_SKIP_PATCHING=true
|
||||||
|
# build llama.cpp libraries for ollama
|
||||||
|
go generate ./...
|
||||||
|
'';
|
||||||
|
postFixup = ''
|
||||||
|
# the app doesn't appear functional at the moment, so hide it
|
||||||
|
mv "$out/bin/app" "$out/bin/.ollama-app"
|
||||||
|
'' + lib.optionalString (enableRocm || enableCuda) ''
|
||||||
|
# expose runtime libraries necessary to use the gpu
|
||||||
|
mv "$out/bin/ollama" "$out/bin/.ollama-unwrapped"
|
||||||
|
makeWrapper "$out/bin/.ollama-unwrapped" "$out/bin/ollama" \
|
||||||
|
--suffix LD_LIBRARY_PATH : '/run/opengl-driver/lib:${lib.makeLibraryPath runtimeLibs}'
|
||||||
|
'';
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
"-X=github.com/jmorganca/ollama/version.Version=${version}"
|
||||||
|
"-X=github.com/jmorganca/ollama/server.mode=release"
|
||||||
|
];
|
||||||
|
|
||||||
|
# for now, just test that rocm and cuda build
|
||||||
|
passthru.tests = lib.optionalAttrs stdenv.isLinux {
|
||||||
|
rocm = pkgs.ollama.override { acceleration = "rocm"; };
|
||||||
|
cuda = pkgs.ollama.override { acceleration = "cuda"; };
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Get up and running with large language models locally";
|
||||||
|
homepage = "https://github.com/jmorganca/ollama";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
mainProgram = "ollama";
|
||||||
|
maintainers = with maintainers; [ abysssol dit7ya elohmeier ];
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in a new issue