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