Skip to content

Commit

Permalink
Bump ggml.cpp from ee1b372 to 1a5d5f3
Browse files Browse the repository at this point in the history
Bumps [ggml.cpp](https://github.com/ggerganov/ggml) from `ee1b372` to `1a5d5f3`.
- [Commits](ggerganov/ggml@ee1b372...1a5d5f3)

---
updated-dependencies:
- dependency-name: ggml.cpp
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 25, 2023
1 parent ffb09d7 commit a99ad2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ggml.cpp
Submodule ggml.cpp updated 87 files
+19 −0 .editorconfig
+23 −1 .github/workflows/ci.yml
+14 −2 .gitignore
+32 −0 CMakeLists.txt
+9 −3 README.md
+52 −32 build.zig
+260 −0 ci/run.sh
+1 −0 examples/CMakeLists.txt
+79 −14 examples/common.cpp
+30 −7 examples/common.h
+215 −74 examples/dolly-v2/main.cpp
+1 −1 examples/dolly-v2/quantize.cpp
+9 −10 examples/gpt-2/main.cpp
+1 −1 examples/gpt-2/quantize.cpp
+10 −11 examples/gpt-j/main.cpp
+1 −1 examples/gpt-j/quantize.cpp
+4 −4 examples/gpt-neox/README.md
+9 −10 examples/gpt-neox/main.cpp
+1 −1 examples/gpt-neox/quantize.cpp
+6 −1 examples/mnist/README.md
+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
+27 −0 examples/mpt/README.md
+74 −63 examples/mpt/convert-h5-to-ggml.py
+9 −10 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
+11 −11 examples/replit/main.cpp
+1 −1 examples/replit/quantize.cpp
+13 −0 examples/sam/CMakeLists.txt
+89 −0 examples/sam/README.md
+134 −0 examples/sam/convert-pth-to-ggml.py
+2,158 −0 examples/sam/main.cpp
+18 −0 examples/starcoder/CMakeLists.txt
+17 −21 examples/starcoder/convert-hf-to-ggml.py
+39 −16 examples/starcoder/main.cpp
+1 −1 examples/starcoder/quantize.cpp
+1,126 −0 examples/starcoder/starcoder-mmap.cpp
+7,987 −0 examples/stb_image.h
+1,724 −0 examples/stb_image_write.h
+90 −57 examples/whisper/main.cpp
+1 −1 examples/whisper/quantize.cpp
+228 −113 examples/whisper/whisper.cpp
+30 −6 examples/whisper/whisper.h
+10 −0 ggml.pc.in
+26 −0 include/ggml/ggml-alloc.h
+578 −110 include/ggml/ggml.h
+7 −0 scripts/sync-llama.sh
+67 −4 src/CMakeLists.txt
+579 −0 src/ggml-alloc.c
+3,978 −406 src/ggml-cuda.cu
+19 −25 src/ggml-cuda.h
+18 −1 src/ggml-metal.h
+349 −215 src/ggml-metal.m
+1,090 −972 src/ggml-metal.metal
+357 −176 src/ggml-opencl.cpp
+4,671 −3,323 src/ggml.c
+99 −26 tests/CMakeLists.txt
+4 −2 tests/test-blas0.c
+175 −0 tests/test-conv-transpose.c
+223 −0 tests/test-customop.c
+425 −109 tests/test-grad0.cpp
+11 −7 tests/test-mul-mat0.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
+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

0 comments on commit a99ad2a

Please sign in to comment.