"test/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "4089bcb65c73a5e7974e305cd5942d9b3795fca2"
Commit 6a32c06f authored by comfyanonymous's avatar comfyanonymous
Browse files

Move cleanup_models to improve performance.

parent a28a9dc8
......@@ -368,7 +368,6 @@ class PromptExecutor:
d = self.outputs_ui.pop(x)
del d
comfy.model_management.cleanup_models()
self.add_message("execution_cached",
{ "nodes": list(current_outputs) , "prompt_id": prompt_id},
broadcast=False)
......
......@@ -139,6 +139,7 @@ def prompt_worker(q, server):
if need_gc:
current_time = time.perf_counter()
if (current_time - last_gc_collect) > gc_collect_interval:
comfy.model_management.cleanup_models()
gc.collect()
comfy.model_management.soft_empty_cache()
last_gc_collect = current_time
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment