···
2
+
maintainer: "unixjunkie@sdf.org"
3
+
authors: "Francois Berenger"
4
+
license: "LGPL-2.0-or-later"
5
+
homepage: "https://github.com/UnixJunkie/parany"
6
+
bug-reports: "https://github.com/UnixJunkie/parany/issues"
7
+
dev-repo: "git+https://github.com/UnixJunkie/parany.git"
12
+
"ocaml" {>= "4.03.0"}
15
+
["dune" "build" "-p" name "-j" jobs]
16
+
["dune" "build" "-p" name "-j" jobs "src/test.exe"] {with-test}
17
+
["./test.sh"] {with-test}
19
+
synopsis: "Parallelize any computation"
21
+
Generalized map reduce for parallel computers (not distributed computing).
22
+
Can process in parallel an infinite stream of elements.
24
+
Can process a very large file in parallel on a multicore computer;
25
+
provided there is a way to cut your file into independent blocks
26
+
(the 'demux' function).
27
+
The processing function is called 'work'.
28
+
The function gathering the results is called 'mux'.
29
+
The number of processors running your computation in parallel is called
31
+
The chunk size (number of items) processed by one call to the 'work' function
34
+
There is a minimalist Parmap module, if you want to switch
35
+
to/from Parmap easily.
37
+
Read the corresponding ocamldoc before using.
39
+
USING THIS LIBRARY IN A MISSION CRITICAL, LONG-RUNNING SOFTWARE
40
+
THAT IS NEVER SUPPOSED TO CRASH IS NOT ADVIZED.
41
+
WHILE THIS LIBRARY IS HIGH PERFORMANCE, IT IS ALSO DANGEROUS.
42
+
USE AT YOUR OWN RISKS.
45
+
src: "https://github.com/UnixJunkie/parany/archive/v12.1.2.tar.gz"
46
+
checksum: "md5=49b8960c178f1e84d7324f3ac79fddf7"