mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	* 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
		
			
				
	
	
		
			9 lines
		
	
	
		
			298 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			298 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
set(TARGET infill)
 | 
						|
add_executable(${TARGET} infill.cpp)
 | 
						|
install(TARGETS ${TARGET} RUNTIME)
 | 
						|
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
 | 
						|
target_compile_features(${TARGET} PRIVATE cxx_std_11)
 | 
						|
if(TARGET BUILD_INFO)
 | 
						|
    add_dependencies(${TARGET} BUILD_INFO)
 | 
						|
endif()
 |