From 9d0665c8d0dec457b87c91a20a1af2083857c988 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Tue, 21 Mar 2023 16:57:35 -0400 Subject: [PATCH] Add laptop quadro cards to fp32 list. --- comfy/model_management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comfy/model_management.py b/comfy/model_management.py index c26d682f..5c4e97da 100644 --- a/comfy/model_management.py +++ b/comfy/model_management.py @@ -231,7 +231,7 @@ def should_use_fp16(): return False #FP32 is faster on those cards? - nvidia_16_series = ["1660", "1650", "1630"] + nvidia_16_series = ["1660", "1650", "1630", "T500", "T550", "T600"] for x in nvidia_16_series: if x in props.name: return False