From: 0cc4m Date: Sat, 10 Feb 2024 21:18:33 +0000 (+0100) Subject: Enable Vulkan MacOS CI X-Git-Tag: upstream/0.0.4488~2276 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=22f83f0c383e12106692b8afc224d61b8993a52c;p=pkg%2Fggml%2Fsources%2Fllama.cpp Enable Vulkan MacOS CI --- 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/";