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
|
opam-version: "2.0"
authors: "Roberto Di Cosmo <roberto@dicosmo.org>"
maintainer: "unixjunkie@sdf.org"
homepage: "https://github.com/UnixJunkie/cpu"
dev-repo: "git+https://github.com/UnixJunkie/cpu.git"
bug-reports: "https://github.com/UnixJunkie/cpu/issues"
build: [
["autoconf"]
["autoheader"]
["./configure"]
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"conf-autoconf" {build}
"ocaml"
"dune" {>= "1.11.0"}
]
synopsis: "Pin current process to given core number"
description: "
The module installed is called Cpu; in order to not conflic
with the Setcore module that is installed by parmap.
This library can also get the number of CPU cores online.
"
#url {
# src: "https://github.com/UnixJunkie/cpu/archive/vXXX.tar.gz"
# checksum: "md5=YYY"
#}
|