File size: 2,604 Bytes
0070fce
 
 
 
 
 
 
 
 
a2e084c
 
0070fce
 
 
 
a2e084c
 
0070fce
 
 
 
a2e084c
0070fce
 
 
 
 
 
 
 
 
 
a2e084c
 
 
 
 
 
 
 
 
 
0070fce
 
 
 
 
 
 
 
 
 
 
 
a2e084c
 
0070fce
 
 
 
a2e084c
0070fce
 
 
 
 
 
 
 
a2e084c
 
 
 
 
 
 
 
0070fce
 
a2e084c
0070fce
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
"""
This file is the main thread that handles all gradio calls for major t2i or i2i processing.
Other gradio calls (like those from extensions) are not influenced.
By using one single thread to process all major calls, model moving is significantly faster.
"""

import threading
import time
import traceback
from typing import Callable

from modules.shared import cmd_opts

lock = threading.Lock()
last_id = 0
waiting_list: list["Task"] = []
finished_list: list["Task"] = []
fps = 1.0 / max(1, cmd_opts.fps)


class Task:
    def __init__(self, task_id: int, func: Callable, args: list, kwargs: dict):
        self.task_id = task_id
        self.func = func
        self.args = args
        self.kwargs = kwargs
        self.result = None

    def work(self):
        self.result = self.func(*self.args, **self.kwargs)


class DiscardTask(Task):
    def work(self):
        try:
            self.func(*self.args, **self.kwargs)
        finally:
            del self.func
            del self.args
            del self.kwargs


def loop():
    global lock, last_id, waiting_list, finished_list
    while True:
        time.sleep(fps)
        if len(waiting_list) > 0:
            with lock:
                task = waiting_list.pop(0)
            try:
                task.work()
            except Exception as e:
                traceback.print_exc()
                print(e)
            if isinstance(task, DiscardTask):
                continue
            with lock:
                finished_list.append(task)


def _async_run(func, *args, **kwargs):
    global lock, last_id, waiting_list, finished_list
    with lock:
        last_id += 1
        new_task = Task(task_id=last_id, func=func, args=args, kwargs=kwargs)
        waiting_list.append(new_task)
    return new_task.task_id


def async_run(func, *args, **kwargs):
    global lock, last_id, waiting_list, finished_list
    with lock:
        last_id += 1
        new_task = DiscardTask(task_id=last_id, func=func, args=args, kwargs=kwargs)
        waiting_list.append(new_task)


def run_and_wait_result(func, *args, **kwargs):
    global lock, last_id, waiting_list, finished_list
    current_id = _async_run(func, *args, **kwargs)
    while True:
        time.sleep(fps)
        finished_task = None
        for t in finished_list.copy():  # thread safe shallow copy without needing a lock
            if t.task_id == current_id:
                finished_task = t
                break
        if finished_task is not None:
            with lock:
                finished_list.remove(finished_task)
            return finished_task.result