diff options
author | slaren <slarengh@gmail.com> | 2024-04-26 17:07:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 18:07:42 +0300 |
commit | e2764cd7ca1112d9303eba9e81c9935ee67352ff (patch) | |
tree | 17abfe66fc5d859630595695b886be7b461af666 | |
parent | 4b1c3c98b442a4c84a788fff6323f6fa7e678a5b (diff) |
gguf : fix mismatch between alloc and free functions (#6929)
-rw-r--r-- | ggml.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20987,7 +20987,7 @@ void gguf_free(struct gguf_context * ctx) { GGML_FREE(ctx->infos); } - GGML_ALIGNED_FREE(ctx); + GGML_FREE(ctx); } const char * gguf_type_name(enum gguf_type type) { |