author | ballarin |
Tue, 29 Sep 2009 22:15:54 +0200 | |
changeset 32804 | ca430e6aee1c |
parent 32255 | d302f1c9e356 |
child 32614 | fef7022dc5ab |
permissions | -rw-r--r-- |
28199 | 1 |
(* Title: Pure/Concurrent/par_list.ML |
2 |
Author: Makarius |
|
3 |
||
4 |
Parallel list combinators. |
|
5 |
||
6 |
Notes: |
|
7 |
||
8 |
* These combinators only make sense if the operator (function or |
|
9 |
predicate) applied to the list of operands takes considerable |
|
10 |
time. The overhead of scheduling is significantly higher than |
|
11 |
just traversing the list of operands sequentially. |
|
12 |
||
28358 | 13 |
* The order of operator application is non-deterministic. Watch out |
28199 | 14 |
for operators that have side-effects or raise exceptions! |
15 |
*) |
|
16 |
||
17 |
signature PAR_LIST = |
|
18 |
sig |
|
19 |
val map: ('a -> 'b) -> 'a list -> 'b list |
|
20 |
val get_some: ('a -> 'b option) -> 'a list -> 'b option |
|
21 |
val find_some: ('a -> bool) -> 'a list -> 'a option |
|
22 |
val exists: ('a -> bool) -> 'a list -> bool |
|
23 |
val forall: ('a -> bool) -> 'a list -> bool |
|
24 |
end; |
|
25 |
||
29368 | 26 |
structure Par_List: PAR_LIST = |
28199 | 27 |
struct |
28 |
||
29 |
fun raw_map f xs = |
|
32255
d302f1c9e356
eliminated separate Future.enabled -- let Future.join fail explicitly in critical section, instead of entering sequential mode silently;
wenzelm
parents:
32103
diff
changeset
|
30 |
let val group = Task_Queue.new_group (Future.worker_group ()) |
d302f1c9e356
eliminated separate Future.enabled -- let Future.join fail explicitly in critical section, instead of entering sequential mode silently;
wenzelm
parents:
32103
diff
changeset
|
31 |
in Future.join_results (map (fn x => Future.fork_group group (fn () => f x)) xs) end; |
28199 | 32 |
|
28443 | 33 |
fun map f xs = Exn.release_first (raw_map f xs); |
28199 | 34 |
|
35 |
fun get_some f xs = |
|
36 |
let |
|
37 |
exception FOUND of 'b option; |
|
38 |
fun found (Exn.Exn (FOUND some)) = some |
|
39 |
| found _ = NONE; |
|
40 |
val results = raw_map (fn x => (case f x of NONE => () | some => raise FOUND some)) xs; |
|
41 |
in |
|
42 |
(case get_first found results of |
|
43 |
SOME y => SOME y |
|
28443 | 44 |
| NONE => (Exn.release_first results; NONE)) |
28199 | 45 |
end; |
46 |
||
47 |
fun find_some P = get_some (fn x => if P x then SOME x else NONE); |
|
48 |
||
49 |
fun exists P = is_some o get_some (fn x => if P x then SOME () else NONE); |
|
50 |
fun forall P = not o exists (not o P); |
|
51 |
||
52 |
end; |