mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   inputs = {
 | |
|     nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
 | |
|     flake-utils.url = "github:numtide/flake-utils";
 | |
|   };
 | |
|   outputs = { self, nixpkgs, flake-utils }:
 | |
|     flake-utils.lib.eachDefaultSystem (system:
 | |
|       let
 | |
|         pkgs = import nixpkgs {
 | |
|           inherit system;
 | |
|         };
 | |
|         llama-python = pkgs.python310.withPackages (ps: with ps; [
 | |
|           torch
 | |
|           numpy
 | |
|           sentencepiece
 | |
|         ]);
 | |
|       in
 | |
|       {
 | |
|         packages.default = pkgs.stdenv.mkDerivation {
 | |
|           name = "llama.cpp";
 | |
|           src = ./.;
 | |
|           nativeBuildInputs = with pkgs; [ cmake ];
 | |
|           buildInputs = with pkgs; lib.optionals stdenv.isDarwin [
 | |
|             darwin.apple_sdk.frameworks.Accelerate
 | |
|           ];
 | |
|           cmakeFlags = with pkgs; lib.optionals (system == "aarch64-darwin") [
 | |
|             "-DCMAKE_C_FLAGS=-D__ARM_FEATURE_DOTPROD=1"
 | |
|           ];
 | |
|           installPhase = ''
 | |
|             mkdir -p $out/bin
 | |
|             mv bin/main $out/bin/llama
 | |
|             mv bin/quantize $out/bin/quantize
 | |
|             mv bin/embedding $out/bin/embedding
 | |
|             mv bin/perplexity $out/bin/perplexity
 | |
| 
 | |
|             echo "#!${llama-python}/bin/python" > $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
 | |
|           '';
 | |
|           meta.mainProgram = "llama";
 | |
|         };
 | |
|         devShells.default = pkgs.mkShell {
 | |
|           packages = with pkgs; [
 | |
|             cmake
 | |
|             llama-python
 | |
|           ] ++ lib.optionals stdenv.isDarwin [
 | |
|             darwin.apple_sdk.frameworks.Accelerate
 | |
|           ];
 | |
|         };
 | |
|       }
 | |
|     );
 | |
| }
 | 
