Skip to content

Commit

Permalink
Update submodule to latest release b4371
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 20, 2024
1 parent 0cbb3c3 commit a56a421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama.cpp
Submodule llama.cpp updated 47 files
+1 −1 README.md
+57 −17 common/arg.cpp
+7 −4 common/common.cpp
+14 −2 common/common.h
+115 −9 convert_hf_to_gguf.py
+1 −0 examples/CMakeLists.txt
+4 −7 examples/gbnf-validator/gbnf-validator.cpp
+1 −1 examples/gritlm/gritlm.cpp
+1 −0 examples/llama.android/llama/build.gradle.kts
+46 −46 examples/llava/clip.cpp
+1 −1 examples/retrieval/retrieval.cpp
+6 −4 examples/run/README.md
+297 −121 examples/run/run.cpp
+98 −22 examples/server/README.md
+ examples/server/public/index.html.gz
+207 −96 examples/server/server.cpp
+61 −1 examples/server/tests/unit/test_chat_completion.py
+65 −6 examples/server/tests/unit/test_completion.py
+53 −15 examples/server/tests/unit/test_embedding.py
+3 −0 examples/server/tests/utils.py
+60 −0 examples/server/utils.hpp
+20 −5 examples/server/webui/src/main.js
+5 −0 examples/tts/CMakeLists.txt
+180 −0 examples/tts/convert_pt_to_hf.py
+175 −0 examples/tts/tts-outetts.py
+932 −0 examples/tts/tts.cpp
+6 −5 ggml/CMakeLists.txt
+29 −12 ggml/include/ggml.h
+66 −88 ggml/src/ggml-cpu/CMakeLists.txt
+6 −0 ggml/src/ggml-cpu/ggml-cpu.cpp
+1 −0 ggml/src/ggml-cpu/llamafile/sgemm.cpp
+5 −3 ggml/src/ggml-sycl/common.cpp
+4 −0 ggml/src/ggml-sycl/common.hpp
+26 −20 ggml/src/ggml-sycl/ggml-sycl.cpp
+127 −93 ggml/src/ggml.c
+171 −104 gguf-py/gguf/constants.py
+21 −0 gguf-py/gguf/gguf_writer.py
+70 −0 gguf-py/gguf/tensor_mapping.py
+1 −1 gguf-py/tests/test_quants.py
+0 −3 include/llama.h
+15 −15 src/llama-grammar.cpp
+2 −5 src/llama-grammar.h
+4 −0 src/llama-vocab.cpp
+686 −290 src/llama.cpp
+1 −1 tests/test-gguf.cpp
+3 −6 tests/test-grammar-integration.cpp
+2 −4 tests/test-llama-grammar.cpp

0 comments on commit a56a421

Please sign in to comment.