From c51ec7cad9295c939fd6be25834bd810d084338e Mon Sep 17 00:00:00 2001 From: stduhpf Date: Wed, 20 May 2026 16:13:15 +0200 Subject: [PATCH] fix: always load runtimle lora params on runtime backend (#1532) --- src/stable-diffusion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stable-diffusion.cpp b/src/stable-diffusion.cpp index 962f46a2..51c35fa8 100644 --- a/src/stable-diffusion.cpp +++ b/src/stable-diffusion.cpp @@ -1211,7 +1211,7 @@ public: } auto lora = std::make_shared(lora_id, backend_for(module), - params_backend_for(module), + backend_for(module), lora_path, is_high_noise ? "model.high_noise_" : "", version);