Browse Source

changes main.py to use argparse

pull/423/head
EllangoK 2 years ago
parent
commit
dd29966f8a
  1. 114
      main.py

114
main.py

@ -1,56 +1,53 @@
import argparse
import asyncio
import os import os
import sys
import shutil import shutil
import sys
import threading import threading
import asyncio
if os.name == "nt": if os.name == "nt":
import logging import logging
logging.getLogger("xformers").addFilter(lambda record: 'A matching Triton is not available' not in record.getMessage()) logging.getLogger("xformers").addFilter(lambda record: 'A matching Triton is not available' not in record.getMessage())
if __name__ == "__main__": if __name__ == "__main__":
if '--help' in sys.argv: parser = argparse.ArgumentParser(description="Script Arguments")
print()
print("Valid Command line Arguments:") parser.add_argument("--listen", type=str, default="127.0.0.1", help="Listen on IP or 0.0.0.0 if none given so the UI can be accessed from other computers.")
print("\t--listen [ip]\t\t\tListen on ip or 0.0.0.0 if none given so the UI can be accessed from other computers.") parser.add_argument("--port", type=int, default=8188, help="Set the listen port.")
print("\t--port 8188\t\t\tSet the listen port.") parser.add_argument("--extra-model-paths-config", type=str, default=None, help="Load an extra_model_paths.yaml file.")
print() parser.add_argument("--output-directory", type=str, default=None, help="Set the ComfyUI output directory.")
print("\t--extra-model-paths-config file.yaml\tload an extra_model_paths.yaml file.") parser.add_argument("--dont-upcast-attention", action="store_true", help="Disable upcasting of attention. Can boost speed but increase the chances of black images.")
print("\t--output-directory path/to/output\tSet the ComfyUI output directory.") parser.add_argument("--use-split-cross-attention", action="store_true", help="Use the split cross attention optimization instead of the sub-quadratic one. Ignored when xformers is used.")
print() parser.add_argument("--use-pytorch-cross-attention", action="store_true", help="Use the new pytorch 2.0 cross attention function.")
print() parser.add_argument("--disable-xformers", action="store_true", help="Disable xformers.")
print("\t--dont-upcast-attention\t\tDisable upcasting of attention \n\t\t\t\t\tcan boost speed but increase the chances of black images.\n") parser.add_argument("--cuda-device", type=int, default=None, help="Set the id of the cuda device this instance will use.")
print("\t--use-split-cross-attention\tUse the split cross attention optimization instead of the sub-quadratic one.\n\t\t\t\t\tIgnored when xformers is used.") parser.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.")
print("\t--use-pytorch-cross-attention\tUse the new pytorch 2.0 cross attention function.") parser.add_argument("--normalvram", action="store_true", help="Used to force normal vram use if lowvram gets automatically enabled.")
print("\t--disable-xformers\t\tdisables xformers") parser.add_argument("--lowvram", action="store_true", help="Split the unet in parts to use less vram.")
print("\t--cuda-device 1\t\tSet the id of the cuda device this instance will use.") parser.add_argument("--novram", action="store_true", help="When lowvram isn't enough.")
print() parser.add_argument("--cpu", action="store_true", help="To use the CPU for everything (slow).")
print("\t--highvram\t\t\tBy default models will be unloaded to CPU memory after being used.\n\t\t\t\t\tThis option keeps them in GPU memory.\n") parser.add_argument("--dont-print-server", action="store_true", help="Don't print server output.")
print("\t--normalvram\t\t\tUsed to force normal vram use if lowvram gets automatically enabled.") parser.add_argument("--quick-test-for-ci", action="store_true", help="Quick test for CI.")
print("\t--lowvram\t\t\tSplit the unet in parts to use less vram.") parser.add_argument("--windows-standalone-build", action="store_true", help="Windows standalone build.")
print("\t--novram\t\t\tWhen lowvram isn't enough.")
print() args = parser.parse_args()
print("\t--cpu\t\t\tTo use the CPU for everything (slow).")
exit() if args.dont_upcast_attention:
if '--dont-upcast-attention' in sys.argv:
print("disabling upcasting of attention") print("disabling upcasting of attention")
os.environ['ATTN_PRECISION'] = "fp16" os.environ['ATTN_PRECISION'] = "fp16"
try: if args.cuda_device is not None:
index = sys.argv.index('--cuda-device') os.environ['CUDA_VISIBLE_DEVICES'] = str(args.cuda_device)
device = sys.argv[index + 1] print("Set cuda device to:", args.cuda_device)
os.environ['CUDA_VISIBLE_DEVICES'] = device
print("Set cuda device to:", device)
except: import yaml
pass
from nodes import init_custom_nodes
import execution import execution
import server
import folder_paths import folder_paths
import yaml import server
from nodes import init_custom_nodes
def prompt_worker(q, server): def prompt_worker(q, server):
e = execution.PromptExecutor(server) e = execution.PromptExecutor(server)
@ -110,51 +107,30 @@ if __name__ == "__main__":
hijack_progress(server) hijack_progress(server)
threading.Thread(target=prompt_worker, daemon=True, args=(q,server,)).start() threading.Thread(target=prompt_worker, daemon=True, args=(q,server,)).start()
try:
address = '0.0.0.0'
p_index = sys.argv.index('--listen')
try:
ip = sys.argv[p_index + 1]
if ip[:2] != '--':
address = ip
except:
pass
except:
address = '127.0.0.1'
dont_print = False address = args.listen
if '--dont-print-server' in sys.argv:
dont_print = True dont_print = args.dont_print_server
extra_model_paths_config_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "extra_model_paths.yaml") extra_model_paths_config_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "extra_model_paths.yaml")
if os.path.isfile(extra_model_paths_config_path): if os.path.isfile(extra_model_paths_config_path):
load_extra_path_config(extra_model_paths_config_path) load_extra_path_config(extra_model_paths_config_path)
if '--extra-model-paths-config' in sys.argv: if args.extra_model_paths_config:
indices = [(i + 1) for i in range(len(sys.argv) - 1) if sys.argv[i] == '--extra-model-paths-config'] load_extra_path_config(args.extra_model_paths_config)
for i in indices:
load_extra_path_config(sys.argv[i])
try: if args.output_directory:
output_dir = sys.argv[sys.argv.index('--output-directory') + 1] output_dir = os.path.abspath(args.output_directory)
output_dir = os.path.abspath(output_dir)
print("setting output directory to:", output_dir) print("setting output directory to:", output_dir)
folder_paths.set_output_directory(output_dir) folder_paths.set_output_directory(output_dir)
except:
pass
port = 8188 port = args.port
try:
p_index = sys.argv.index('--port')
port = int(sys.argv[p_index + 1])
except:
pass
if '--quick-test-for-ci' in sys.argv: if args.quick_test_for_ci:
exit(0) exit(0)
call_on_start = None call_on_start = None
if "--windows-standalone-build" in sys.argv: if args.windows_standalone_build:
def startup_server(address, port): def startup_server(address, port):
import webbrowser import webbrowser
webbrowser.open("http://{}:{}".format(address, port)) webbrowser.open("http://{}:{}".format(address, port))

Loading…
Cancel
Save