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 b4038 #284

Closed
wants to merge 1 commit into from
Closed
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 57 files
+1 −1 .github/workflows/build.yml
+13 −0 CMakePresets.json
+14 −13 Makefile
+1 −0 Package.swift
+2 −1 README.md
+91 −91 ci/run.sh
+16 −0 cmake/arm64-apple-clang.cmake
+0 −2 common/CMakeLists.txt
+2 −0 common/common.cpp
+1 −1 common/common.h
+0 −1,515 common/train.cpp
+0 −233 common/train.h
+14 −13 convert_hf_to_gguf.py
+37 −10 convert_lora_to_gguf.py
+1 −1 examples/CMakeLists.txt
+0 −5 examples/baby-llama/CMakeLists.txt
+0 −1,639 examples/baby-llama/baby-llama.cpp
+1 −0 examples/llava/clip.cpp
+2 −0 examples/rpc/rpc-server.cpp
+5 −6 examples/server/README.md
+47 −54 examples/server/server.cpp
+5 −5 examples/server/tests/features/steps/steps.py
+7 −7 examples/server/utils.hpp
+5 −0 examples/simple-chat/CMakeLists.txt
+7 −0 examples/simple-chat/README.md
+197 −0 examples/simple-chat/simple-chat.cpp
+10 −10 flake.lock
+1 −18 ggml/include/ggml-backend.h
+38 −0 ggml/include/ggml-cpp.h
+150 −0 ggml/include/ggml-cpu.h
+22 −135 ggml/include/ggml.h
+4 −1 ggml/src/CMakeLists.txt
+1 −0 ggml/src/ggml-aarch64.c
+1,599 −1,582 ggml/src/ggml-backend.cpp
+0 −1 ggml/src/ggml-cann.cpp
+13,720 −0 ggml/src/ggml-cpu.c
+6 −0 ggml/src/ggml-cuda.cu
+87 −0 ggml/src/ggml-impl.h
+275 −39 ggml/src/ggml-metal.m
+1,213 −1,074 ggml/src/ggml-metal.metal
+38 −51 ggml/src/ggml-quants.c
+1 −8 ggml/src/ggml-rpc.cpp
+1 −4 ggml/src/ggml-vulkan.cpp
+4,360 −19,408 ggml/src/ggml.c
+1 −0 include/llama.h
+2 −1 pocs/vdot/q8dot.cpp
+6 −4 pocs/vdot/vdot.cpp
+1 −1 scripts/sync-ggml.last
+1 −0 spm-headers/ggml-cpp.h
+1 −0 spm-headers/ggml-cpu.h
+206 −253 src/llama.cpp
+1 −0 tests/test-backend-ops.cpp
+1 −0 tests/test-barrier.cpp
+1 −0 tests/test-grad0.cpp
+6 −4 tests/test-quantize-fns.cpp
+4 −2 tests/test-quantize-perf.cpp
+1 −0 tests/test-rope.cpp
Loading