Skip to content

Commit

Permalink
chore: version pump (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
tikikun authored Apr 16, 2024
1 parent d820e06 commit 169ab71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion llama.cpp
Submodule llama.cpp updated 65 files
+15 −7 .github/workflows/build.yml
+8 −2 .github/workflows/docker.yml
+1 −0 .gitignore
+9 −5 Makefile
+42 −27 Package.swift
+62 −88 README-sycl.md
+24 −21 README.md
+3 −3 SECURITY.md
+7 −7 build.zig
+49 −0 ci/run.sh
+1 −3 common/CMakeLists.txt
+18 −1 common/common.cpp
+4 −0 common/common.h
+138 −95 common/json-schema-to-grammar.cpp
+116 −3 convert-hf-to-gguf.py
+1 −1 convert.py
+119 −0 docs/HOWTO-add-model.md
+1 −0 examples/CMakeLists.txt
+9 −0 examples/eval-callback/CMakeLists.txt
+95 −0 examples/eval-callback/README.md
+195 −0 examples/eval-callback/eval-callback.cpp
+1 −1 examples/gbnf-validator/gbnf-validator.cpp
+1 −0 examples/gguf-split/README.md
+2 −2 examples/gguf-split/gguf-split.cpp
+89 −0 examples/gguf-split/tests.sh
+11 −4 examples/gguf/gguf.cpp
+2 −2 examples/gritlm/README.md
+10 −18 examples/imatrix/imatrix.cpp
+5 −0 examples/infill/README.md
+139 −73 examples/json_schema_to_grammar.py
+1 −1 examples/llava/MobileVLM-README.md
+1 −1 examples/llava/README.md
+4 −2 examples/main/README.md
+15 −16 examples/perplexity/README.md
+11 −3 examples/perplexity/perplexity.cpp
+11 −11 examples/quantize/README.md
+1 −1 examples/regex-to-grammar.py
+1 −1 examples/server/CMakeLists.txt
+5 −0 examples/server/README.md
+1,752 −1,570 examples/server/json-schema-to-grammar.mjs.hpp
+128 −72 examples/server/public/json-schema-to-grammar.mjs
+18 −6 examples/server/server.cpp
+1 −1 examples/sycl/build.sh
+1 −0 examples/sycl/run-llama2.sh
+2 −2 examples/ts-type-to-grammar.sh
+3 −3 flake.lock
+1 −1 ggml-cuda.cu
+27 −0 ggml-metal.m
+144 −1,054 ggml-metal.metal
+64 −51 ggml-sycl.cpp
+40 −26 ggml.c
+3 −0 ggml.h
+24 −0 gguf-py/gguf/constants.py
+12 −0 gguf-py/gguf/gguf_writer.py
+33 −25 gguf-py/gguf/tensor_mapping.py
+10 −0 grammars/README.md
+377 −145 llama.cpp
+3 −2 llama.h
+2 −1 scripts/get-wikitext-2.sh
+13 −8 scripts/hf.sh
+1 −1 tests/CMakeLists.txt
+1 −0 tests/test-backend-ops.cpp
+4 −0 tests/test-chat-template.cpp
+3 −3 tests/test-grammar-integration.cpp
+150 −93 tests/test-json-schema-to-grammar.cpp

0 comments on commit 169ab71

Please sign in to comment.