main.py 3.98 KB
Newer Older
EllangoK's avatar
EllangoK committed
1
import asyncio
2
import itertools
comfyanonymous's avatar
comfyanonymous committed
3
import os
4
import shutil
comfyanonymous's avatar
comfyanonymous committed
5
import threading
6

7
from comfy.cli_args import args
8
import comfy.utils
comfyanonymous's avatar
comfyanonymous committed
9

pythongosssss's avatar
pythongosssss committed
10
11
12
13
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
14
if __name__ == "__main__":
EllangoK's avatar
EllangoK committed
15
    if args.dont_upcast_attention:
pythongosssss's avatar
pythongosssss committed
16
17
        print("disabling upcasting of attention")
        os.environ['ATTN_PRECISION'] = "fp16"
18

EllangoK's avatar
EllangoK committed
19
20
21
22
23
24
    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
25

26
import execution
27
import folder_paths
EllangoK's avatar
EllangoK committed
28
import server
space-nuko's avatar
space-nuko committed
29
from server import BinaryEventTypes
EllangoK's avatar
EllangoK committed
30
31
from nodes import init_custom_nodes

32

pythongosssss's avatar
pythongosssss committed
33
def prompt_worker(q, server):
34
    e = execution.PromptExecutor(server)
comfyanonymous's avatar
comfyanonymous committed
35
    while True:
36
        item, item_id = q.get()
37
        e.execute(item[2], item[1], item[3], item[4])
38
        q.task_done(item_id, e.outputs_ui)
comfyanonymous's avatar
comfyanonymous committed
39

40
41
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
42

pythongosssss's avatar
pythongosssss committed
43
def hijack_progress(server):
space-nuko's avatar
space-nuko committed
44
    def hook(value, total, preview_bytes_jpeg):
45
        server.send_sync("progress", { "value": value, "max": total}, server.client_id)
space-nuko's avatar
space-nuko committed
46
47
48
        if preview_bytes_jpeg is not None:
            server.send_sync(BinaryEventTypes.PREVIEW_IMAGE, preview_bytes_jpeg, server.client_id)
            pass
49
    comfy.utils.set_progress_bar_global_hook(hook)
comfyanonymous's avatar
comfyanonymous committed
50

51
52
53
def cleanup_temp():
    temp_dir = os.path.join(os.path.dirname(os.path.realpath(__file__)), "temp")
    if os.path.exists(temp_dir):
54
        shutil.rmtree(temp_dir, ignore_errors=True)
55

56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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
76
if __name__ == "__main__":
77
78
    cleanup_temp()

79
80
    loop = asyncio.new_event_loop()
    asyncio.set_event_loop(loop)
pythongosssss's avatar
pythongosssss committed
81
    server = server.PromptServer(loop)
82
    q = execution.PromptQueue(server)
83

84
85
86
87
88
89
90
91
    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)

    if args.extra_model_paths_config:
        for config_path in itertools.chain(*args.extra_model_paths_config):
            load_extra_path_config(config_path)

92
93
    init_custom_nodes()
    server.add_routes()
pythongosssss's avatar
pythongosssss committed
94
95
96
    hijack_progress(server)

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

EllangoK's avatar
EllangoK committed
98
99
    if args.output_directory:
        output_dir = os.path.abspath(args.output_directory)
100
        print(f"Setting output directory to: {output_dir}")
101
102
        folder_paths.set_output_directory(output_dir)

EllangoK's avatar
EllangoK committed
103
    if args.quick_test_for_ci:
104
105
        exit(0)

106
    call_on_start = None
EllangoK's avatar
EllangoK committed
107
    if args.auto_launch:
108
109
110
111
112
        def startup_server(address, port):
            import webbrowser
            webbrowser.open("http://{}:{}".format(address, port))
        call_on_start = startup_server

pythongosssss's avatar
pythongosssss committed
113
114
    if os.name == "nt":
        try:
EllangoK's avatar
EllangoK committed
115
            loop.run_until_complete(run(server, address=args.listen, port=args.port, verbose=not args.dont_print_server, call_on_start=call_on_start))
pythongosssss's avatar
pythongosssss committed
116
117
118
        except KeyboardInterrupt:
            pass
    else:
EllangoK's avatar
EllangoK committed
119
        loop.run_until_complete(run(server, address=args.listen, port=args.port, verbose=not args.dont_print_server, call_on_start=call_on_start))
comfyanonymous's avatar
comfyanonymous committed
120

121
    cleanup_temp()