-
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 b3967 (#261)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: vansangpfiev <[email protected]>
- Loading branch information
1 parent
86146f0
commit d4c6219
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule llama.cpp
updated
27 files
+4 −0 | README.md | |
+3 −3 | common/arg.cpp | |
+2 −2 | common/common.cpp | |
+2 −2 | common/common.h | |
+37 −51 | common/sampling.cpp | |
+3 −0 | convert_hf_to_gguf.py | |
+3 −0 | convert_lora_to_gguf.py | |
+0 −1 | examples/llama.swiftui/llama.cpp.swift/LibLlama.swift | |
+783 −0 | examples/llama.vim | |
+0 −3 | examples/save-load-state/save-load-state.cpp | |
+8 −6 | examples/speculative/speculative.cpp | |
+3 −3 | flake.lock | |
+2 −0 | ggml/include/ggml-cann.h | |
+8 −1 | ggml/src/ggml-backend.cpp | |
+250 −104 | ggml/src/ggml-cann.cpp | |
+0 −1 | ggml/src/ggml-cuda.cu | |
+3 −3 | ggml/src/ggml-cuda/im2col.cu | |
+111 −19 | ggml/src/ggml-metal.m | |
+178 −0 | ggml/src/ggml-metal.metal | |
+3 −14 | ggml/src/ggml-rpc.cpp | |
+69 −67 | ggml/src/ggml-sycl/mmvq.cpp | |
+5 −5 | ggml/src/ggml.c | |
+7 −3 | include/llama.h | |
+32 −9 | src/llama-sampling.cpp | |
+194 −215 | src/llama.cpp | |
+40 −4 | tests/test-backend-ops.cpp | |
+125 −147 | tests/test-sampling.cpp |