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

Bump ggml.cpp from ee1b372 to 7ddb66d #67

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 ggml.cpp
Submodule ggml.cpp updated 94 files
+19 −0 .editorconfig
+93 −2 .github/workflows/ci.yml
+14 −2 .gitignore
+108 −1 CMakeLists.txt
+9 −3 README.md
+52 −32 build.zig
+260 −0 ci/run.sh
+1 −0 examples/CMakeLists.txt
+81 −18 examples/common.cpp
+30 −7 examples/common.h
+230 −87 examples/dolly-v2/main.cpp
+1 −1 examples/dolly-v2/quantize.cpp
+121 −73 examples/gpt-2/main.cpp
+1 −1 examples/gpt-2/quantize.cpp
+16 −16 examples/gpt-j/main.cpp
+1 −1 examples/gpt-j/quantize.cpp
+4 −4 examples/gpt-neox/README.md
+24 −23 examples/gpt-neox/main.cpp
+1 −1 examples/gpt-neox/quantize.cpp
+7 −0 examples/mnist/CMakeLists.txt
+87 −63 examples/mnist/README.md
+169 −0 examples/mnist/main-cnn.cpp
+6 −5 examples/mnist/main-cpu.cpp
+4 −5 examples/mnist/main-mtl.cpp
+44 −32 examples/mnist/main-mtl.m
+5 −3 examples/mnist/main.cpp
+101 −0 examples/mnist/mnist-cnn.py
+27 −0 examples/mpt/README.md
+74 −63 examples/mpt/convert-h5-to-ggml.py
+14 −14 examples/mpt/main.cpp
+1 −1 examples/mpt/quantize.cpp
+115 −0 examples/python/README.md
+14 −0 examples/python/api.h
+25 −0 examples/python/example_add_quant.py
+68 −0 examples/python/example_test_all_quants.py
+58 −0 examples/python/ggml/__init__.py
+2,431 −0 examples/python/ggml/__init__.pyi
+11 −0 examples/python/ggml/cffi.py
+7 −0 examples/python/ggml/ffi/__init__.pyi
+182 −0 examples/python/ggml/utils.py
+42 −0 examples/python/regenerate.py
+128 −0 examples/python/stubs.py
+258 −0 examples/python/test_tensor.py
+23 −22 examples/replit/main.cpp
+1 −1 examples/replit/quantize.cpp
+13 −0 examples/sam/CMakeLists.txt
+105 −0 examples/sam/README.md
+147 −0 examples/sam/convert-pth-to-ggml.py
+2,201 −0 examples/sam/main.cpp
+18 −0 examples/starcoder/CMakeLists.txt
+17 −21 examples/starcoder/convert-hf-to-ggml.py
+49 −25 examples/starcoder/main.cpp
+1 −1 examples/starcoder/quantize.cpp
+1,127 −0 examples/starcoder/starcoder-mmap.cpp
+7,987 −0 examples/stb_image.h
+1,724 −0 examples/stb_image_write.h
+175 −160 examples/whisper/convert-pt-to-ggml.py
+139 −59 examples/whisper/main.cpp
+2 −2 examples/whisper/quantize.cpp
+1,427 −937 examples/whisper/whisper.cpp
+38 −7 examples/whisper/whisper.h
+10 −0 ggml.pc.in
+26 −0 include/ggml/ggml-alloc.h
+627 −125 include/ggml/ggml.h
+7 −0 scripts/sync-llama.sh
+2 −0 scripts/sync-whisper.sh
+76 −21 src/CMakeLists.txt
+633 −0 src/ggml-alloc.c
+4,253 −429 src/ggml-cuda.cu
+27 −20 src/ggml-cuda.h
+19 −1 src/ggml-metal.h
+627 −310 src/ggml-metal.m
+1,559 −1,035 src/ggml-metal.metal
+364 −183 src/ggml-opencl.cpp
+6,023 −4,362 src/ggml.c
+120 −26 tests/CMakeLists.txt
+4 −2 tests/test-blas0.c
+175 −0 tests/test-conv-transpose.c
+223 −0 tests/test-customop.c
+456 −120 tests/test-grad0.cpp
+12 −12 tests/test-mul-mat0.c
+9 −14 tests/test-mul-mat2.c
+24 −17 tests/test-opt.cpp
+143 −0 tests/test-pool.c
+164 −0 tests/test-quantize-fns.cpp
+362 −0 tests/test-quantize-perf.cpp
+84 −0 tests/test-rel-pos.c
+1 −1 tests/test-vec1.c
+87 −0 tests/test-xpos.c
+0 −2 tests/test0.zig
+14 −12 tests/test1.c
+31 −31 tests/test1.zig
+165 −0 tests/test2.zig
+102 −0 tests/test3.zig
Loading