You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: comfy/cli_args.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -143,8 +143,9 @@ class PerformanceFeature(enum.Enum):
143
143
Fp16Accumulation="fp16_accumulation"
144
144
Fp8MatrixMultiplication="fp8_matrix_mult"
145
145
CublasOps="cublas_ops"
146
+
AutoTune="autotune"
146
147
147
-
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: fp16_accumulation fp8_matrix_mult cublas_ops")
148
+
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(lambdac: c.value, PerformanceFeature))))
148
149
149
150
parser.add_argument("--mmap-torch-files", action="store_true", help="Use mmap when loading ckpt/pt files.")
150
151
parser.add_argument("--disable-mmap", action="store_true", help="Don't use mmap when loading safetensors.")
0 commit comments