mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-31 08:51:55 +00:00 
			
		
		
		
	 922754a8d6
			
		
	
	922754a8d6
	
	
	
		
			
			* lookahead : init * lookahead : generate and store n-grams * lookahead : use loop instead recursion to generate n-grams * lookahead : initial working implementation * lookahead : filter repeating n-grams * lookahead : use deterministic init * lookahead : add to Makefile * lookahead : fix a bug in the seq_id of the lookahead tokens * lookahead : add comments --------- Co-authored-by: slaren <slarengh@gmail.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.0 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(infill)
 | |
|     add_subdirectory(llama-bench)
 | |
|     add_subdirectory(llava)
 | |
|     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(speculative)
 | |
|     add_subdirectory(lookahead)
 | |
|     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()
 |