main.py 6.04 KB
Newer Older
EllangoK's avatar
EllangoK committed
1
2
import argparse
import asyncio
comfyanonymous's avatar
comfyanonymous committed
3
import os
4
import shutil
EllangoK's avatar
EllangoK committed
5
import sys
comfyanonymous's avatar
comfyanonymous committed
6
7
import threading

pythongosssss's avatar
pythongosssss committed
8
9
10
11
if os.name == "nt":
    import logging
    logging.getLogger("xformers").addFilter(lambda record: 'A matching Triton is not available' not in record.getMessage())

comfyanonymous's avatar
comfyanonymous committed
12
if __name__ == "__main__":
EllangoK's avatar
EllangoK committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
    parser = argparse.ArgumentParser(description="Script 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.")
    parser.add_argument("--port", type=int, default=8188, help="Set the listen port.")
    parser.add_argument("--extra-model-paths-config", type=str, default=None, help="Load an extra_model_paths.yaml file.")
    parser.add_argument("--output-directory", type=str, default=None, help="Set the ComfyUI output directory.")
    parser.add_argument("--dont-upcast-attention", action="store_true", help="Disable upcasting of attention. Can boost speed but increase the chances of black images.")
    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.")
    parser.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.")
    parser.add_argument("--cuda-device", type=int, default=None, help="Set the id of the cuda device this instance will use.")
    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.")
    parser.add_argument("--normalvram", action="store_true", help="Used to force normal vram use if lowvram gets automatically enabled.")
    parser.add_argument("--lowvram", action="store_true", help="Split the unet in parts to use less vram.")
    parser.add_argument("--novram", action="store_true", help="When lowvram isn't enough.")
    parser.add_argument("--cpu", action="store_true", help="To use the CPU for everything (slow).")
    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.")
    parser.add_argument("--windows-standalone-build", action="store_true", help="Windows standalone build.")

    args = parser.parse_args()

    if args.dont_upcast_attention:
pythongosssss's avatar
pythongosssss committed
36
37
        print("disabling upcasting of attention")
        os.environ['ATTN_PRECISION'] = "fp16"
38

EllangoK's avatar
EllangoK committed
39
40
41
42
43
44
    if args.cuda_device is not None:
        os.environ['CUDA_VISIBLE_DEVICES'] = str(args.cuda_device)
        print("Set cuda device to:", args.cuda_device)


import yaml
45

46
import execution
47
import folder_paths
EllangoK's avatar
EllangoK committed
48
49
50
import server
from nodes import init_custom_nodes

51

pythongosssss's avatar
pythongosssss committed
52
def prompt_worker(q, server):
53
    e = execution.PromptExecutor(server)
comfyanonymous's avatar
comfyanonymous committed
54
    while True:
55
        item, item_id = q.get()
comfyanonymous's avatar
comfyanonymous committed
56
        e.execute(item[-2], item[-1])
pythongosssss's avatar
pythongosssss committed
57
        q.task_done(item_id, e.outputs)
comfyanonymous's avatar
comfyanonymous committed
58

59
60
async def run(server, address='', port=8188, verbose=True, call_on_start=None):
    await asyncio.gather(server.start(address, port, verbose, call_on_start), server.publish_loop())
comfyanonymous's avatar
comfyanonymous committed
61

pythongosssss's avatar
pythongosssss committed
62
63
64
65
66
67
68
69
70
def hijack_progress(server):
    from tqdm.auto import tqdm
    orig_func = getattr(tqdm, "update")
    def wrapped_func(*args, **kwargs):
        pbar = args[0]
        v = orig_func(*args, **kwargs)
        server.send_sync("progress", { "value": pbar.n, "max": pbar.total}, server.client_id)            
        return v
    setattr(tqdm, "update", wrapped_func)
comfyanonymous's avatar
comfyanonymous committed
71

72
73
74
def cleanup_temp():
    temp_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "temp")
    if os.path.exists(temp_dir):
75
        shutil.rmtree(temp_dir, ignore_errors=True)
76

77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
def load_extra_path_config(yaml_path):
    with open(yaml_path, 'r') as stream:
        config = yaml.safe_load(stream)
    for c in config:
        conf = config[c]
        if conf is None:
            continue
        base_path = None
        if "base_path" in conf:
            base_path = conf.pop("base_path")
        for x in conf:
            for y in conf[x].split("\n"):
                if len(y) == 0:
                    continue
                full_path = y
                if base_path is not None:
                    full_path = os.path.join(base_path, full_path)
                print("Adding extra search path", x, full_path)
                folder_paths.add_model_folder_path(x, full_path)

comfyanonymous's avatar
comfyanonymous committed
97
if __name__ == "__main__":
98
99
    cleanup_temp()

100
101
    loop = asyncio.new_event_loop()
    asyncio.set_event_loop(loop)
pythongosssss's avatar
pythongosssss committed
102
    server = server.PromptServer(loop)
103
    q = execution.PromptQueue(server)
104

105
106
    init_custom_nodes()
    server.add_routes()
pythongosssss's avatar
pythongosssss committed
107
108
109
    hijack_progress(server)

    threading.Thread(target=prompt_worker, daemon=True, args=(q,server,)).start()
110

EllangoK's avatar
EllangoK committed
111
112
113
    address = args.listen

    dont_print = args.dont_print_server
comfyanonymous's avatar
comfyanonymous committed
114

115
116
117
118
    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):
        load_extra_path_config(extra_model_paths_config_path)

EllangoK's avatar
EllangoK committed
119
120
    if args.extra_model_paths_config:
        load_extra_path_config(args.extra_model_paths_config)
121

EllangoK's avatar
EllangoK committed
122
123
    if args.output_directory:
        output_dir = os.path.abspath(args.output_directory)
124
125
126
        print("setting output directory to:", output_dir)
        folder_paths.set_output_directory(output_dir)

EllangoK's avatar
EllangoK committed
127
    port = args.port
128

EllangoK's avatar
EllangoK committed
129
    if args.quick_test_for_ci:
130
131
        exit(0)

132
    call_on_start = None
EllangoK's avatar
EllangoK committed
133
    if args.windows_standalone_build:
134
135
136
137
138
        def startup_server(address, port):
            import webbrowser
            webbrowser.open("http://{}:{}".format(address, port))
        call_on_start = startup_server

pythongosssss's avatar
pythongosssss committed
139
140
    if os.name == "nt":
        try:
141
            loop.run_until_complete(run(server, address=address, port=port, verbose=not dont_print, call_on_start=call_on_start))
pythongosssss's avatar
pythongosssss committed
142
143
144
        except KeyboardInterrupt:
            pass
    else:
145
        loop.run_until_complete(run(server, address=address, port=port, verbose=not dont_print, call_on_start=call_on_start))
comfyanonymous's avatar
comfyanonymous committed
146

147
    cleanup_temp()