-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marcus Dunn
committed
Feb 25, 2024
1 parent
a709aa3
commit 732833f
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule llama.cpp
updated
26 files
+2 −0 | .github/ISSUE_TEMPLATE/bug.md | |
+127 −0 | .github/workflows/server.yml | |
+2 −0 | examples/quantize/quantize.cpp | |
+6 −0 | examples/server/README.md | |
+19 −19 | examples/server/server.cpp | |
+46 −0 | examples/server/tests/README.md | |
+67 −0 | examples/server/tests/features/environment.py | |
+4 −0 | examples/server/tests/features/issues.feature | |
+123 −0 | examples/server/tests/features/parallel.feature | |
+50 −0 | examples/server/tests/features/security.feature | |
+82 −0 | examples/server/tests/features/server.feature | |
+772 −0 | examples/server/tests/features/steps/steps.py | |
+21 −0 | examples/server/tests/features/wrong_usages.feature | |
+3 −0 | examples/server/tests/requirements.txt | |
+12 −0 | examples/server/tests/tests.sh | |
+170 −1 | ggml-cuda.cu | |
+29 −4 | ggml-metal.m | |
+304 −0 | ggml-metal.metal | |
+610 −64 | ggml-quants.c | |
+20 −0 | ggml-quants.h | |
+31 −0 | ggml.c | |
+2 −0 | ggml.h | |
+37 −13 | llama.cpp | |
+2 −0 | llama.h | |
+1 −1 | tests/test-backend-ops.cpp | |
+3 −1 | tests/test-quantize-fns.cpp |