2024-02-22 19:44:10 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
singularity-tools,
|
|
|
|
llama-cpp,
|
|
|
|
bashInteractive,
|
|
|
|
interactive ? false,
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2024-03-01 23:18:26 +00:00
|
|
|
optionalInt = cond: x: if cond then x else 0;
|
2024-02-22 19:44:10 +00:00
|
|
|
in
|
|
|
|
singularity-tools.buildImage rec {
|
|
|
|
inherit (llama-cpp) name;
|
|
|
|
contents = [ llama-cpp ] ++ lib.optionals interactive [ bashInteractive ];
|
|
|
|
|
|
|
|
# These are excessive (but safe) for most variants. Building singularity
|
|
|
|
# images requires superuser privileges, so we build them inside a VM in a
|
|
|
|
# writable image of pre-determined size.
|
|
|
|
#
|
|
|
|
# ROCm is currently affected by https://github.com/NixOS/nixpkgs/issues/276846
|
|
|
|
#
|
|
|
|
# Expected image sizes:
|
|
|
|
# - cpu/blas: 150M,
|
|
|
|
# - cuda, all gencodes: 560M,
|
|
|
|
diskSize = 4096 + optionalInt llama-cpp.useRocm 16384;
|
|
|
|
memSize = diskSize;
|
|
|
|
}
|