diff options
author | 0cc4m <picard12@live.de> | 2024-02-10 22:18:33 +0100 |
---|---|---|
committer | Philip Taron <philip.taron@gmail.com> | 2024-02-19 14:49:49 -0800 |
commit | 22f83f0c383e12106692b8afc224d61b8993a52c (patch) | |
tree | 61be440072712048558b93deecc1a3bd52afcf9d | |
parent | bb9dcd560a7e81265398b0d463c40f3e467daf19 (diff) |
Enable Vulkan MacOS CI
-rw-r--r-- | .devops/nix/package.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.devops/nix/package.nix b/.devops/nix/package.nix index ad23f7dd..815db6a2 100644 --- a/.devops/nix/package.nix +++ b/.devops/nix/package.nix @@ -255,11 +255,11 @@ effectiveStdenv.mkDerivation ( # Configurations we don't want even the CI to evaluate. Results in the # "unsupported platform" messages. This is mostly a no-op, because # cudaPackages would've refused to evaluate anyway. - badPlatforms = optionals (useCuda || useOpenCL || useVulkan) lib.platforms.darwin; + badPlatforms = optionals (useCuda || useOpenCL) lib.platforms.darwin; # Configurations that are known to result in build failures. Can be # overridden by importing Nixpkgs with `allowBroken = true`. - broken = (useMetalKit && !effectiveStdenv.isDarwin) || (useVulkan && effectiveStdenv.isDarwin); + broken = (useMetalKit && !effectiveStdenv.isDarwin); description = "Inference of LLaMA model in pure C/C++${descriptionSuffix}"; homepage = "https://github.com/ggerganov/llama.cpp/"; |