ggml: added cleanups in ggml_quantize_free (#19278)
Some checks failed
Python Type-Check / pyright type-check (push) Waiting to run
Update Operations Documentation / update-ops-docs (push) Has been cancelled

Add missing cleanup calls for IQ2_S, IQ1_M quantization types and IQ3XS with 512 blocks during quantization cleanup.
This commit is contained in:
George 2026-02-03 08:43:39 +02:00 committed by GitHub
parent 41e3f02647
commit e9a859db3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7517,8 +7517,11 @@ void ggml_quantize_free(void) {
iq2xs_free_impl(GGML_TYPE_IQ2_XXS);
iq2xs_free_impl(GGML_TYPE_IQ2_XS);
iq2xs_free_impl(GGML_TYPE_IQ2_S);
iq2xs_free_impl(GGML_TYPE_IQ1_S);
iq2xs_free_impl(GGML_TYPE_IQ1_M);
iq3xs_free_impl(256);
iq3xs_free_impl(512);
ggml_critical_section_end();
}