-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from utilityai/update-llama-cpp-2024-03-24
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule llama.cpp
updated
27 files
+0 −1 | .github/workflows/server.yml | |
+4 −0 | .gitignore | |
+12 −3 | Makefile | |
+2 −0 | common/CMakeLists.txt | |
+177 −46 | common/common.cpp | |
+22 −13 | common/common.h | |
+280 −0 | common/ngram-cache.cpp | |
+94 −0 | common/ngram-cache.h | |
+26 −0 | convert-hf-to-gguf.py | |
+0 −4 | examples/gguf-split/gguf-split.cpp | |
+18 −0 | examples/lookup/CMakeLists.txt | |
+43 −0 | examples/lookup/lookup-create.cpp | |
+47 −0 | examples/lookup/lookup-merge.cpp | |
+163 −0 | examples/lookup/lookup-stats.cpp | |
+68 −48 | examples/lookup/lookup.cpp | |
+8 −5 | examples/server/README.md | |
+17 −1 | examples/server/server.cpp | |
+2 −1 | examples/server/tests/features/parallel.feature | |
+2 −2 | examples/server/tests/features/server.feature | |
+9 −4 | examples/server/tests/features/steps/steps.py | |
+1 −1 | examples/server/utils.hpp | |
+61 −5 | ggml.c | |
+6 −2 | ggml.h | |
+24 −0 | gguf-py/gguf/constants.py | |
+35 −20 | gguf-py/gguf/tensor_mapping.py | |
+303 −4 | llama.cpp | |
+10 −0 | scripts/get-wikitext-103.sh |