]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ggml-openvino: Add GGML_BACKEND_DL_IMPL invocation for OpenVINO backend (#25795)
authorMarkus Ebner <redacted>
Tue, 21 Jul 2026 14:43:11 +0000 (16:43 +0200)
committerGitHub <redacted>
Tue, 21 Jul 2026 14:43:11 +0000 (22:43 +0800)
This adds the missing `GGML_BACKEND_DL_IMPL()` macro invocation, that other backends have.

Fixes #25586 for me

ggml/src/ggml-openvino/ggml-openvino.cpp

index 659dbd4b5acb6d68fa2aa7e11258b6241493152f..0e7501fefe385ba5f0eb78d84bed9f86e8866759 100644 (file)
@@ -1378,3 +1378,5 @@ GGML_BACKEND_API ggml_backend_reg_t ggml_backend_openvino_reg(void) {
 
     return &reg;
 }
+
+GGML_BACKEND_DL_IMPL(ggml_backend_openvino_reg)