From 173702d1a4e77f240aaa9725a18f01d6a0f2f038 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Thu, 26 Feb 2026 21:30:47 +0800 Subject: [PATCH] music lowvram indicator --- otherarch/acestep/music_adapter.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/otherarch/acestep/music_adapter.cpp b/otherarch/acestep/music_adapter.cpp index 15fc15b95..ec4b8c27a 100644 --- a/otherarch/acestep/music_adapter.cpp +++ b/otherarch/acestep/music_adapter.cpp @@ -53,6 +53,10 @@ bool musictype_load_model(const music_load_model_inputs inputs) std::string musicdiffusion_filename = inputs.musicdiffusion_filename; std::string musicvae_filename = inputs.musicvae_filename; bool lowvram = inputs.lowvram; + if(lowvram) + { + printf("\nMusicGen LowVRAM mode, will swap models at runtime"); + } printf("\nLoading Music Gen LLM Model: %s\nLoading Music Gen Embed Model: %s\nLoading Music Gen Diffusion Model: %s\nLoading Music Gen VAE Model: %s\n", musicllm_filename.c_str(),musicembedding_filename.c_str(),musicdiffusion_filename.c_str(),musicvae_filename.c_str()); musicdebugmode = inputs.debugmode;