]> git.djapps.eu Git - pkg/ggml/sources/ggml/commit
opencl: add new ops - `argsort`, `div`, `sub`, `addrows`, `sigmoid`, `group_norm...
authorlhez <redacted>
Tue, 27 May 2025 19:56:08 +0000 (12:56 -0700)
committerGeorgi Gerganov <redacted>
Sun, 1 Jun 2025 11:01:05 +0000 (14:01 +0300)
commitf49f709ab64255c85f69f857bf6d5bdef78a434d
tree806673353e70ece89792a4f3e01d88220dac1656
parent0af8c80aaa78edc91ff63f16e2a9ad63eb9f2222
opencl: add new ops - `argsort`, `div`, `sub`, `addrows`, `sigmoid`, `group_norm` (llama/13787)

* opencl: add `argsort`

* opencl: add `div`

* opencl: add `add_rows`

* opencl: add `sub`

* opencl: add `sigmoid`, both `f16` and `f32`

* opencl: add `group_norm`
src/ggml-opencl/CMakeLists.txt
src/ggml-opencl/ggml-opencl.cpp
src/ggml-opencl/kernels/argsort.cl [new file with mode: 0644]
src/ggml-opencl/kernels/div.cl [new file with mode: 0644]
src/ggml-opencl/kernels/group_norm.cl [new file with mode: 0644]
src/ggml-opencl/kernels/sigmoid.cl [new file with mode: 0644]
src/ggml-opencl/kernels/sub.cl [new file with mode: 0644]
src/ggml-opencl/kernels/sum_rows.cl [new file with mode: 0644]