| author | wenzelm | 
| Mon, 31 May 2010 21:06:57 +0200 | |
| changeset 37216 | 3165bc303f66 | 
| parent 37182 | 71c8565dae38 | 
| child 37682 | ad5489a6be48 | 
| permissions | -rw-r--r-- | 
| 28156 | 1  | 
(* Title: Pure/Concurrent/future.ML  | 
2  | 
Author: Makarius  | 
|
3  | 
||
| 32246 | 4  | 
Future values, see also  | 
5  | 
http://www4.in.tum.de/~wenzelm/papers/parallel-isabelle.pdf  | 
|
| 28201 | 6  | 
|
7  | 
Notes:  | 
|
8  | 
||
9  | 
* Futures are similar to delayed evaluation, i.e. delay/force is  | 
|
10  | 
generalized to fork/join (and variants). The idea is to model  | 
|
11  | 
parallel value-oriented computations, but *not* communicating  | 
|
12  | 
processes.  | 
|
13  | 
||
14  | 
* Futures are grouped; failure of one group member causes the whole  | 
|
| 32220 | 15  | 
group to be interrupted eventually. Groups are block-structured.  | 
| 28201 | 16  | 
|
17  | 
* Forked futures are evaluated spontaneously by a farm of worker  | 
|
18  | 
threads in the background; join resynchronizes the computation and  | 
|
19  | 
delivers results (values or exceptions).  | 
|
20  | 
||
21  | 
* The pool of worker threads is limited, usually in correlation with  | 
|
22  | 
the number of physical cores on the machine. Note that allocation  | 
|
23  | 
of runtime resources is distorted either if workers yield CPU time  | 
|
24  | 
(e.g. via system sleep or wait operations), or if non-worker  | 
|
25  | 
threads contend for significant runtime resources independently.  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
26  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
27  | 
* Promised futures are fulfilled by external means. There is no  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
28  | 
associated evaluation task, but other futures can depend on them  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
29  | 
as usual.  | 
| 28156 | 30  | 
*)  | 
31  | 
||
32  | 
signature FUTURE =  | 
|
33  | 
sig  | 
|
| 29119 | 34  | 
type task = Task_Queue.task  | 
35  | 
type group = Task_Queue.group  | 
|
| 32058 | 36  | 
val is_worker: unit -> bool  | 
| 
32814
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
37  | 
val worker_task: unit -> Task_Queue.task option  | 
| 32102 | 38  | 
val worker_group: unit -> Task_Queue.group option  | 
| 28972 | 39  | 
type 'a future  | 
40  | 
val task_of: 'a future -> task  | 
|
41  | 
val group_of: 'a future -> group  | 
|
42  | 
val peek: 'a future -> 'a Exn.result option  | 
|
43  | 
val is_finished: 'a future -> bool  | 
|
| 
28979
 
3ce619d8d432
fork/map: no inheritance of group (structure is nested, not parallel);
 
wenzelm 
parents: 
28972 
diff
changeset
 | 
44  | 
val fork_group: group -> (unit -> 'a) -> 'a future  | 
| 32724 | 45  | 
val fork_deps_pri: 'b future list -> int -> (unit -> 'a) -> 'a future  | 
| 
28979
 
3ce619d8d432
fork/map: no inheritance of group (structure is nested, not parallel);
 
wenzelm 
parents: 
28972 
diff
changeset
 | 
