mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	 d1031cf49c
			
		
	
	d1031cf49c
	
	
	
		
			
			* sampling : refactor init to use llama_sampling_params * llama : combine repetition, frequency and presence penalties in 1 call * examples : remove embd-input and gptneox-wip * sampling : rename penalty params + reduce size of "prev" vector * sampling : add llama_sampling_print helper * sampling : hide prev behind API and apply #3661 ggml-ci
		
			
				
	
	
		
			43 lines
		
	
	
		
			1006 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1006 B
		
	
	
	
		
			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(infill)
 | |
|     add_subdirectory(llama-bench)
 | |
|     add_subdirectory(llava)
 | |
|     add_subdirectory(main)
 | |
|     add_subdirectory(parallel)
 | |
|     add_subdirectory(perplexity)
 | |
|     add_subdirectory(quantize)
 | |
|     add_subdirectory(quantize-stats)
 | |
|     add_subdirectory(save-load-state)
 | |
|     add_subdirectory(simple)
 | |
|     add_subdirectory(speculative)
 | |
|     add_subdirectory(train-text-from-scratch)
 | |
|     if (LLAMA_METAL)
 | |
|         add_subdirectory(metal)
 | |
|     endif()
 | |
|     if (LLAMA_BUILD_SERVER)
 | |
|         add_subdirectory(server)
 | |
|     endif()
 | |
|     add_subdirectory(export-lora)
 | |
| endif()
 |