forked from ggerganov/llama.cpp
-
Notifications
You must be signed in to change notification settings - Fork 363
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'ccf58aa3ec4d20b10162ba40898dc038ad4c3fad' into concedo_…
…experimental # Conflicts: # .gitignore # Makefile # README-sycl.md # ggml-cuda.cu
- Loading branch information
Showing
14 changed files
with
11,260 additions
and
9,949 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(TARGET gguf-split) | ||
add_executable(${TARGET} gguf-split.cpp) | ||
install(TARGETS ${TARGET} RUNTIME) | ||
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) | ||
target_compile_features(${TARGET} PRIVATE cxx_std_11) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## GGUF split Example | ||
|
||
CLI to split / merge GGUF files. | ||
|
||
**Command line options:** | ||
|
||
- `--split`: split GGUF to multiple GGUF, default operation. | ||
- `--split-max-tensors`: maximum tensors in each split: default(128) | ||
- `--merge`: merge multiple GGUF to a single GGUF. |
Oops, something went wrong.