From b88fc44d0ebe3c19fd095598da0ebb9915b0236d Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Mon, 16 Mar 2026 16:27:49 +0800 Subject: [PATCH] add some debug prints --- otherarch/acestep/ace-qwen3.cpp | 1 + otherarch/acestep/dit-vae.cpp | 4 ++++ 2 files changed, 5 insertions(+) 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"); } }