]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commit
ggml: add GATED_DELTA_NET op (#19504)
authorAman Gupta <redacted>
Sat, 7 Mar 2026 07:41:10 +0000 (15:41 +0800)
committerGitHub <redacted>
Sat, 7 Mar 2026 07:41:10 +0000 (15:41 +0800)
commitc5a778891ba0ddbd4cbb507c823f970595b1adc2
treef0dd743d6b48a5414f1423b7ac21c894d367ed13
parent6fce5c6a7dba6a3e1df0aad1574b78d1a1970621
ggml: add GATED_DELTA_NET op (#19504)

* ggml: add GATED_DELTA_NET op

* remove the transpose

* add KDA

* add qwen35 dense

* llama : check for fused gated delta net backend support

---------

Co-authored-by: Georgi Gerganov <redacted>
15 files changed:
ggml/include/ggml.h
ggml/src/ggml-cpu/ggml-cpu.c
ggml/src/ggml-cpu/ops.cpp
ggml/src/ggml-cpu/ops.h
ggml/src/ggml-cuda/gated_delta_net.cu [new file with mode: 0644]
ggml/src/ggml-cuda/gated_delta_net.cuh [new file with mode: 0644]
ggml/src/ggml-cuda/ggml-cuda.cu
ggml/src/ggml.c
src/llama-context.cpp
src/llama-cparams.h
src/llama-impl.h
src/models/delta-net-base.cpp
src/models/qwen35.cpp
src/models/qwen35moe.cpp
tests/test-backend-ops.cpp