mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	 d0d5de42e5
			
		
	
	d0d5de42e5
	
	
	
		
			
			* gguf-split: split and merge gguf files per tensor * gguf-split: build with make toolchain * gguf-split: rename `--split-tensors-size` to `--split-max-tensors`. Set general.split_count KV to all split * split : minor style + fix compile warnings * gguf-split: remove --upload not implemented --------- Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| # dependencies
 | |
| 
 | |
| find_package(Threads REQUIRED)
 | |
| 
 | |
| # third-party
 | |
| 
 | |
| # ...
 | |
| 
 | |
| # examples
 | |
| 
 | |
| include_directories(${CMAKE_CURRENT_SOURCE_DIR})
 | |
| 
 | |
| if (EMSCRIPTEN)
 | |
| else()
 | |
|     add_subdirectory(baby-llama)
 | |
|     add_subdirectory(batched)
 | |
|     add_subdirectory(batched-bench)
 | |
|     add_subdirectory(beam-search)
 | |
|     add_subdirectory(benchmark)
 | |
|     add_subdirectory(convert-llama2c-to-ggml)
 | |
|     add_subdirectory(embedding)
 | |
|     add_subdirectory(finetune)
 | |
|     add_subdirectory(gritlm)
 | |
|     add_subdirectory(gguf-split)
 | |
|     add_subdirectory(infill)
 | |
|     add_subdirectory(llama-bench)
 | |
|     add_subdirectory(llava)
 | |
|     if (LLAMA_SYCL)
 | |
|         add_subdirectory(sycl)
 | |
|     endif()
 | |
|     add_subdirectory(main)
 | |
|     add_subdirectory(tokenize)
 | |
|     add_subdirectory(parallel)
 | |
|     add_subdirectory(perplexity)
 | |
|     add_subdirectory(quantize)
 | |
|     add_subdirectory(quantize-stats)
 | |
|     add_subdirectory(save-load-state)
 | |
|     add_subdirectory(simple)
 | |
|     add_subdirectory(passkey)
 | |
|     add_subdirectory(speculative)
 | |
|     add_subdirectory(lookahead)
 | |
|     add_subdirectory(lookup)
 | |
|     add_subdirectory(gguf)
 | |
|     add_subdirectory(train-text-from-scratch)
 | |
|     add_subdirectory(imatrix)
 | |
|     if (LLAMA_BUILD_SERVER)
 | |
|         add_subdirectory(server)
 | |
|     endif()
 | |
|     add_subdirectory(export-lora)
 | |
| endif()
 |