Skip to content

Commit 97ff9fa

Browse files
Clarify help text for --fast argument (#10609)
Updated help text for the --fast argument to clarify potential risks.
1 parent 135fa49 commit 97ff9fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

comfy/cli_args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ class PerformanceFeature(enum.Enum):
147147
AutoTune = "autotune"
148148
PinnedMem = "pinned_memory"
149149

150-
parser.add_argument("--fast", nargs="*", type=PerformanceFeature, help="Enable some untested and potentially quality deteriorating optimizations. --fast with no arguments enables everything. You can pass a list specific optimizations if you only want to enable specific ones. Current valid optimizations: {}".format(" ".join(map(lambda c: c.value, PerformanceFeature))))
150+
parser.add_argument("--fast", nargs="*", type=PerformanceFeature, help="Enable some untested and potentially quality deteriorating optimizations. This is used to test new features so using it might crash your comfyui. --fast with no arguments enables everything. You can pass a list specific optimizations if you only want to enable specific ones. Current valid optimizations: {}".format(" ".join(map(lambda c: c.value, PerformanceFeature))))
151151

152152
parser.add_argument("--mmap-torch-files", action="store_true", help="Use mmap when loading ckpt/pt files.")
153153
parser.add_argument("--disable-mmap", action="store_true", help="Don't use mmap when loading safetensors.")

0 commit comments

Comments
 (0)