-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15408 from mseri/release-owl-0.7.1
[new release] owl-base, owl, owl-zoo and owl-top (0.7.1)
- Loading branch information
Showing
4 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
opam-version: "2.0" | ||
maintainer: "Liang Wang <ryanrhymes@gmail.com>" | ||
authors: [ "Liang Wang" ] | ||
license: "MIT" | ||
homepage: "https://github.com/owlbarn/owl" | ||
dev-repo: "git+https://github.com/owlbarn/owl.git" | ||
bug-reports: "https://github.com/owlbarn/owl/issues" | ||
doc: "https://owlbarn.github.io/" | ||
synopsis: "OCaml Scientific and Engineering Computing - Base" | ||
description: "Owl is an OCaml scientific library." | ||
build: [ | ||
[ "dune" "subst" ] {pinned} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.06.0"} | ||
"base-bigarray" | ||
"dune" {>= "1.7.0"} | ||
"stdlib-shims" | ||
] | ||
url { | ||
src: "https://github.com/owlbarn/owl/releases/download/0.7.1/owl-0.7.1.tbz" | ||
checksum: [ | ||
"sha256=4efa33bb2f04fa14f493a3dd9bf4210895ff558d490cf8c3bd1484ba20ff26f3" | ||
"sha512=1c03d0822a642975ab0b08e621012e17b7b41563196e7c2e93dd2e3338a9b0b37a63c1c6a786b8a40f32f9bd21b4c57f898b12e1b1cdd892b78fe4927e4c35b6" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
opam-version: "2.0" | ||
maintainer: "Liang Wang <ryanrhymes@gmail.com>" | ||
authors: [ "Liang Wang" ] | ||
license: "MIT" | ||
homepage: "https://github.com/owlbarn/owl" | ||
dev-repo: "git+https://github.com/owlbarn/owl.git" | ||
bug-reports: "https://github.com/owlbarn/owl/issues" | ||
doc: "https://owlbarn.github.io/" | ||
synopsis: "OCaml Scientific and Engineering Computing - Top" | ||
description: "Owl is an OCaml scientific library." | ||
|
||
build: [ | ||
[ "dune" "subst" ] {pinned} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.06.0"} | ||
"dune" {>= "1.7.0"} | ||
"ocaml-compiler-libs" | ||
"owl" {>= version} | ||
"owl-zoo" | ||
] | ||
url { | ||
src: "https://github.com/owlbarn/owl/releases/download/0.7.1/owl-0.7.1.tbz" | ||
checksum: [ | ||
"sha256=4efa33bb2f04fa14f493a3dd9bf4210895ff558d490cf8c3bd1484ba20ff26f3" | ||
"sha512=1c03d0822a642975ab0b08e621012e17b7b41563196e7c2e93dd2e3338a9b0b37a63c1c6a786b8a40f32f9bd21b4c57f898b12e1b1cdd892b78fe4927e4c35b6" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
opam-version: "2.0" | ||
maintainer: "Liang Wang <ryanrhymes@gmail.com>" | ||
authors: [ "Liang Wang" ] | ||
license: "MIT" | ||
homepage: "https://github.com/owlbarn/owl" | ||
dev-repo: "git+https://github.com/owlbarn/owl.git" | ||
bug-reports: "https://github.com/owlbarn/owl/issues" | ||
doc: "https://owlbarn.github.io/" | ||
synopsis: "OCaml Scientific and Engineering Computing - Zoo" | ||
description: """ | ||
Owl's Zoo System | ||
|
||
The Zoo System is Owl's customised toplevel. | ||
It is used for scripting numerical applications and sharing small code snippets via gist among users. | ||
The Zoo system introduces a zoo directive into toplevel, the referred gist id will be automatically downloaded and imported as a module in the script. | ||
The nested zoo reference is also supported. | ||
""" | ||
|
||
build: [ | ||
[ "dune" "subst" ] {pinned} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.06.0"} | ||
"dune" {>= "1.7.0"} | ||
"ocaml-compiler-libs" | ||
"owl" {>= version} | ||
] | ||
url { | ||
src: "https://github.com/owlbarn/owl/releases/download/0.7.1/owl-0.7.1.tbz" | ||
checksum: [ | ||
"sha256=4efa33bb2f04fa14f493a3dd9bf4210895ff558d490cf8c3bd1484ba20ff26f3" | ||
"sha512=1c03d0822a642975ab0b08e621012e17b7b41563196e7c2e93dd2e3338a9b0b37a63c1c6a786b8a40f32f9bd21b4c57f898b12e1b1cdd892b78fe4927e4c35b6" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
maintainer: "Liang Wang <ryanrhymes@gmail.com>" | ||
authors: [ "Liang Wang" ] | ||
license: "MIT" | ||
homepage: "https://github.com/owlbarn/owl" | ||
dev-repo: "git+https://github.com/owlbarn/owl.git" | ||
bug-reports: "https://github.com/owlbarn/owl/issues" | ||
doc: "https://owlbarn.github.io/owl/" | ||
synopsis: "OCaml Scientific and Engineering Computing" | ||
description: """ | ||
Owl: OCaml Scientific and Engineering Computing | ||
|
||
Owl is an OCaml numerical library. | ||
It 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). | ||
Recently, Owl has implemented algorithmic differentiation which essentially makes developing machine learning and neural network algorithms trivial. | ||
""" | ||
|
||
build: [ | ||
[ "dune" "subst" ] {pinned} | ||
[ "dune" "build" "-p" name "-j" jobs ] | ||
] | ||
|
||
depends: [ | ||
"ocaml" {>= "4.06.0"} | ||
"alcotest" {with-test} | ||
"base" {build & < "v0.13"} | ||
"base-bigarray" | ||
"conf-openblas" {>= "0.2.0"} | ||
"ctypes" | ||
"dune" {>= "1.7.0"} | ||
"dune-configurator" | ||
"eigen" {>= "0.1.0"} | ||
"owl-base" {= version} | ||
"stdio" {build & < "v0.13"} | ||
"stdlib-shims" | ||
] | ||
url { | ||
src: "https://github.com/owlbarn/owl/releases/download/0.7.1/owl-0.7.1.tbz" | ||
checksum: [ | ||
"sha256=4efa33bb2f04fa14f493a3dd9bf4210895ff558d490cf8c3bd1484ba20ff26f3" | ||
"sha512=1c03d0822a642975ab0b08e621012e17b7b41563196e7c2e93dd2e3338a9b0b37a63c1c6a786b8a40f32f9bd21b4c57f898b12e1b1cdd892b78fe4927e4c35b6" | ||
] | ||
} |