main.py 7.58 KB
Newer Older
1
2
3
import comfy.options
comfy.options.enable_args_parsing()

4
5
6
import os
import importlib.util
import folder_paths
7
import time
8
9
10

def execute_prestartup_script():
    def execute_script(script_path):
11
12
13
14
15
16
17
18
19
        module_name = os.path.splitext(script_path)[0]
        try:
            spec = importlib.util.spec_from_file_location(module_name, script_path)
            module = importlib.util.module_from_spec(spec)
            spec.loader.exec_module(module)
            return True
        except Exception as e:
            print(f"Failed to execute startup-script: {script_path} / {e}")
        return False
20
21
22
23

    node_paths = folder_paths.get_folder_paths("custom_nodes")
    for custom_node_path in node_paths:
        possible_modules = os.listdir(custom_node_path)
24
        node_prestartup_times = []
25
26
27
28
29
30
31

        for possible_module in possible_modules:
            module_path = os.path.join(custom_node_path, possible_module)
            if os.path.isfile(module_path) or module_path.endswith(".disabled") or module_path == "__pycache__":
                continue

            script_path = os.path.join(module_path, "prestartup_script.py")
32
33
34
35
36
37
38
39
40
41
42
43
44
            if os.path.exists(script_path):
                time_before = time.perf_counter()
                success = execute_script(script_path)
                node_prestartup_times.append((time.perf_counter() - time_before, module_path, success))
    if len(node_prestartup_times) > 0:
        print("\nPrestartup times for custom nodes:")
        for n in sorted(node_prestartup_times):
            if n[2]:
                import_message = ""
            else:
                import_message = " (PRESTARTUP FAILED)"
            print("{:6.1f} seconds{}:".format(n[0], import_message), n[1])
        print()
45
46
47
48
49

execute_prestartup_script()


# Main code
EllangoK's avatar
EllangoK committed
50
import asyncio
51
import itertools
52
import shutil
comfyanonymous's avatar
comfyanonymous committed
53
import threading
54
import gc
55

56
from comfy.cli_args import args
comfyanonymous's avatar
comfyanonymous committed
57

pythongosssss's avatar
pythongosssss committed
58
59
60
61
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
62
if __name__ == "__main__":
EllangoK's avatar
EllangoK committed
63
64
65
66
    if args.cuda_device is not None:
        os.environ['CUDA_VISIBLE_DEVICES'] = str(args.cuda_device)
        print("Set cuda device to:", args.cuda_device)

67
    import cuda_malloc
EllangoK's avatar
EllangoK committed
68

69
import comfy.utils
EllangoK's avatar
EllangoK committed
70
import yaml
71

72
import execution
EllangoK's avatar
EllangoK committed
73
import server
space-nuko's avatar
space-nuko committed
74
from server import BinaryEventTypes
EllangoK's avatar
EllangoK committed
75
from nodes import init_custom_nodes
76
import comfy.model_management
77

78
79
80
81
82
83
84
85
86
87
88
def cuda_malloc_warning():
    device = comfy.model_management.get_torch_device()
    device_name = comfy.model_management.get_torch_device_name(device)
    cuda_malloc_warning = False
    if "cudaMallocAsync" in device_name:
        for b in cuda_malloc.blacklist:
            if b in device_name:
                cuda_malloc_warning = True
        if cuda_malloc_warning:
            print("\nWARNING: this card most likely does not support cuda-malloc, if you get \"CUDA error\" please run ComfyUI with: --disable-cuda-malloc\n")

pythongosssss's avatar
pythongosssss committed
89
def prompt_worker(q, server):
90
    e = execution.PromptExecutor(server)
91
    last_gc_collect = 0
comfyanonymous's avatar
comfyanonymous committed
92
    while True:
93
        item, item_id = q.get()
94
95
96
        execution_start_time = time.perf_counter()
        prompt_id = item[1]
        e.execute(item[2], prompt_id, item[3], item[4])
97
        q.task_done(item_id, e.outputs_ui)
98
99
        if server.client_id is not None:
            server.send_sync("executing", { "node": None, "prompt_id": prompt_id }, server.client_id)
comfyanonymous's avatar
comfyanonymous committed
100

