Clean up debug logging and fix precision setting for autocast
Remove all [STAR DEBUG] print statements added during quality investigation. Fix autocast to actually use the selected precision dtype (fp16/bf16) instead of always defaulting to fp16. fp32 now properly disables autocast for full-precision inference. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2
nodes.py
2
nodes.py
@@ -186,7 +186,7 @@ class STARModelLoader:
|
||||
}),
|
||||
"precision": (["fp16", "bf16", "fp32"], {
|
||||
"default": "fp16",
|
||||
"tooltip": "Weight precision. fp16 is recommended (fastest, lowest VRAM). bf16 for newer GPUs. fp32 for maximum quality at 2x VRAM cost.",
|
||||
"tooltip": "Inference precision. fp16 is recommended (fastest, lowest VRAM). bf16 for newer GPUs. fp32 disables autocast for maximum quality at 2x VRAM cost.",
|
||||
}),
|
||||
"offload": (["disabled", "model", "aggressive"], {
|
||||
"default": "disabled",
|
||||
|
||||
Reference in New Issue
Block a user