Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update llama.cpp submodule to latest release b4271 #319

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llama.cpp
Submodule llama.cpp updated 62 files
+22 −9 .devops/full.Dockerfile
+11 −5 .devops/llama-cli.Dockerfile
+7 −15 .devops/llama-server.Dockerfile
+16 −10 .github/workflows/server.yml
+4 −0 .gitignore
+10 −9 Makefile
+33 −22 convert_hf_to_gguf.py
+1 −1 convert_hf_to_gguf_update.py
+5 −0 docs/build.md
+1 −1 examples/deprecation-warning/deprecation-warning.cpp
+9 −0 examples/llava/clip.cpp
+9 −5 examples/server/CMakeLists.txt
+31 −0 examples/server/README.md
+0 −25 examples/server/deps.sh
+0 −13 examples/server/public/deps_daisyui.min.css
+0 −8,442 examples/server/public/deps_markdown-it.js
+0 −82 examples/server/public/deps_tailwindcss.js
+0 −18,160 examples/server/public/deps_vue.esm-browser.js
+245 −624 examples/server/public/index.html
+34 −33 examples/server/server.cpp
+31 −0 examples/server/tests/unit/test_speculative.py
+268 −0 examples/server/webui/index.html
+2,783 −0 examples/server/webui/package-lock.json
+23 −0 examples/server/webui/package.json
+6 −0 examples/server/webui/postcss.config.js
+0 −0 examples/server/webui/src/completion.js
+456 −0 examples/server/webui/src/main.js
+26 −0 examples/server/webui/src/styles.css
+16 −0 examples/server/webui/tailwind.config.js
+36 −0 examples/server/webui/vite.config.js
+24 −25 ggml/CMakeLists.txt
+8 −0 ggml/include/ggml.h
+35 −0 ggml/src/CMakeLists.txt
+21 −11 ggml/src/ggml-backend-reg.cpp
+299 −264 ggml/src/ggml-cpu/CMakeLists.txt
+54 −29 ggml/src/ggml-cpu/cpu-feats-x86.cpp
+120 −3 ggml/src/ggml-cpu/ggml-cpu.c
+9 −1 ggml/src/ggml-cpu/ggml-cpu.cpp
+0 −1 ggml/src/ggml-cuda/fattn-vec-f16.cuh
+0 −1 ggml/src/ggml-cuda/fattn-vec-f32.cuh
+2 −2 ggml/src/ggml-impl.h
+15 −0 ggml/src/ggml-metal/ggml-metal-impl.h
+187 −0 ggml/src/ggml-metal/ggml-metal.m
+209 −0 ggml/src/ggml-metal/ggml-metal.metal
+2 −1 ggml/src/ggml-sycl/CMakeLists.txt
+31 −12 ggml/src/ggml-sycl/dpct/helper.hpp
+9 −4 ggml/src/ggml-sycl/ggml-sycl.cpp
+8 −8 ggml/src/ggml-sycl/outprod.cpp
+83 −13 ggml/src/ggml-vulkan/ggml-vulkan.cpp
+21 −6 ggml/src/ggml-vulkan/vulkan-shaders/generic_unary_head.comp
+25 −6 ggml/src/ggml-vulkan/vulkan-shaders/mul_mat_split_k_reduce.comp
+35 −2 ggml/src/ggml.c
+6 −3 gguf-py/gguf/constants.py
+1 −1 grammars/README.md
+2 −1 include/llama.h
+0 −12 scripts/build-cpu.sh
+0 −3 scripts/sync-ggml-am.sh
+1 −1 scripts/sync-ggml.last
+0 −1 scripts/sync-ggml.sh
+19 −156 src/llama.cpp
+40 −5 tests/test-backend-ops.cpp
+5 −0 tests/test-lora-conversion-inference.sh
Loading