diff options
author | Steve Grubb <ausearch.1@gmail.com> | 2024-03-14 14:29:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 20:29:32 +0200 |
commit | 6e0438da3cc95b89cdbf55f45fa4e324d9076792 (patch) | |
tree | 82e2e752df7c50b24aba8459e935ac83309214fb /examples/train-text-from-scratch | |
parent | 727107707a73b3dc8a497cf9fc9405722c16dd2b (diff) |
gguf : fix resource leaks (#6061)
There several places where a gguf context is allocated. A call to gguf_free
is missing in some error paths. Also on linux, llama-bench was missing a
fclose.
Diffstat (limited to 'examples/train-text-from-scratch')
-rw-r--r-- | examples/train-text-from-scratch/train-text-from-scratch.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/train-text-from-scratch/train-text-from-scratch.cpp b/examples/train-text-from-scratch/train-text-from-scratch.cpp index 7eafe851..7d06e401 100644 --- a/examples/train-text-from-scratch/train-text-from-scratch.cpp +++ b/examples/train-text-from-scratch/train-text-from-scratch.cpp @@ -711,6 +711,7 @@ static bool load_checkpoint_file(const char * filename, struct my_llama_model * load_checkpoint_gguf(fctx, f_ggml_ctx, model, train); + gguf_free(fctx); return true; } |