diff options
author | Pierrick Hymbert <pierrick.hymbert@gmail.com> | 2024-03-19 12:05:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 12:05:44 +0100 |
commit | d0d5de42e5a65865b5fddb6f5c785083539b74c3 (patch) | |
tree | 06e1d97ac44314f39c1b40358c2838b46bed71d9 /examples/CMakeLists.txt | |
parent | b80cf3b2d1dee0ad325f7a794fecc66befce7336 (diff) |
gguf-split: split and merge gguf per batch of tensors (#6135)
* gguf-split: split and merge gguf files per tensor
* gguf-split: build with make toolchain
* gguf-split: rename `--split-tensors-size` to `--split-max-tensors`. Set general.split_count KV to all split
* split : minor style + fix compile warnings
* gguf-split: remove --upload not implemented
---------
Co-authored-by: Georgi Gerganov <ggerganov@gmail.com>
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r-- | examples/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index e762cf8b..b59cc65b 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -21,6 +21,7 @@ else() add_subdirectory(embedding) add_subdirectory(finetune) add_subdirectory(gritlm) + add_subdirectory(gguf-split) add_subdirectory(infill) add_subdirectory(llama-bench) add_subdirectory(llava) |