mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-08 09:59:50 +00:00
music lowvram indicator
This commit is contained in:
parent
05834eecb3
commit
173702d1a4
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue