From 93c0fc34460721ac66b3c3920876403bf0d80d60 Mon Sep 17 00:00:00 2001 From: patientx Date: Wed, 5 Feb 2025 23:12:38 +0300 Subject: [PATCH] Update supported_models.py --- comfy/supported_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy/supported_models.py b/comfy/supported_models.py index d6781dcd4..c35a95432 100644 --- a/comfy/supported_models.py +++ b/comfy/supported_models.py @@ -420,7 +420,7 @@ class Stable_Cascade_C(supported_models_base.BASE): unet_extra_config = {} latent_format = latent_formats.SC_Prior - supported_inference_dtypes = [torch.bfloat16, torch.float32] + supported_inference_dtypes = [torch.float16, torch.float32] sampling_settings = { "shift": 2.0, @@ -466,7 +466,7 @@ class Stable_Cascade_B(Stable_Cascade_C): unet_extra_config = {} latent_format = latent_formats.SC_B - supported_inference_dtypes = [torch.float16, torch.bfloat16, torch.float32] + supported_inference_dtypes = [torch.float16, torch.float32] sampling_settings = { "shift": 1.0,