From 0f584ea9835ff97d9263e2e88d9c635f918af16c Mon Sep 17 00:00:00 2001 From: blepping Date: Wed, 20 Aug 2025 12:30:27 -0600 Subject: [PATCH] Increase Chroma Radiance memory usage factor once again --- comfy/supported_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/supported_models.py b/comfy/supported_models.py index ad19c56be..bf69a6c55 100644 --- a/comfy/supported_models.py +++ b/comfy/supported_models.py @@ -1213,7 +1213,7 @@ class ChromaRadiance(Chroma): latent_format = comfy.latent_formats.ChromaRadiance # Pixel-space model, no spatial compression for model input. - memory_usage_factor = 0.55 + memory_usage_factor = 0.75 def get_model(self, state_dict, prefix="", device=None): return model_base.ChromaRadiance(self, device=device)