this repo has no description
1opam-version: "2.0"
2build: [
3 ["dune" "subst"] {dev}
4 ["dune" "build" "-p" name "-j" jobs]
5 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
6 ["dune" "build" "-p" name "@doc"] {with-doc}
7]
8maintainer: ["Roberto Di Cosmo <roberto@dicosmo.org>"]
9authors: ["Roberto Di Cosmo <roberto@dicosmo.org>"]
10bug-reports: "https://github.com/rdicosmo/parmap/issues"
11homepage: "https://github.com/rdicosmo/parmap"
12license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
13dev-repo: "git+https://github.com/rdicosmo/parmap.git"
14synopsis: "Minimalistic library allowing to exploit multicore architecture"
15description: """
16Parmap is a minimalistic library allowing to exploit multicore
17architecture for OCaml programs with minimal modifications: if you
18want to use your many cores to accelerate an operation which happens
19to be a map, fold or map/fold (map-reduce), just use Parmap’s parmap,
20parfold and parmapfold primitives in place of the standard List.map
21and friends, and specify the number of subprocesses to use by the
22optional parameter ~ncores."""
23depends: [
24 "dune" {>= "1.10"}
25 "dune-configurator"
26 "base-bigarray"
27 "base-unix"
28 "ocaml" {>= "4.03.0" & < "5.0.0"}
29]
30x-commit-hash: "36089bc12f3560faffeeb66d3f38594978561c70"
31url {
32 src:
33 "https://github.com/rdicosmo/parmap/releases/download/1.2.1/parmap-1.2.1.tbz"
34 checksum: [
35 "sha256=701a8440d756e723634636e9bd5801dd35afe0e5e490ef851fd8d141525870dd"
36 "sha512=91bfce97898e01afa24363f1e83726f5bbae3d18b3b1b80178592092c1bc8881438a3c528581d40c971df7e233de29b707c083a809a2b4c7c131159be35146da"
37 ]
38}