]> git.djapps.eu Git - pkg/ggml/sources/ggml/commit
ggml : Depthwise 2D convolution (#1152)
authorAcly <redacted>
Thu, 17 Apr 2025 12:16:45 +0000 (14:16 +0200)
committerGitHub <redacted>
Thu, 17 Apr 2025 12:16:45 +0000 (15:16 +0300)
commiteb22d6d7d40c267c1d024db5452976db55b7f28f
tree5aa69e1f86cf86b2df01b49cd8a77c13f743c027
parentbe935ac773b57b93dd65bbd1f563dd89c220716f
ggml : Depthwise 2D convolution (#1152)

* ggml-cpu : kernels for faster depthwise 2D convolution

* fix compile: remove static after moving to ops.cpp

* add dilation for depthwise_conv_2d

* review: rename to ggml_conv_2d_dw_direct, remove redundant struct keywords, pass by ref, whitespace

* review: rename depthwise_conv_2d -> conv_2d_dw everywhere
include/ggml.h
src/ggml-cpu/ggml-cpu.c
src/ggml-cpu/ops.cpp
src/ggml-cpu/ops.h
src/ggml.c
tests/CMakeLists.txt
tests/test-conv2d-dw.cpp [new file with mode: 0644]