Skip to content

Commit

Permalink
chore: bump llama.cpp
Browse files Browse the repository at this point in the history
Signed-off-by: thxCode <thxcode0824@gmail.com>
  • Loading branch information
thxCode committed Jul 28, 2024
1 parent d16a796 commit 59507de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llama.cpp
Submodule llama.cpp updated 66 files
+1 −0 .gitignore
+49 −12 Makefile
+1 −0 README.md
+5 −0 common/common.cpp
+28 −0 convert_hf_to_gguf.py
+25 −1 docs/build.md
+1 −1 examples/eval-callback/eval-callback.cpp
+39 −25 examples/export-lora/export-lora.cpp
+2 −2 examples/imatrix/imatrix.cpp
+3 −3 examples/llama-bench/llama-bench.cpp
+1 −1 examples/llava/clip.cpp
+13 −7 examples/save-load-state/save-load-state.cpp
+164 −16 examples/server/public/index.html
+1 −1 examples/tokenize/tokenize.cpp
+9 −2 ggml/CMakeLists.txt
+3 −0 ggml/include/ggml-cuda.h
+21 −16 ggml/include/ggml.h
+55 −7 ggml/src/CMakeLists.txt
+6 −6 ggml/src/ggml-aarch64.c
+18 −24 ggml/src/ggml-alloc.c
+110 −104 ggml/src/ggml-backend.c
+1 −2 ggml/src/ggml-blas.cpp
+20 −20 ggml/src/ggml-cann.cpp
+13 −13 ggml/src/ggml-cann/aclnn_ops.cpp
+5 −1 ggml/src/ggml-common.h
+16 −12 ggml/src/ggml-cuda.cu
+1 −1 ggml/src/ggml-cuda/argsort.cu
+1 −1 ggml/src/ggml-cuda/binbcast.cu
+192 −4 ggml/src/ggml-cuda/common.cuh
+2 −2 ggml/src/ggml-cuda/cpy.cu
+1 −1 ggml/src/ggml-cuda/dmmv.cu
+3 −3 ggml/src/ggml-cuda/fattn-common.cuh
+1 −1 ggml/src/ggml-cuda/fattn-tile-f16.cu
+1 −1 ggml/src/ggml-cuda/fattn-tile-f32.cu
+5 −5 ggml/src/ggml-cuda/fattn.cu
+1 −2 ggml/src/ggml-cuda/getrows.cu
+1 −1 ggml/src/ggml-cuda/mmq.cu
+2 −2 ggml/src/ggml-cuda/mmq.cuh
+3 −3 ggml/src/ggml-cuda/mmvq.cu
+1 −1 ggml/src/ggml-cuda/quantize.cu
+2 −2 ggml/src/ggml-cuda/rope.cu
+108 −8 ggml/src/ggml-impl.h
+4 −4 ggml/src/ggml-kompute.cpp
+21 −21 ggml/src/ggml-metal.m
+28 −16 ggml/src/ggml-quants.c
+8 −8 ggml/src/ggml-sycl.cpp
+1 −1 ggml/src/ggml-sycl/common.hpp
+1 −1 ggml/src/ggml-sycl/dmmv.cpp
+1 −1 ggml/src/ggml-sycl/dpct/helper.hpp
+11 −11 ggml/src/ggml-sycl/mmq.cpp
+1 −1 ggml/src/ggml-sycl/mmvq.cpp
+2 −2 ggml/src/ggml-sycl/rope.cpp
+31 −31 ggml/src/ggml-vulkan.cpp
+434 −431 ggml/src/ggml.c
+30 −3 ggml/src/vulkan-shaders/vulkan-shaders-gen.cpp
+13 −10 include/llama.h
+6 −0 scripts/sync-ggml-am.sh
+1 −1 scripts/sync-ggml.last
+3 −0 scripts/sync-ggml.sh
+2 −2 src/llama-grammar.cpp
+0 −2 src/llama-grammar.h
+7 −7 src/llama-vocab.cpp
+716 −784 src/llama.cpp
+4 −4 tests/test-backend-ops.cpp
+2 −2 tests/test-chat-template.cpp
+5 −5 tests/test-sampling.cpp

0 comments on commit 59507de

Please sign in to comment.