File: dune-project

package info (click to toggle)
parmap 1.2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 356 kB
  • sloc: ml: 1,329; ansic: 132; makefile: 21
file content (31 lines) | stat: -rw-r--r-- 1,078 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
(lang dune 2.7)

(name parmap)

(generate_opam_files true)

(license "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception")

(authors "Roberto Di Cosmo <[email protected]>")

(maintainers "Roberto Di Cosmo <[email protected]>")

(homepage "https://github.com/rdicosmo/parmap")

(bug_reports "https://github.com/rdicosmo/parmap/issues")

(source (github rdicosmo/parmap))

(package
 (name parmap)
 (synopsis "Minimalistic library allowing to exploit multicore architecture")
 (description
   "Parmap is a minimalistic library allowing to exploit multicore\narchitecture for OCaml programs with minimal modifications: if you\nwant to use your many cores to accelerate an operation which happens\nto be a map, fold or map/fold (map-reduce), just use Parmap\226\128\153s parmap,\nparfold and parmapfold primitives in place of the standard List.map\nand friends, and specify the number of subprocesses to use by the\noptional parameter ~ncores.")
 (depends
  dune-configurator
  base-bigarray
  base-unix
  (ocaml
  (>= 4.03.0)))
 (conflicts
  ocaml-option-no-flat-float-array))