diff --git a/otherarch/acestep/ace-qwen3.cpp b/otherarch/acestep/ace-qwen3.cpp index 4100b3499..f3df01f8a 100644 --- a/otherarch/acestep/ace-qwen3.cpp +++ b/otherarch/acestep/ace-qwen3.cpp @@ -1286,6 +1286,7 @@ void unload_acestep_lm() { acestep_lm_loaded = false; qw3lm_free(&acestep_llm); + printf("Unload Music LM model...\n"); } } diff --git a/otherarch/acestep/dit-vae.cpp b/otherarch/acestep/dit-vae.cpp index d7078a444..ff84e89ec 100644 --- a/otherarch/acestep/dit-vae.cpp +++ b/otherarch/acestep/dit-vae.cpp @@ -68,6 +68,7 @@ void unload_acestep_dit_core() { acestep_dit_core_loaded = false; dit_ggml_free(&acestep_dit); + printf("Unload music diffusion model...\n"); } } void unload_acestep_dit_others() @@ -79,6 +80,7 @@ void unload_acestep_dit_others() cond_ggml_free(&music_cond); detok_ggml_free(&detok); qwen3_free(&music_text_enc); + printf("Unload music tokenizer and conditioner model...\n"); } } void unload_acestep_vae_enc() @@ -87,6 +89,7 @@ void unload_acestep_vae_enc() { acestep_vae_enc_loaded = false; vae_enc_free(&vae_enc); + printf("Unload music VAE enc model...\n"); } } void unload_acestep_vae_dec() @@ -95,6 +98,7 @@ void unload_acestep_vae_dec() { acestep_vae_dec_loaded = false; vae_ggml_free(&vae); + printf("Unload music VAE dec model...\n"); } }