-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update submodule to latest release b3367 (#138)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
6dbea8d
commit 5035813
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule llama.cpp
updated
31 files
+87 −9 | Makefile | |
+1 −0 | Package.swift | |
+1 −1 | README.md | |
+4 −0 | common/common.cpp | |
+53 −17 | convert_hf_to_gguf.py | |
+2 −0 | docs/build.md | |
+51 −0 | examples/deprecation-warning/README.md | |
+35 −0 | examples/deprecation-warning/deprecation-warning.cpp | |
+3 −0 | examples/quantize/quantize.cpp | |
+2 −1 | examples/server/server.cpp | |
+1 −1 | ggml/CMakeLists.txt | |
+17 −0 | ggml/include/ggml.h | |
+4 −3 | ggml/src/CMakeLists.txt | |
+2,187 −0 | ggml/src/ggml-aarch64.c | |
+39 −0 | ggml/src/ggml-aarch64.h | |
+24 −0 | ggml/src/ggml-common.h | |
+4 −0 | ggml/src/ggml-impl.h | |
+75 −47 | ggml/src/ggml-quants.c | |
+6 −0 | ggml/src/ggml-sycl/common.hpp | |
+1 −1 | ggml/src/ggml-sycl/convert.cpp | |
+92 −92 | ggml/src/ggml-sycl/mmq.cpp | |
+3 −3 | ggml/src/ggml-sycl/norm.cpp | |
+1 −1 | ggml/src/ggml-sycl/softmax.cpp | |
+147 −6 | ggml/src/ggml.c | |
+0 −0 | ggml/src/llamafile/sgemm.cpp | |
+0 −0 | ggml/src/llamafile/sgemm.h | |
+0 −1 | gguf-py/README.md | |
+1 −1 | gguf-py/pyproject.toml | |
+3 −0 | include/llama.h | |
+34 −4 | src/llama.cpp | |
+4 −0 | src/unicode.cpp |