46  | 
val fork_deps: 'b future list -> (unit -> 'a) -> 'a future  | 
| 29119 | 47  | 
val fork_pri: int -> (unit -> 'a) -> 'a future  | 
| 32724 | 48  | 
val fork: (unit -> 'a) -> 'a future  | 
| 28972 | 49  | 
val join_results: 'a future list -> 'a Exn.result list  | 
50  | 
val join_result: 'a future -> 'a Exn.result  | 
|
51  | 
val join: 'a future -> 'a  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
52  | 
val value: 'a -> 'a future  | 
| 28972 | 53  | 
  val map: ('a -> 'b) -> 'a future -> 'b future
 | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
54  | 
val promise_group: group -> 'a future  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
55  | 
val promise: unit -> 'a future  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
56  | 
val fulfill_result: 'a future -> 'a Exn.result -> unit  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
57  | 
val fulfill: 'a future -> 'a -> unit  | 
| 
30618
 
046f4f986fb5
restricted interrupts for tasks running as future worker thread -- attempt to prevent interrupt race conditions;
 
wenzelm 
parents: 
30612 
diff
changeset
 | 
58  | 
  val interruptible_task: ('a -> 'b) -> 'a -> 'b
 | 
| 29431 | 59  | 
val cancel_group: group -> unit  | 
| 28972 | 60  | 
val cancel: 'a future -> unit  | 
| 28203 | 61  | 
val shutdown: unit -> unit  | 
| 28156 | 62  | 
end;  | 
63  | 
||
64  | 
structure Future: FUTURE =  | 
|
65  | 
struct  | 
|
66  | 
||
| 
28177
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
67  | 
(** future values **)  | 
| 
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
68  | 
|
| 28167 | 69  | 
(* identifiers *)  | 
70  | 
||
| 29119 | 71  | 
type task = Task_Queue.task;  | 
72  | 
type group = Task_Queue.group;  | 
|
| 28167 | 73  | 
|
| 32058 | 74  | 
local  | 
| 33408 | 75  | 
val tag = Universal.tag () : (task * group) option Universal.tag;  | 
| 32058 | 76  | 
in  | 
| 
28177
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
77  | 
fun thread_data () = the_default NONE (Thread.getLocal tag);  | 
| 32058 | 78  | 
fun setmp_thread_data data f x =  | 
79  | 
Library.setmp_thread_data tag (thread_data ()) (SOME data) f x;  | 
|
| 28167 | 80  | 
end;  | 
81  | 
||
| 32058 | 82  | 
val is_worker = is_some o thread_data;  | 
| 33408 | 83  | 
val worker_task = Option.map #1 o thread_data;  | 
84  | 
val worker_group = Option.map #2 o thread_data;  | 
|
| 32058 | 85  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
86  | 
fun new_group () = Task_Queue.new_group (worker_group ());  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
87  | 
|
| 28167 | 88  | 
|
89  | 
(* datatype future *)  | 
|
90  | 
||
| 35016 | 91  | 
type 'a result = 'a Exn.result Single_Assignment.var;  | 
92  | 
||
| 28972 | 93  | 
datatype 'a future = Future of  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
94  | 
 {promised: bool,
 | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
95  | 
task: task,  | 
| 
28177
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
96  | 
group: group,  | 
| 35016 | 97  | 
result: 'a result};  | 
| 28167 | 98  | 
|
99  | 
fun task_of (Future {task, ...}) = task;
 | 
|
100  | 
fun group_of (Future {group, ...}) = group;
 | 
|
| 32253 | 101  | 
fun result_of (Future {result, ...}) = result;
 | 
| 28167 | 102  | 
|
| 35016 | 103  | 
fun peek x = Single_Assignment.peek (result_of x);  | 
| 28558 | 104  | 
fun is_finished x = is_some (peek x);  | 
| 28320 | 105  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
106  | 
fun assign_result group result res =  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
107  | 
let  | 
| 35016 | 108  | 
val _ = Single_Assignment.assign result res;  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
109  | 
val ok =  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
110  | 
(case res of  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
111  | 
Exn.Exn exn => (Task_Queue.cancel_group group exn; false)  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
112  | 
| Exn.Result _ => true);  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
113  | 
in ok end;  | 
| 28997 | 114  | 
|
| 28167 | 115  | 
|
| 
28177
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
116  | 
|
| 
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
117  | 
(** scheduling **)  | 
| 
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
118  | 
|
| 
 
8c0335bc9336
inherit group from running thread, or create a new one -- make it harder to re-use canceled groups;
 
wenzelm 
parents: 
28170 
diff
changeset
 | 
119  | 
(* synchronization *)  | 
| 28156 | 120  | 
|
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
121  | 
val scheduler_event = ConditionVar.conditionVar ();  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
122  | 
val work_available = ConditionVar.conditionVar ();  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
123  | 
val work_finished = ConditionVar.conditionVar ();  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
124  | 
|
| 28156 | 125  | 
local  | 
126  | 
val lock = Mutex.mutex ();  | 
|
127  | 
in  | 
|
128  | 
||
| 
37216
 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 
wenzelm 
parents: 
37182 
diff
changeset
 | 
129  | 
fun SYNCHRONIZED name = Simple_Thread.synchronized name lock;  | 
| 28156 | 130  | 
|
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
131  | 
fun wait cond = (*requires SYNCHRONIZED*)  | 
| 
32295
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
132  | 
Multithreading.sync_wait NONE NONE cond lock;  | 
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
133  | 
|
| 
32295
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
134  | 
fun wait_timeout timeout cond = (*requires SYNCHRONIZED*)  | 
| 
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
135  | 
Multithreading.sync_wait NONE (SOME (Time.+ (Time.now (), timeout))) cond lock;  | 
| 
28166
 
43087721a66e
moved task, thread_data, group, queue to task_queue.ML;
 
wenzelm 
parents: 
28163 
diff
changeset
 | 
136  | 
|
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
137  | 
fun signal cond = (*requires SYNCHRONIZED*)  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
138  | 
ConditionVar.signal cond;  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
139  | 
|
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
140  | 
fun broadcast cond = (*requires SYNCHRONIZED*)  | 
| 
28166
 
43087721a66e
moved task, thread_data, group, queue to task_queue.ML;
 
wenzelm 
parents: 
28163 
diff
changeset
 | 
141  | 
ConditionVar.broadcast cond;  | 
| 28156 | 142  | 
|
| 
32248
 
0241916a5f06
more precise treatment of scheduler_event: continous pulse (50ms) instead of flooding, which was burning many CPU cycles in spare threads;
 
wenzelm 
parents: 
32247 
diff
changeset
 | 
143  | 
fun broadcast_work () = (*requires SYNCHRONIZED*)  | 
| 
 
0241916a5f06
more precise treatment of scheduler_event: continous pulse (50ms) instead of flooding, which was burning many CPU cycles in spare threads;
 
wenzelm 
parents: 
32247 
diff
changeset
 | 
144  | 
(ConditionVar.broadcast work_available;  | 
| 
32225
 
d5d6f47fb018
cancel: improved reactivity due to more careful broadcasting;
 
wenzelm 
parents: 
32224 
diff
changeset
 | 
145  | 
ConditionVar.broadcast work_finished);  | 
| 
 
d5d6f47fb018
cancel: improved reactivity due to more careful broadcasting;
 
wenzelm 
parents: 
32224 
diff
changeset
 | 
146  | 
|
| 28156 | 147  | 
end;  | 
148  | 
||
149  | 
||
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
150  | 
(* global state *)  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
151  | 
|
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
152  | 
val queue = Unsynchronized.ref Task_Queue.empty;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
153  | 
val next = Unsynchronized.ref 0;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
154  | 
val scheduler = Unsynchronized.ref (NONE: Thread.thread option);  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
155  | 
val canceled = Unsynchronized.ref ([]: Task_Queue.group list);  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
156  | 
val do_shutdown = Unsynchronized.ref false;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
157  | 
val max_workers = Unsynchronized.ref 0;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
158  | 
val max_active = Unsynchronized.ref 0;  | 
| 
33411
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
159  | 
val worker_trend = Unsynchronized.ref 0;  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
160  | 
|
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
161  | 
datatype worker_state = Working | Waiting | Sleeping;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
162  | 
val workers = Unsynchronized.ref ([]: (Thread.thread * worker_state Unsynchronized.ref) list);  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
163  | 
|
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
164  | 
fun count_workers state = (*requires SYNCHRONIZED*)  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
165  | 
fold (fn (_, state_ref) => fn i => if ! state_ref = state then i + 1 else i) (! workers) 0;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
166  | 
|
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
167  | 
|
| 32099 | 168  | 
(* execute future jobs *)  | 
169  | 
||
170  | 
fun future_job group (e: unit -> 'a) =  | 
|
171  | 
let  | 
|
| 35016 | 172  | 
val result = Single_Assignment.var "future" : 'a result;  | 
| 
37046
 
78d88b670a53
future_job: propagate current Position.thread_data to the forked job -- this is important to provide a default position, e.g. for parallelizied Goal.prove within a package (proper command transactions are wrapped via Toplevel.setmp_thread_position);
 
wenzelm 
parents: 
35016 
diff
changeset
 | 
173  | 
val pos = Position.thread_data ();  | 
| 
32107
 
47d0da617fcc
future_job: tight scope for interrupts, to prevent shooting ourselves in the foot via cancel_group;
 
wenzelm 
parents: 
32102 
diff
changeset
 | 
174  | 
fun job ok =  | 
| 
 
47d0da617fcc
future_job: tight scope for interrupts, to prevent shooting ourselves in the foot via cancel_group;
 
wenzelm 
parents: 
32102 
diff
changeset
 | 
175  | 
let  | 
| 
 
47d0da617fcc
future_job: tight scope for interrupts, to prevent shooting ourselves in the foot via cancel_group;
 
wenzelm 
parents: 
32102 
diff
changeset
 | 
176  | 
val res =  | 
| 
 
47d0da617fcc
future_job: tight scope for interrupts, to prevent shooting ourselves in the foot via cancel_group;
 
wenzelm 
parents: 
32102 
diff
changeset
 | 
177  | 
if ok then  | 
| 
32230
 
9f6461b1c9cc
interruptible: Thread.testInterrupt before changing thread attributes;
 
wenzelm 
parents: 
32229 
diff
changeset
 | 
178  | 
Exn.capture (fn () =>  | 
| 
37046
 
78d88b670a53
future_job: propagate current Position.thread_data to the forked job -- this is important to provide a default position, e.g. for parallelizied Goal.prove within a package (proper command transactions are wrapped via Toplevel.setmp_thread_position);
 
wenzelm 
parents: 
35016 
diff
changeset
 | 
179  | 
Multithreading.with_attributes Multithreading.private_interrupts  | 
| 
 
78d88b670a53
future_job: propagate current Position.thread_data to the forked job -- this is important to provide a default position, e.g. for parallelizied Goal.prove within a package (proper command transactions are wrapped via Toplevel.setmp_thread_position);
 
wenzelm 
parents: 
35016 
diff
changeset
 | 
180  | 
(fn _ => Position.setmp_thread_data pos e ())) ()  | 
| 
32107
 
47d0da617fcc
future_job: tight scope for interrupts, to prevent shooting ourselves in the foot via cancel_group;
 
wenzelm 
parents: 
32102 
diff
changeset
 | 
181  | 
else Exn.Exn Exn.Interrupt;  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
182  | 
in assign_result group result res end;  | 
| 32099 | 183  | 
in (result, job) end;  | 
| 28156 | 184  | 
|
| 
34279
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
185  | 
fun cancel_now group = (*requires SYNCHRONIZED*)  | 
| 
34280
 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 
wenzelm 
parents: 
34279 
diff
changeset
 | 
186  | 
Task_Queue.cancel (! queue) group;  | 
| 
34279
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
187  | 
|
| 
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
188  | 
fun cancel_later group = (*requires SYNCHRONIZED*)  | 
| 32738 | 189  | 
(Unsynchronized.change canceled (insert Task_Queue.eq_group group);  | 
190  | 
broadcast scheduler_event);  | 
|
| 
29341
 
6bb007a0f9f2
more reactive scheduler: reduced loop timeout, propagate broadcast interrupt via TaskQueue.cancel_all;
 
wenzelm 
parents: 
29119 
diff
changeset
 | 
191  | 
|
| 33408 | 192  | 
fun execute (task, group, jobs) =  | 
| 28167 | 193  | 
let  | 
| 32102 | 194  | 
val valid = not (Task_Queue.is_canceled group);  | 
| 33408 | 195  | 
val ok = setmp_thread_data (task, group) (fn () =>  | 
| 
29384
 
a3c7e9ae9b71
more robust propagation of errors through bulk jobs;
 
wenzelm 
parents: 
29366 
diff
changeset
 | 
196  | 
fold (fn job => fn ok => job valid andalso ok) jobs true) ();  | 
| 32246 | 197  | 
val _ = SYNCHRONIZED "finish" (fn () =>  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
198  | 
let  | 
| 32738 | 199  | 
val maximal = Unsynchronized.change_result queue (Task_Queue.finish task);  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
200  | 
val _ =  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
201  | 
if ok then ()  | 
| 
34279
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
202  | 
else if cancel_now group then ()  | 
| 
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
203  | 
else cancel_later group;  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
204  | 
val _ = broadcast work_finished;  | 
| 
33413
 
cb409680dda8
avoid broadcast work_available, use daisy-chained signal instead;
 
wenzelm 
parents: 
33411 
diff
changeset
 | 
205  | 
val _ = if maximal then () else signal work_available;  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
206  | 
in () end);  | 
| 28167 | 207  | 
in () end;  | 
208  | 
||
209  | 
||
210  | 
(* worker threads *)  | 
|
211  | 
||
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
212  | 
fun worker_wait active cond = (*requires SYNCHRONIZED*)  | 
| 
33406
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
213  | 
let  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
214  | 
val state =  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
215  | 
(case AList.lookup Thread.equal (! workers) (Thread.self ()) of  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
216  | 
SOME state => state  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
217  | 
| NONE => raise Fail "Unregistered worker thread");  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
218  | 
val _ = state := (if active then Waiting else Sleeping);  | 
| 
33406
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
219  | 
val _ = wait cond;  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
220  | 
val _ = state := Working;  | 
| 
33406
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
221  | 
in () end;  | 
| 28162 | 222  | 
|
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
223  | 
fun worker_next () = (*requires SYNCHRONIZED*)  | 
| 
33406
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
224  | 
if length (! workers) > ! max_workers then  | 
| 
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
225  | 
(Unsynchronized.change workers (AList.delete Thread.equal (Thread.self ()));  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
226  | 
signal work_available;  | 
| 28167 | 227  | 
NONE)  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
228  | 
else if count_workers Working > ! max_active then  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
229  | 
(worker_wait false work_available; worker_next ())  | 
| 
28166
 
43087721a66e
moved task, thread_data, group, queue to task_queue.ML;
 
wenzelm 
parents: 
28163 
diff
changeset
 | 
230  | 
else  | 
| 32738 | 231  | 
(case Unsynchronized.change_result queue (Task_Queue.dequeue (Thread.self ())) of  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
232  | 
NONE => (worker_wait false work_available; worker_next ())  | 
| 
33413
 
cb409680dda8
avoid broadcast work_available, use daisy-chained signal instead;
 
wenzelm 
parents: 
33411 
diff
changeset
 | 
233  | 
| some => (signal work_available; some));  | 
| 28156 | 234  | 
|
| 28167 | 235  | 
fun worker_loop name =  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
236  | 
(case SYNCHRONIZED name (fn () => worker_next ()) of  | 
| 29119 | 237  | 
NONE => ()  | 
| 33408 | 238  | 
| SOME work => (execute work; worker_loop name));  | 
| 28156 | 239  | 
|
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
240  | 
fun worker_start name = (*requires SYNCHRONIZED*)  | 
| 
37216
 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 
wenzelm 
parents: 
37182 
diff
changeset
 | 
241  | 
Unsynchronized.change workers (cons (Simple_Thread.fork false (fn () => worker_loop name),  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
242  | 
Unsynchronized.ref Working));  | 
| 28156 | 243  | 
|
244  | 
||
245  | 
(* scheduler *)  | 
|
246  | 
||
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
247  | 
val status_ticks = Unsynchronized.ref 0;  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
248  | 
|
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
249  | 
val last_round = Unsynchronized.ref Time.zeroTime;  | 
| 
32248
 
0241916a5f06
more precise treatment of scheduler_event: continous pulse (50ms) instead of flooding, which was burning many CPU cycles in spare threads;
 
wenzelm 
parents: 
32247 
diff
changeset
 | 
250  | 
val next_round = Time.fromMilliseconds 50;  | 
| 32226 | 251  | 
|
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
252  | 
fun scheduler_next () = (*requires SYNCHRONIZED*)  | 
| 28156 | 253  | 
let  | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
254  | 
val now = Time.now ();  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
255  | 
val tick = Time.<= (Time.+ (! last_round, next_round), now);  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
256  | 
val _ = if tick then last_round := now else ();  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
257  | 
|
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
258  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
259  | 
(* queue and worker status *)  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
260  | 
|
| 32226 | 261  | 
val _ =  | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
262  | 
if tick then Unsynchronized.change status_ticks (fn i => (i + 1) mod 10) else ();  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
263  | 
val _ =  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
264  | 
if tick andalso ! status_ticks = 0 then  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
265  | 
Multithreading.tracing 1 (fn () =>  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
266  | 
let  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
267  | 
            val {ready, pending, running, passive} = Task_Queue.status (! queue);
 | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
268  | 
val total = length (! workers);  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
269  | 
val active = count_workers Working;  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
270  | 
val waiting = count_workers Waiting;  | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
271  | 
in  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
272  | 
"SCHEDULE " ^ Time.toString now ^ ": " ^  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
273  | 
string_of_int ready ^ " ready, " ^  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
274  | 
string_of_int pending ^ " pending, " ^  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
275  | 
string_of_int running ^ " running, " ^  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
276  | 
string_of_int passive ^ " passive; " ^  | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
277  | 
string_of_int total ^ " workers, " ^  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
278  | 
string_of_int active ^ " active, " ^  | 
| 
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
279  | 
string_of_int waiting ^ " waiting "  | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
280  | 
end)  | 
| 
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
281  | 
else ();  | 
| 32053 | 282  | 
|
| 28191 | 283  | 
val _ =  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
284  | 
if forall (Thread.isActive o #1) (! workers) then ()  | 
| 32095 | 285  | 
else  | 
| 33409 | 286  | 
let  | 
287  | 
val (alive, dead) = List.partition (Thread.isActive o #1) (! workers);  | 
|
288  | 
val _ = workers := alive;  | 
|
289  | 
in  | 
|
290  | 
Multithreading.tracing 0 (fn () =>  | 
|
291  | 
"SCHEDULE: disposed " ^ string_of_int (length dead) ^ " dead worker threads")  | 
|
292  | 
end;  | 
|
| 28191 | 293  | 
|
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
294  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
295  | 
(* worker pool adjustments *)  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
296  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
297  | 
val max_active0 = ! max_active;  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
298  | 
val max_workers0 = ! max_workers;  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
299  | 
|
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
300  | 
val m = if ! do_shutdown then 0 else Multithreading.max_threads_value ();  | 
| 
33406
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
301  | 
val _ = max_active := m;  | 
| 
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
302  | 
|
| 
33411
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
303  | 
val mm =  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
304  | 
if ! do_shutdown then 0  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
305  | 
else if m = 9999 then 1  | 
| 
33413
 
cb409680dda8
avoid broadcast work_available, use daisy-chained signal instead;
 
wenzelm 
parents: 
33411 
diff
changeset
 | 
306  | 
else Int.min (Int.max (count_workers Working + 2 * count_workers Waiting, m), 4 * m);  | 
| 
33411
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
307  | 
val _ =  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
308  | 
if tick andalso mm > ! max_workers then  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
309  | 
Unsynchronized.change worker_trend (fn w => if w < 0 then 0 else w + 1)  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
310  | 
else if tick andalso mm < ! max_workers then  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
311  | 
Unsynchronized.change worker_trend (fn w => if w > 0 then 0 else w - 1)  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
312  | 
else ();  | 
| 
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
313  | 
val _ =  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
314  | 
if mm = 0 orelse ! worker_trend > 50 orelse ! worker_trend < ~50 then  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
315  | 
max_workers := mm  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
316  | 
else if ! worker_trend > 5 andalso ! max_workers < 2 * m then  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
317  | 
max_workers := Int.min (mm, 2 * m)  | 
| 
33411
 
a07558eb5029
worker_next: treat wait for work_available as Sleeping, not Waiting;
 
wenzelm 
parents: 
33410 
diff
changeset
 | 
318  | 
else ();  | 
| 
33406
 
1ddcb8472bd2
slightly leaner and more direct control of worker activity etc.;
 
wenzelm 
parents: 
33061 
diff
changeset
 | 
319  | 
|
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
320  | 
val missing = ! max_workers - length (! workers);  | 
| 28203 | 321  | 
val _ =  | 
| 
33407
 
1427333220bc
worker_next: ensure that work_available is passed on before sleeping (was occasionally lost when worker configuration changed, causing scheduler deadlock);
 
wenzelm 
parents: 
33406 
diff
changeset
 | 
322  | 
if missing > 0 then  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
323  | 
funpow missing (fn () =>  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
324  | 
          ignore (worker_start ("worker " ^ string_of_int (Unsynchronized.inc next)))) ()
 | 
| 28203 | 325  | 
else ();  | 
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
326  | 
|
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
327  | 
val _ =  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
328  | 
if ! max_active = max_active0 andalso ! max_workers = max_workers0 then ()  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
329  | 
else signal work_available;  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
330  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
331  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
332  | 
(* canceled groups *)  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
333  | 
|
| 
32225
 
d5d6f47fb018
cancel: improved reactivity due to more careful broadcasting;
 
wenzelm 
parents: 
32224 
diff
changeset
 | 
334  | 
val _ =  | 
| 
 
d5d6f47fb018
cancel: improved reactivity due to more careful broadcasting;
 
wenzelm 
parents: 
32224 
diff
changeset
 | 
335  | 
if null (! canceled) then ()  | 
| 32293 | 336  | 
else  | 
337  | 
(Multithreading.tracing 1 (fn () =>  | 
|
338  | 
string_of_int (length (! canceled)) ^ " canceled groups");  | 
|
| 
34279
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
339  | 
Unsynchronized.change canceled (filter_out cancel_now);  | 
| 32293 | 340  | 
broadcast_work ());  | 
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
341  | 
|
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
342  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
343  | 
(* delay loop *)  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
344  | 
|
| 
32295
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
345  | 
val _ = Exn.release (wait_timeout next_round scheduler_event);  | 
| 28167 | 346  | 
|
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
347  | 
|
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
348  | 
(* shutdown *)  | 
| 
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
349  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
350  | 
val _ = if Task_Queue.all_passive (! queue) then do_shutdown := true else ();  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
351  | 
val continue = not (! do_shutdown andalso null (! workers));  | 
| 
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
352  | 
val _ = if continue then () else scheduler := NONE;  | 
| 
33415
 
352fe8e9162d
worker_next: plain signalling via work_available only, not scheduler_event;
 
wenzelm 
parents: 
33413 
diff
changeset
 | 
353  | 
|
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
354  | 
val _ = broadcast scheduler_event;  | 
| 
32295
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
355  | 
in continue end  | 
| 
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
356  | 
handle Exn.Interrupt =>  | 
| 
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
357  | 
(Multithreading.tracing 1 (fn () => "Interrupt");  | 
| 
34280
 
16bf3e9786a3
eliminated cache, which complicates the code without making a real difference (NB: deque_towards often disrupts caching, and daisy-chaining of workers already reduces queue overhead);
 
wenzelm 
parents: 
34279 
diff
changeset
 | 
358  | 
List.app cancel_later (Task_Queue.cancel_all (! queue));  | 
| 
34279
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
359  | 
broadcast_work (); true);  | 
| 
32295
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
360  | 
|
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
361  | 
fun scheduler_loop () =  | 
| 
33416
 
13d00799fe49
scheduler: clarified interrupt attributes and handling;
 
wenzelm 
parents: 
33415 
diff
changeset
 | 
362  | 
while  | 
| 
 
13d00799fe49
scheduler: clarified interrupt attributes and handling;
 
wenzelm 
parents: 
33415 
diff
changeset
 | 
363  | 
Multithreading.with_attributes  | 
| 
 
13d00799fe49
scheduler: clarified interrupt attributes and handling;
 
wenzelm 
parents: 
33415 
diff
changeset
 | 
364  | 
(Multithreading.sync_interrupts Multithreading.public_interrupts)  | 
| 
 
13d00799fe49
scheduler: clarified interrupt attributes and handling;
 
wenzelm 
parents: 
33415 
diff
changeset
 | 
365  | 
(fn _ => SYNCHRONIZED "scheduler" (fn () => scheduler_next ()))  | 
| 
 
13d00799fe49
scheduler: clarified interrupt attributes and handling;
 
wenzelm 
parents: 
33415 
diff
changeset
 | 
366  | 
do ();  | 
| 28156 | 367  | 
|
| 28203 | 368  | 
fun scheduler_active () = (*requires SYNCHRONIZED*)  | 
369  | 
(case ! scheduler of NONE => false | SOME thread => Thread.isActive thread);  | 
|
370  | 
||
| 
32228
 
7622c03141b0
scheduler: shutdown spontaneously (after some delay) if queue is empty;
 
wenzelm 
parents: 
32227 
diff
changeset
 | 
371  | 
fun scheduler_check () = (*requires SYNCHRONIZED*)  | 
| 
 
7622c03141b0
scheduler: shutdown spontaneously (after some delay) if queue is empty;
 
wenzelm 
parents: 
32227 
diff
changeset
 | 
372  | 
(do_shutdown := false;  | 
| 
32248
 
0241916a5f06
more precise treatment of scheduler_event: continous pulse (50ms) instead of flooding, which was burning many CPU cycles in spare threads;
 
wenzelm 
parents: 
32247 
diff
changeset
 | 
373  | 
if scheduler_active () then ()  | 
| 
37216
 
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
 
wenzelm 
parents: 
37182 
diff
changeset
 | 
374  | 
else scheduler := SOME (Simple_Thread.fork false scheduler_loop));  | 
| 28156 | 375  | 
|
376  | 
||
| 29366 | 377  | 
|
378  | 
(** futures **)  | 
|
| 28156 | 379  | 
|
| 29366 | 380  | 
(* fork *)  | 
381  | 
||
382  | 
fun fork_future opt_group deps pri e =  | 
|
383  | 
let  | 
|
| 32102 | 384  | 
val group =  | 
385  | 
(case opt_group of  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
386  | 
NONE => new_group ()  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
387  | 
| SOME group => group);  | 
| 29366 | 388  | 
val (result, job) = future_job group e;  | 
| 32246 | 389  | 
val task = SYNCHRONIZED "enqueue" (fn () =>  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
390  | 
let  | 
| 32738 | 391  | 
val (task, minimal) =  | 
392  | 
Unsynchronized.change_result queue (Task_Queue.enqueue group deps pri job);  | 
|
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
393  | 
val _ = if minimal then signal work_available else ();  | 
| 
32228
 
7622c03141b0
scheduler: shutdown spontaneously (after some delay) if queue is empty;
 
wenzelm 
parents: 
32227 
diff
changeset
 | 
394  | 
val _ = scheduler_check ();  | 
| 
32219
 
9a2566d1fdbd
more specific conditions: scheduler_event, work_available, work_finished -- considereably reduces overhead with many threads;
 
wenzelm 
parents: 
32186 
diff
changeset
 | 
395  | 
in task end);  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
396  | 
  in Future {promised = false, task = task, group = group, result = result} end;
 | 
| 28162 | 397  | 
|
| 29366 | 398  | 
fun fork_group group e = fork_future (SOME group) [] 0 e;  | 
| 32724 | 399  | 
fun fork_deps_pri deps pri e = fork_future NONE (map task_of deps) pri e;  | 
400  | 
fun fork_deps deps e = fork_deps_pri deps 0 e;  | 
|
401  | 
fun fork_pri pri e = fork_deps_pri [] pri e;  | 
|
402  | 
fun fork e = fork_deps [] e;  | 
|
| 28186 | 403  | 
|
404  | 
||
| 29366 | 405  | 
(* join *)  | 
406  | 
||
| 
29551
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
407  | 
local  | 
| 
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
408  | 
|
| 32099 | 409  | 
fun get_result x =  | 
410  | 
(case peek x of  | 
|
| 32102 | 411  | 
NONE => Exn.Exn (SYS_ERROR "unfinished future")  | 
| 
37182
 
71c8565dae38
future result: retain plain Interrupt for vacuous group exceptions;
 
wenzelm 
parents: 
37046 
diff
changeset
 | 
412  | 
| SOME (exn as Exn.Exn Exn.Interrupt) =>  | 
| 
 
71c8565dae38
future result: retain plain Interrupt for vacuous group exceptions;
 
wenzelm 
parents: 
37046 
diff
changeset
 | 
413  | 
(case Exn.flatten_list (Task_Queue.group_status (group_of x)) of  | 
| 
 
71c8565dae38
future result: retain plain Interrupt for vacuous group exceptions;
 
wenzelm 
parents: 
37046 
diff
changeset
 | 
414  | 
[] => exn  | 
| 
 
71c8565dae38
future result: retain plain Interrupt for vacuous group exceptions;
 
wenzelm 
parents: 
37046 
diff
changeset
 | 
415  | 
| exns => Exn.Exn (Exn.EXCEPTIONS exns))  | 
| 32102 | 416  | 
| SOME res => res);  | 
| 28186 | 417  | 
|
| 32095 | 418  | 
fun join_next deps = (*requires SYNCHRONIZED*)  | 
| 32224 | 419  | 
if null deps then NONE  | 
420  | 
else  | 
|
| 32738 | 421  | 
(case Unsynchronized.change_result queue (Task_Queue.dequeue_towards (Thread.self ()) deps) of  | 
| 32224 | 422  | 
(NONE, []) => NONE  | 
| 
33410
 
e351f4c1f18c
worker activity: distinguish between waiting (formerly active) and sleeping;
 
wenzelm 
parents: 
33409 
diff
changeset
 | 
423  | 
| (NONE, deps') => (worker_wait true work_finished; join_next deps')  | 
| 32224 | 424  | 
| (SOME work, deps') => SOME (work, deps'));  | 
| 32095 | 425  | 
|
| 
32814
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
426  | 
fun execute_work NONE = ()  | 
| 33408 | 427  | 
| execute_work (SOME (work, deps')) = (execute work; join_work deps')  | 
| 
32814
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
428  | 
and join_work deps =  | 
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
429  | 
execute_work (SYNCHRONIZED "join" (fn () => join_next deps));  | 
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
430  | 
|
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
431  | 
fun join_depend task deps =  | 
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
432  | 
execute_work (SYNCHRONIZED "join" (fn () =>  | 
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
433  | 
(Unsynchronized.change queue (Task_Queue.depend task deps); join_next deps)));  | 
| 
29551
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
434  | 
|
| 
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
435  | 
in  | 
| 
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
436  | 
|
| 29366 | 437  | 
fun join_results xs =  | 
438  | 
if forall is_finished xs then map get_result xs  | 
|
| 32246 | 439  | 
else if Multithreading.self_critical () then  | 
440  | 
error "Cannot join future values within critical section"  | 
|
| 
32814
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
441  | 
else  | 
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
442  | 
(case worker_task () of  | 
| 
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
443  | 
SOME task => join_depend task (map task_of xs)  | 
| 35016 | 444  | 
| NONE => List.app (ignore o Single_Assignment.await o result_of) xs;  | 
| 
32814
 
81897d30b97f
added Task_Queue.depend (again) -- light-weight version for transitive graph;
 
wenzelm 
parents: 
32738 
diff
changeset
 | 
445  | 
map get_result xs);  | 
| 28186 | 446  | 
|
| 
29551
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
447  | 
end;  | 
| 
 
95e469919c3e
join_results: when dependencies are resulved (but not finished yet),
 
wenzelm 
parents: 
29431 
diff
changeset
 | 
448  | 
|
| 
28647
 
8068cdc84e7e
join_results: allow CRITICAL join of finished futures;
 
wenzelm 
parents: 
28645 
diff
changeset
 | 
449  | 
fun join_result x = singleton join_results x;  | 
| 
 
8068cdc84e7e
join_results: allow CRITICAL join of finished futures;
 
wenzelm 
parents: 
28645 
diff
changeset
 | 
450  | 
fun join x = Exn.release (join_result x);  | 
| 28156 | 451  | 
|
| 29366 | 452  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
453  | 
(* fast-path versions -- bypassing full task management *)  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
454  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
455  | 
fun value (x: 'a) =  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
456  | 
let  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
457  | 
val group = Task_Queue.new_group NONE;  | 
| 35016 | 458  | 
val result = Single_Assignment.var "value" : 'a result;  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
459  | 
val _ = assign_result group result (Exn.Result x);  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
460  | 
  in Future {promised = false, task = Task_Queue.dummy_task, group = group, result = result} end;
 | 
| 29366 | 461  | 
|
| 
29384
 
a3c7e9ae9b71
more robust propagation of errors through bulk jobs;
 
wenzelm 
parents: 
29366 
diff
changeset
 | 
462  | 
fun map_future f x =  | 
| 29366 | 463  | 
let  | 
| 
29384
 
a3c7e9ae9b71
more robust propagation of errors through bulk jobs;
 
wenzelm 
parents: 
29366 
diff
changeset
 | 
464  | 
val task = task_of x;  | 
| 32102 | 465  | 
val group = Task_Queue.new_group (SOME (group_of x));  | 
| 
29384
 
a3c7e9ae9b71
more robust propagation of errors through bulk jobs;
 
wenzelm 
parents: 
29366 
diff
changeset
 | 
466  | 
val (result, job) = future_job group (fn () => f (join x));  | 
| 
 
a3c7e9ae9b71
more robust propagation of errors through bulk jobs;
 
wenzelm 
parents: 
29366 
diff
changeset
 | 
467  | 
|
| 32246 | 468  | 
val extended = SYNCHRONIZED "extend" (fn () =>  | 
| 29366 | 469  | 
(case Task_Queue.extend task job (! queue) of  | 
470  | 
SOME queue' => (queue := queue'; true)  | 
|
471  | 
| NONE => false));  | 
|
472  | 
in  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
473  | 
    if extended then Future {promised = false, task = task, group = group, result = result}
 | 
| 32099 | 474  | 
else fork_future (SOME group) [task] (Task_Queue.pri_of_task task) (fn () => f (join x))  | 
| 29366 | 475  | 
end;  | 
| 
28979
 
3ce619d8d432
fork/map: no inheritance of group (structure is nested, not parallel);
 
wenzelm 
parents: 
28972 
diff
changeset
 | 
476  | 
|
| 28191 | 477  | 
|
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
478  | 
(* promised futures -- fulfilled by external means *)  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
479  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
480  | 
fun promise_group group : 'a future =  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
481  | 
let  | 
| 35016 | 482  | 
val result = Single_Assignment.var "promise" : 'a result;  | 
| 
34277
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
483  | 
val task = SYNCHRONIZED "enqueue" (fn () =>  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
484  | 
Unsynchronized.change_result queue (Task_Queue.enqueue_passive group));  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
485  | 
  in Future {promised = true, task = task, group = group, result = result} end;
 | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
486  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
487  | 
fun promise () = promise_group (new_group ());  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
488  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
489  | 
fun fulfill_result (Future {promised, task, group, result}) res =
 | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
490  | 
let  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
491  | 
val _ = promised orelse raise Fail "Not a promised future";  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
492  | 
fun job ok = assign_result group result (if ok then res else Exn.Exn Exn.Interrupt);  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
493  | 
val _ = execute (task, group, [job]);  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
494  | 
in () end;  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
495  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
496  | 
fun fulfill x res = fulfill_result x (Exn.Result res);  | 
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
497  | 
|
| 
 
7325a5e3587f
added Future.promise/fulfill -- promised futures that are fulfilled by external means;
 
wenzelm 
parents: 
33416 
diff
changeset
 | 
498  | 
|
| 29431 | 499  | 
(* cancellation *)  | 
| 
28202
 
23cb9a974630
added focus, which indicates a particular collection of high-priority tasks;
 
wenzelm 
parents: 
28201 
diff
changeset
 | 
500  | 
|
| 
30618
 
046f4f986fb5
restricted interrupts for tasks running as future worker thread -- attempt to prevent interrupt race conditions;
 
wenzelm 
parents: 
30612 
diff
changeset
 | 
501  | 
fun interruptible_task f x =  | 
| 
 
046f4f986fb5
restricted interrupts for tasks running as future worker thread -- attempt to prevent interrupt race conditions;
 
wenzelm 
parents: 
30612 
diff
changeset
 | 
502  | 
if Multithreading.available then  | 
| 
 
046f4f986fb5
restricted interrupts for tasks running as future worker thread -- attempt to prevent interrupt race conditions;
 
wenzelm 
parents: 
30612 
diff
changeset
 | 
503  | 
Multithreading.with_attributes  | 
| 32058 | 504  | 
(if is_worker ()  | 
| 
32295
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
505  | 
then Multithreading.private_interrupts  | 
| 
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
506  | 
else Multithreading.public_interrupts)  | 
| 
 
400cc493d466
renamed Multithreading.regular_interrupts to Multithreading.public_interrupts;
 
wenzelm 
parents: 
32293 
diff
changeset
 | 
507  | 
(fn _ => f x)  | 
| 
30618
 
046f4f986fb5
restricted interrupts for tasks running as future worker thread -- attempt to prevent interrupt race conditions;
 
wenzelm 
parents: 
30612 
diff
changeset
 | 
508  | 
else interruptible f x;  | 
| 
 
046f4f986fb5
restricted interrupts for tasks running as future worker thread -- attempt to prevent interrupt race conditions;
 
wenzelm 
parents: 
30612 
diff
changeset
 | 
509  | 
|
| 
32228
 
7622c03141b0
scheduler: shutdown spontaneously (after some delay) if queue is empty;
 
wenzelm 
parents: 
32227 
diff
changeset
 | 
510  | 
(*cancel: present and future group members will be interrupted eventually*)  | 
| 
34281
 
eedea6f0b37e
more robust cancelation, notably of passive futures without scheduler running;
 
wenzelm 
parents: 
34280 
diff
changeset
 | 
511  | 
fun cancel_group group =  | 
| 
 
eedea6f0b37e
more robust cancelation, notably of passive futures without scheduler running;
 
wenzelm 
parents: 
34280 
diff
changeset
 | 
512  | 
SYNCHRONIZED "cancel" (fn () => if cancel_now group then () else cancel_later group);  | 
| 29431 | 513  | 
fun cancel x = cancel_group (group_of x);  | 
| 
28206
 
bcd48c6897d4
eliminated requests, use global state variables uniformly;
 
wenzelm 
parents: 
28203 
diff
changeset
 | 
514  | 
|
| 29366 | 515  | 
|
| 
32228
 
7622c03141b0
scheduler: shutdown spontaneously (after some delay) if queue is empty;
 
wenzelm 
parents: 
32227 
diff
changeset
 | 
516  | 
(* shutdown *)  | 
| 29366 | 517  | 
|
| 28203 | 518  | 
fun shutdown () =  | 
| 28276 | 519  | 
if Multithreading.available then  | 
520  | 
SYNCHRONIZED "shutdown" (fn () =>  | 
|
| 
32228
 
7622c03141b0
scheduler: shutdown spontaneously (after some delay) if queue is empty;
 
wenzelm 
parents: 
32227 
diff
changeset
 | 
521  | 
while scheduler_active () do  | 
| 
34279
 
02936e77a07c
tasks of canceled groups are considered "ready" -- enables to purge the queue from tasks depending on unfinished promises (also improves general reactivity);
 
wenzelm 
parents: 
34277 
diff
changeset
 | 
522  | 
(wait scheduler_event; broadcast_work ()))  | 
| 28276 | 523  | 
else ();  | 
| 28203 | 524  | 
|
| 29366 | 525  | 
|
526  | 
(*final declarations of this structure!*)  | 
|
527  | 
val map = map_future;  | 
|
528  | 
||
| 28156 | 529  | 
end;  | 
| 28972 | 530  | 
|
531  | 
type 'a future = 'a Future.future;  | 
|
532  |