this repo has no description
1opam-version: "2.0"
2maintainer: "Liang Wang <ryanrhymes@gmail.com>"
3authors: [ "Liang Wang" ]
4license: "MIT"
5homepage: "https://github.com/owlbarn/owl"
6dev-repo: "git+https://github.com/owlbarn/owl.git"
7bug-reports: "https://github.com/owlbarn/owl/issues"
8doc: "https://owlbarn.github.io/owl/"
9synopsis: "OCaml Scientific and Engineering Computing"
10description: """
11Owl: OCaml Scientific and Engineering Computing
12
13Owl is an OCaml numerical library.
14It supports N-dimensional arrays, both dense and sparse matrix operations, linear algebra, regressions, fast Fourier transforms, and many advanced mathematical and statistical functions (such as Markov chain Monte Carlo methods).
15Recently, Owl has implemented algorithmic differentiation which essentially makes developing machine learning and neural network algorithms trivial.
16"""
17
18build: [
19 [ "dune" "subst" ] {dev}
20 [ "dune" "build" "-p" name "-j" jobs ]
21]
22
23depends: [
24 "ocaml" {>= "4.10.0"}
25 "dune" {>= "2.0.0"}
26 "owl" {= version}
27 "plplot"
28]
29x-commit-hash: "f164864baf68f94a19a09b19ed377db433d7aa2a"
30url {
31 src: "https://github.com/owlbarn/owl/releases/download/1.0.0/owl-1.0.0.tbz"
32 checksum: [
33 "sha256=d91ba09488edd602dad845f68db1f980a601bdbb55d9516e3b59681eca20debe"
34 "sha512=9b31c3474a94c3b11d1dedba00639e770737e61f2e724a1288066ed976e4d0f8afe891a430e17ecf525fbca92e433d71d1b66d3ba17d4e299a4f8fdc3b902461"
35 ]
36}