]> git.djapps.eu Git - pkg/ggml/sources/ggml/commit
ggml: new backend for Virglrenderer API Remoting acceleration (v2) (llama/18718)
authorKevin Pouget <redacted>
Wed, 28 Jan 2026 09:49:40 +0000 (10:49 +0100)
committerGeorgi Gerganov <redacted>
Fri, 30 Jan 2026 11:49:29 +0000 (13:49 +0200)
commit2e2ec9ccb00933f26878cf3a35592c2f774abeae
tree6982b5dec1678fa610903a55c4acb70765445a3c
parenta18015f4da3157af9e4103917d3e178dba7a5fc9
ggml: new backend for Virglrenderer API Remoting acceleration (v2) (llama/18718)
46 files changed:
CMakeLists.txt
include/ggml-virtgpu.h [new file with mode: 0644]
src/CMakeLists.txt
src/ggml-backend-reg.cpp
src/ggml-virtgpu/CMakeLists.txt [new file with mode: 0644]
src/ggml-virtgpu/apir_cs_ggml-rpc-front.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/CMakeLists.txt [new file with mode: 0644]
src/ggml-virtgpu/backend/apir_cs_ggml-rpc-back.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-convert.h [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched-backend.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched-buffer-type.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched-buffer.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched-device.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched.gen.h [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-dispatched.h [new file with mode: 0644]
src/ggml-virtgpu/backend/backend-virgl-apir.h [new file with mode: 0644]
src/ggml-virtgpu/backend/backend.cpp [new file with mode: 0644]
src/ggml-virtgpu/backend/shared/api_remoting.h [new file with mode: 0644]
src/ggml-virtgpu/backend/shared/apir_backend.gen.h [new file with mode: 0644]
src/ggml-virtgpu/backend/shared/apir_backend.h [new file with mode: 0644]
src/ggml-virtgpu/backend/shared/apir_cs.h [new file with mode: 0644]
src/ggml-virtgpu/backend/shared/apir_cs_ggml.h [new file with mode: 0644]
src/ggml-virtgpu/backend/shared/apir_cs_rpc.h [new file with mode: 0644]
src/ggml-virtgpu/ggml-backend-buffer-type.cpp [new file with mode: 0644]
src/ggml-virtgpu/ggml-backend-buffer.cpp [new file with mode: 0644]
src/ggml-virtgpu/ggml-backend-device.cpp [new file with mode: 0644]
src/ggml-virtgpu/ggml-backend-reg.cpp [new file with mode: 0644]
src/ggml-virtgpu/ggml-backend.cpp [new file with mode: 0644]
src/ggml-virtgpu/ggml-remoting.h [new file with mode: 0644]
src/ggml-virtgpu/ggmlremoting_functions.yaml [new file with mode: 0644]
src/ggml-virtgpu/include/apir_hw.h [new file with mode: 0644]
src/ggml-virtgpu/regenerate_remoting.py [new file with mode: 0755]
src/ggml-virtgpu/virtgpu-apir.h [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-forward-backend.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-forward-buffer-type.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-forward-buffer.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-forward-device.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-forward-impl.h [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-forward.gen.h [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-shm.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-shm.h [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-utils.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu-utils.h [new file with mode: 0644]
src/ggml-virtgpu/virtgpu.cpp [new file with mode: 0644]
src/ggml-virtgpu/virtgpu.h [new file with mode: 0644]