Nix: fix ARM neon dotproduct on macOS
This commit is contained in:
parent
a296589180
commit
84fb7f516c
1 changed files with 9 additions and 4 deletions
13
flake.nix
13
flake.nix
|
@ -18,21 +18,26 @@
|
||||||
{
|
{
|
||||||
packages.default = pkgs.stdenv.mkDerivation {
|
packages.default = pkgs.stdenv.mkDerivation {
|
||||||
name = "llama.cpp";
|
name = "llama.cpp";
|
||||||
|
src = ./.;
|
||||||
|
nativeBuildInputs = with pkgs; [ cmake ];
|
||||||
buildInputs = with pkgs; lib.optionals stdenv.isDarwin [
|
buildInputs = with pkgs; lib.optionals stdenv.isDarwin [
|
||||||
darwin.apple_sdk.frameworks.Accelerate
|
darwin.apple_sdk.frameworks.Accelerate
|
||||||
];
|
];
|
||||||
src = ./.;
|
cmakeFlags = with pkgs; lib.optionals (system == "aarch64-darwin") [
|
||||||
|
"-DCMAKE_C_FLAGS=-D__ARM_FEATURE_DOTPROD=1"
|
||||||
|
];
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
mv main $out/bin/llama-cpp
|
mv llama $out/bin/llama
|
||||||
mv quantize $out/bin/llama-cpp-quantize
|
mv quantize $out/bin/quantize
|
||||||
echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml
|
echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml
|
||||||
cat convert-pth-to-ggml.py >> $out/bin/convert-pth-to-ggml
|
cat ${./convert-pth-to-ggml.py} >> $out/bin/convert-pth-to-ggml
|
||||||
chmod +x $out/bin/convert-pth-to-ggml
|
chmod +x $out/bin/convert-pth-to-ggml
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
cmake
|
||||||
llama-python
|
llama-python
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
darwin.apple_sdk.frameworks.Accelerate
|
darwin.apple_sdk.frameworks.Accelerate
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue