-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bug IM2COL in Metal backend (llama/9943)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule ggml
updated
21 files
+4 −0 | CMakeLists.txt | |
+25 −0 | ggml/include/ggml-amx.h | |
+453 −0 | ggml/src/ggml-amx.cpp | |
+2 −0 | include/ggml-cann.h | |
+9 −2 | include/ggml-sycl.h | |
+2 −0 | include/ggml-vulkan.h | |
+1 −0 | include/ggml.h | |
+1 −1 | scripts/sync-llama.last | |
+42 −0 | src/CMakeLists.txt | |
+44 −9 | src/ggml-backend.cpp | |
+250 −104 | src/ggml-cann.cpp | |
+1 −1 | src/ggml-cuda/cpy.cuh | |
+8 −0 | src/ggml-impl.h | |
+111 −19 | src/ggml-metal.m | |
+178 −0 | src/ggml-metal.metal | |
+299 −261 | src/ggml-rpc.cpp | |
+4,249 −4,014 | src/ggml-sycl.cpp | |
+69 −67 | src/ggml-sycl/mmvq.cpp | |
+204 −74 | src/ggml-vulkan.cpp | |
+65 −23 | src/ggml.c | |
+10 −0 | tests/test-backend-ops.cpp |