101
102
103
104
105
106
107
108
        current_time = time.perf_counter()
        execution_time = current_time - execution_start_time
        print("Prompt executed in {:.2f} seconds".format(execution_time))
        if (current_time - last_gc_collect) > 10.0:
            gc.collect()
            comfy.model_management.soft_empty_cache()
            last_gc_collect = current_time
            print("gc collect")
reaper47's avatar
reaper47 committed
109

110
111
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
112

reaper47's avatar
reaper47 committed
113

pythongosssss's avatar
pythongosssss committed
114
def hijack_progress(server):
115
    def hook(value, total, preview_image):
116
        comfy.model_management.throw_exception_if_processing_interrupted()
reaper47's avatar
reaper47 committed
117
        server.send_sync("progress", {"value": value, "max": total}, server.client_id)
118
119
        if preview_image is not None:
            server.send_sync(BinaryEventTypes.UNENCODED_PREVIEW_IMAGE, preview_image, server.client_id)
120
    comfy.utils.set_progress_bar_global_hook(hook)
comfyanonymous's avatar
comfyanonymous committed
121

reaper47's avatar
reaper47 committed
122

123
def cleanup_temp():
124
    temp_dir = folder_paths.get_temp_directory()
125
    if os.path.exists(temp_dir):
126
        shutil.rmtree(temp_dir, ignore_errors=True)
127

reaper47's avatar
reaper47 committed
128

129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
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)

reaper47's avatar
reaper47 committed
149

comfyanonymous's avatar
comfyanonymous committed
150
if __name__ == "__main__":
151
152
153
154
    if args.temp_directory:
        temp_dir = os.path.join(os.path.abspath(args.temp_directory), "temp")
        print(f"Setting temp directory to: {temp_dir}")
        folder_paths.set_temp_directory(temp_dir)
155
156
    cleanup_temp()

157
158
    loop = asyncio.new_event_loop()
    asyncio.set_event_loop(loop)
pythongosssss's avatar
pythongosssss committed
159
    server = server.PromptServer(loop)
160
    q = execution.PromptQueue(server)
161

162
163
164
165
166
167
168
169
    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)

170
    init_custom_nodes()
171
172
173

    cuda_malloc_warning()

174
    server.add_routes()
pythongosssss's avatar
pythongosssss committed
175
176
    hijack_progress(server)

reaper47's avatar
reaper47 committed
177
    threading.Thread(target=prompt_worker, daemon=True, args=(q, server,)).start()
178

EllangoK's avatar
EllangoK committed
179
180
    if args.output_directory:
        output_dir = os.path.abspath(args.output_directory)
181
        print(f"Setting output directory to: {output_dir}")
182
183
        folder_paths.set_output_directory(output_dir)

184
185
186
187
188
    #These are the default folders that checkpoints, clip and vae models will be saved to when using CheckpointSave, etc.. nodes
    folder_paths.add_model_folder_path("checkpoints", os.path.join(folder_paths.get_output_directory(), "checkpoints"))
    folder_paths.add_model_folder_path("clip", os.path.join(folder_paths.get_output_directory(), "clip"))
    folder_paths.add_model_folder_path("vae", os.path.join(folder_paths.get_output_directory(), "vae"))

Jairo Correa's avatar
Jairo Correa committed
189
190
191
192
193
    if args.input_directory:
        input_dir = os.path.abspath(args.input_directory)
        print(f"Setting input directory to: {input_dir}")
        folder_paths.set_input_directory(input_dir)

EllangoK's avatar
EllangoK committed
194
    if args.quick_test_for_ci:
195
196
        exit(0)

197
    call_on_start = None
EllangoK's avatar
EllangoK committed
198
    if args.auto_launch:
199
200
        def startup_server(address, port):
            import webbrowser
201
202
            if os.name == 'nt' and address == '0.0.0.0':
                address = '127.0.0.1'
reaper47's avatar
reaper47 committed
203
            webbrowser.open(f"http://{address}:{port}")
204
205
        call_on_start = startup_server

reaper47's avatar
reaper47 committed
206
    try:
EllangoK's avatar
EllangoK committed
207
        loop.run_until_complete(run(server, address=args.listen, port=args.port, verbose=not args.dont_print_server, call_on_start=call_on_start))
reaper47's avatar
reaper47 committed
208
209
    except KeyboardInterrupt:
        print("\nStopped server")
comfyanonymous's avatar
comfyanonymous committed
210

211
    cleanup_temp()