mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-30 08:42:00 +00:00 
			
		
		
		
	 b804b1ef77
			
		
	
	b804b1ef77
	
	
	
		
			
			* gguf-debug: Example how to use ggml callback for debugging * gguf-debug: no mutex, verify type, fix stride. * llama: cv eval: move cb eval field in common gpt_params * ggml_debug: use common gpt_params to pass cb eval. Fix get tensor SIGV random. * ggml_debug: ci: add tests * ggml_debug: EOL in CMakeLists.txt * ggml_debug: Remove unused param n_batch, no batching here * ggml_debug: fix trailing spaces * ggml_debug: fix trailing spaces * common: fix cb_eval and user data not initialized * ci: build revert label * ggml_debug: add main test label * doc: add a model: add a link to ggml-debug * ggml-debug: add to make toolchain * ggml-debug: tests add the main label * ggml-debug: ci add test curl label * common: allow the warmup to be disabled in llama_init_from_gpt_params * ci: add curl test * ggml-debug: better tensor type support * gitignore : ggml-debug * ggml-debug: printing also the sum of each tensor * ggml-debug: remove block size * eval-callback: renamed from ggml-debug * eval-callback: fix make toolchain --------- Co-authored-by: slaren <slarengh@gmail.com> Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.3 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(eval-callback)
 | |
|     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(retrieval)
 | |
|     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()
 |