2023-04-06 03:41:23 +00:00
import argparse
2023-06-05 18:19:02 +00:00
import enum
2023-09-13 15:38:20 +00:00
import comfy . options
2023-06-05 18:19:02 +00:00
class EnumAction ( argparse . Action ) :
"""
Argparse action for handling Enums
"""
def __init__ ( self , * * kwargs ) :
# Pop off the type value
enum_type = kwargs . pop ( " type " , None )
# Ensure an Enum subclass is provided
if enum_type is None :
raise ValueError ( " type must be assigned an Enum when using EnumAction " )
if not issubclass ( enum_type , enum . Enum ) :
raise TypeError ( " type must be an Enum when using EnumAction " )
# Generate choices from the Enum
choices = tuple ( e . value for e in enum_type )
kwargs . setdefault ( " choices " , choices )
kwargs . setdefault ( " metavar " , f " [ { ' , ' . join ( list ( choices ) ) } ] " )
super ( EnumAction , self ) . __init__ ( * * kwargs )
self . _enum = enum_type
def __call__ ( self , parser , namespace , values , option_string = None ) :
# Convert value back into an Enum
value = self . _enum ( values )
setattr ( namespace , self . dest , value )
2023-04-06 03:41:23 +00:00
parser = argparse . ArgumentParser ( )
2023-04-06 23:06:39 +00:00
parser . add_argument ( " --listen " , type = str , default = " 127.0.0.1 " , metavar = " IP " , nargs = " ? " , const = " 0.0.0.0 " , help = " Specify the IP address to listen on (default: 127.0.0.1). If --listen is provided without an argument, it defaults to 0.0.0.0. (listens on all) " )
2023-04-06 03:41:23 +00:00
parser . add_argument ( " --port " , type = int , default = 8188 , help = " Set the listen port. " )
2023-04-06 23:06:39 +00:00
parser . add_argument ( " --enable-cors-header " , type = str , default = None , metavar = " ORIGIN " , nargs = " ? " , const = " * " , help = " Enable CORS (Cross-Origin Resource Sharing) with optional origin or allow all with default ' * ' . " )
2023-10-29 07:55:46 +00:00
parser . add_argument ( " --max-upload-size " , type = float , default = 100 , help = " Set the maximum upload size in MB. " )
2023-04-06 23:06:39 +00:00
parser . add_argument ( " --extra-model-paths-config " , type = str , default = None , metavar = " PATH " , nargs = ' + ' , action = ' append ' , help = " Load one or more extra_model_paths.yaml files. " )
2023-04-06 03:41:23 +00:00
parser . add_argument ( " --output-directory " , type = str , default = None , help = " Set the ComfyUI output directory. " )
2023-08-11 09:00:25 +00:00
parser . add_argument ( " --temp-directory " , type = str , default = None , help = " Set the ComfyUI temp directory (default is in the ComfyUI directory). " )
2023-10-04 22:45:15 +00:00
parser . add_argument ( " --input-directory " , type = str , default = None , help = " Set the ComfyUI input directory. " )
2023-05-06 20:59:40 +00:00
parser . add_argument ( " --auto-launch " , action = " store_true " , help = " Automatically launch ComfyUI in the default browser. " )
2023-08-07 06:22:26 +00:00
parser . add_argument ( " --disable-auto-launch " , action = " store_true " , help = " Disable auto launching the browser. " )
2023-04-06 23:06:39 +00:00
parser . add_argument ( " --cuda-device " , type = int , default = None , metavar = " DEVICE_ID " , help = " Set the id of the cuda device this instance will use. " )
2023-07-17 18:40:29 +00:00
cm_group = parser . add_mutually_exclusive_group ( )
cm_group . add_argument ( " --cuda-malloc " , action = " store_true " , help = " Enable cudaMallocAsync (enabled by default for torch 2.0 and up). " )
2023-07-19 14:20:32 +00:00
cm_group . add_argument ( " --disable-cuda-malloc " , action = " store_true " , help = " Disable cudaMallocAsync. " )
2023-07-17 18:40:29 +00:00
2023-04-06 03:41:23 +00:00
parser . add_argument ( " --dont-upcast-attention " , action = " store_true " , help = " Disable upcasting of attention. Can boost speed but increase the chances of black images. " )
2023-07-02 02:42:35 +00:00
fp_group = parser . add_mutually_exclusive_group ( )
fp_group . add_argument ( " --force-fp32 " , action = " store_true " , help = " Force fp32 (If this makes your GPU work better please report it). " )
fp_group . add_argument ( " --force-fp16 " , action = " store_true " , help = " Force fp16. " )
2023-10-13 18:51:10 +00:00
parser . add_argument ( " --bf16-unet " , action = " store_true " , help = " Run the UNET in bf16. This should only be used for testing stuff. " )
2023-07-06 22:04:28 +00:00
fpvae_group = parser . add_mutually_exclusive_group ( )
fpvae_group . add_argument ( " --fp16-vae " , action = " store_true " , help = " Run the VAE in fp16, might cause black images. " )
2023-08-28 03:06:19 +00:00
fpvae_group . add_argument ( " --fp32-vae " , action = " store_true " , help = " Run the VAE in full precision fp32. " )
fpvae_group . add_argument ( " --bf16-vae " , action = " store_true " , help = " Run the VAE in bf16. " )
2023-07-06 22:04:28 +00:00
2023-11-17 07:56:59 +00:00
fpte_group = parser . add_mutually_exclusive_group ( )
fpte_group . add_argument ( " --fp8_e4m3fn-text-enc " , action = " store_true " , help = " Store text encoder weights in fp8 (e4m3fn variant). " )
fpte_group . add_argument ( " --fp8_e5m2-text-enc " , action = " store_true " , help = " Store text encoder weights in fp8 (e5m2 variant). " )
fpte_group . add_argument ( " --fp16-text-enc " , action = " store_true " , help = " Store text encoder weights in fp16. " )
fpte_group . add_argument ( " --fp32-text-enc " , action = " store_true " , help = " Store text encoder weights in fp32. " )
2023-04-28 20:51:35 +00:00
parser . add_argument ( " --directml " , type = int , nargs = " ? " , metavar = " DIRECTML_DEVICE " , const = - 1 , help = " Use torch-directml. " )
2023-04-06 03:41:23 +00:00
2023-08-17 10:12:17 +00:00
parser . add_argument ( " --disable-ipex-optimize " , action = " store_true " , help = " Disables ipex.optimize when loading models with Intel GPUs. " )
2023-06-05 23:59:10 +00:00
class LatentPreviewMethod ( enum . Enum ) :
2023-06-06 05:26:52 +00:00
NoPreviews = " none "
2023-06-05 23:59:10 +00:00
Auto = " auto "
2023-06-05 23:39:56 +00:00
Latent2RGB = " latent2rgb "
2023-06-05 18:19:02 +00:00
TAESD = " taesd "
2023-06-06 05:26:52 +00:00
parser . add_argument ( " --preview-method " , type = LatentPreviewMethod , default = LatentPreviewMethod . NoPreviews , help = " Default preview method for sampler nodes. " , action = EnumAction )
2023-06-05 18:19:02 +00:00
2023-04-06 03:41:23 +00:00
attn_group = parser . add_mutually_exclusive_group ( )
2023-06-26 16:55:07 +00:00
attn_group . add_argument ( " --use-split-cross-attention " , action = " store_true " , help = " Use the split cross attention optimization. Ignored when xformers is used. " )
attn_group . add_argument ( " --use-quad-cross-attention " , action = " store_true " , help = " Use the sub-quadratic cross attention optimization . Ignored when xformers is used. " )
2023-04-06 03:41:23 +00:00
attn_group . add_argument ( " --use-pytorch-cross-attention " , action = " store_true " , help = " Use the new pytorch 2.0 cross attention function. " )
parser . add_argument ( " --disable-xformers " , action = " store_true " , help = " Disable xformers. " )
vram_group = parser . add_mutually_exclusive_group ( )
2023-06-15 19:21:37 +00:00
vram_group . add_argument ( " --gpu-only " , action = " store_true " , help = " Store and run everything (text encoders/CLIP models, etc... on the GPU). " )
2023-04-06 03:41:23 +00:00
vram_group . add_argument ( " --highvram " , action = " store_true " , help = " By default models will be unloaded to CPU memory after being used. This option keeps them in GPU memory. " )
vram_group . add_argument ( " --normalvram " , action = " store_true " , help = " Used to force normal vram use if lowvram gets automatically enabled. " )
vram_group . add_argument ( " --lowvram " , action = " store_true " , help = " Split the unet in parts to use less vram. " )
vram_group . add_argument ( " --novram " , action = " store_true " , help = " When lowvram isn ' t enough. " )
vram_group . add_argument ( " --cpu " , action = " store_true " , help = " To use the CPU for everything (slow). " )
2023-06-15 19:21:37 +00:00
2023-08-17 07:12:37 +00:00
parser . add_argument ( " --disable-smart-memory " , action = " store_true " , help = " Force ComfyUI to agressively offload to regular ram instead of keeping models in vram when it can. " )
2023-04-06 03:41:23 +00:00
parser . add_argument ( " --dont-print-server " , action = " store_true " , help = " Don ' t print server output. " )
parser . add_argument ( " --quick-test-for-ci " , action = " store_true " , help = " Quick test for CI. " )
2023-04-07 19:52:56 +00:00
parser . add_argument ( " --windows-standalone-build " , action = " store_true " , help = " Windows standalone build: Enable convenient things that most people using the standalone windows build will probably enjoy (like auto opening the page on startup). " )
2023-04-06 03:41:23 +00:00
2023-07-28 16:31:41 +00:00
parser . add_argument ( " --disable-metadata " , action = " store_true " , help = " Disable saving prompt metadata in files. " )
2023-09-13 15:38:20 +00:00
if comfy . options . args_parsing :
args = parser . parse_args ( )
else :
args = parser . parse_args ( [ ] )
2023-05-06 20:59:40 +00:00
if args . windows_standalone_build :
args . auto_launch = True
2023-08-07 06:22:26 +00:00
if args . disable_auto_launch :
args . auto_launch = False