summaryrefslogtreecommitdiff
path: root/examples/CMakeLists.txt
diff options
context:
space:
mode:
authorGeorgi Gerganov <ggerganov@gmail.com>2023-10-20 21:07:23 +0300
committerGitHub <noreply@github.com>2023-10-20 21:07:23 +0300
commitd1031cf49c3b958b915fd558e23453471c29ac33 (patch)
tree14fa2bc6d54d5e27bd1e8bfd6fa4dbf894dbe6b9 /examples/CMakeLists.txt
parent8cf19d60dc93809db8e51fedc811595eed9134c5 (diff)
sampling : refactor init to use llama_sampling_params (#3696)
* 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
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r--examples/CMakeLists.txt28
1 files changed, 14 insertions, 14 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index e16c65f7..75b8df67 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -12,26 +12,26 @@ 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(perplexity)
- add_subdirectory(embedding)
add_subdirectory(save-load-state)
- add_subdirectory(benchmark)
- add_subdirectory(baby-llama)
- add_subdirectory(train-text-from-scratch)
- add_subdirectory(finetune)
- add_subdirectory(convert-llama2c-to-ggml)
add_subdirectory(simple)
- add_subdirectory(batched)
- add_subdirectory(batched-bench)
add_subdirectory(speculative)
- add_subdirectory(parallel)
- add_subdirectory(embd-input)
- add_subdirectory(llava)
- add_subdirectory(llama-bench)
- add_subdirectory(beam-search)
+ add_subdirectory(train-text-from-scratch)
if (LLAMA_METAL)
add_subdirectory(metal)
endif()