-
Notifications
You must be signed in to change notification settings - Fork 51
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 #449 from utilityai/update-llama-cpp-2024-08-12
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule llama.cpp
updated
17 files
+3 −1 | common/common.cpp | |
+139 −0 | convert_hf_to_gguf.py | |
+106 −39 | docs/backend/SYCL.md | |
+98 −42 | examples/embedding/embedding.cpp | |
+4 −0 | examples/rpc/README.md | |
+12 −1 | examples/rpc/rpc-server.cpp | |
+3 −3 | flake.lock | |
+1 −1 | ggml/src/ggml-metal.m | |
+35 −1 | ggml/src/ggml-rpc.cpp | |
+34 −31 | ggml/src/ggml-vulkan.cpp | |
+2 −1 | ggml/src/ggml.c | |
+0 −1 | gguf-py/examples/writer.py | |
+17 −0 | gguf-py/gguf/constants.py | |
+978 −3 | gguf-py/gguf/quants.py | |
+237 −0 | gguf-py/tests/test_quants.py | |
+3 −0 | include/llama.h | |
+413 −245 | src/llama.cpp |