-
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.
Merge pull request #245 from janhq/update-submodule-2024-09-24-17-07
Update llama.cpp submodule to latest release b3821
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule llama.cpp
updated
32 files
+1 −0 | README.md | |
+1 −1 | common/arg.cpp | |
+1 −1 | common/log.cpp | |
+2 −0 | common/log.h | |
+9 −1 | common/sampling.cpp | |
+7 −7 | examples/infill/infill.cpp | |
+14 −14 | examples/main/main.cpp | |
+0 −2 | examples/perplexity/perplexity.cpp | |
+11 −9 | examples/server/README.md | |
+27 −2 | examples/server/server.cpp | |
+62 −0 | examples/server/tests/features/ctx_shift.feature | |
+18 −4 | examples/server/tests/features/embeddings.feature | |
+21 −7 | examples/server/tests/features/steps/steps.py | |
+4 −1 | examples/speculative/speculative.cpp | |
+3 −3 | flake.lock | |
+4 −0 | ggml/include/ggml.h | |
+1 −0 | ggml/src/CMakeLists.txt | |
+503 −34 | ggml/src/ggml-aarch64.c | |
+3 −0 | ggml/src/ggml-cuda.cu | |
+51 −0 | ggml/src/ggml-cuda/cpy.cu | |
+7 −7 | ggml/src/ggml-metal.metal | |
+1 −2 | ggml/src/ggml-sycl.cpp | |
+0 −1 | ggml/src/ggml-sycl/common.hpp | |
+48 −15 | ggml/src/ggml.c | |
+1 −0 | include/llama.h | |
+1 −1 | scripts/sync-ggml.last | |
+2 −0 | src/llama-impl.h | |
+4 −3 | src/llama-sampling.cpp | |
+1 −5 | src/llama-vocab.cpp | |
+9 −5 | src/llama-vocab.h | |
+80 −18 | src/llama.cpp | |
+41 −1 | tests/test-sampling.cpp |