From: Felix Date: Mon, 18 Mar 2024 15:40:22 +0000 (+0100) Subject: clip : fix memory leak (#6138) X-Git-Tag: upstream/0.0.4488~2029 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=104f5e0fc156d48476258295457cafeec2a2af10;p=pkg%2Fggml%2Fsources%2Fllama.cpp clip : fix memory leak (#6138) --- diff --git a/examples/llava/clip.cpp b/examples/llava/clip.cpp index a0ed82d7..690bca2e 100644 --- a/examples/llava/clip.cpp +++ b/examples/llava/clip.cpp @@ -497,7 +497,6 @@ struct clip_ctx { // memory buffers to evaluate the model ggml_backend_buffer_t params_buffer = NULL; - ggml_backend_buffer_t compute_buffer = NULL; ggml_backend_t backend = NULL; ggml_gallocr_t compute_alloc = NULL; @@ -1676,6 +1675,9 @@ void clip_free(clip_ctx * ctx) { ggml_free(ctx->ctx_data); gguf_free(ctx->ctx_gguf); + ggml_backend_buffer_free(ctx->params_buffer); + ggml_backend_free(ctx->backend); + ggml_gallocr_free(ctx->compute_alloc); delete ctx; }