this repo has no description

Merge pull request #27177 from jzstark/release-owl-1.2

[new release] owl (3 packages) (1.2)

Changed files
+105 -4
packages
owl
owl.1.2
owl-base
owl-base.1.2
owl-plplot
owl-plplot.0.5.0
owl-plplot.0.6.0
owl-plplot.0.7.0
owl-plplot.0.7.2
owl-top
owl-top.1.2
+28
packages/owl-base/owl-base.1.2/opam
···
+
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" ] {dev}
+
[ "dune" "build" "-p" name "-j" jobs ]
+
]
+
+
depends: [
+
"ocaml" {>= "4.12.0"}
+
"base-bigarray"
+
"dune" {>= "3.16"}
+
]
+
url {
+
src: "https://github.com/owlbarn/owl/releases/download/1.2/owl-1.2.tbz"
+
checksum: [
+
"sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5"
+
"sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd"
+
]
+
}
+
x-commit-hash: "7e8313b57b4aec07832c992f0b42182c034f78fe"
+1 -1
packages/owl-plplot/owl-plplot.0.5.0/opam
···
depends: [
"dune"
"ocaml" {>= "4.06.0"}
-
"owl" {>= "0.5.0"}
+
"owl" {>= "0.5.0" & < "0.6.0"}
"plplot"
]
url {
+1 -1
packages/owl-plplot/owl-plplot.0.6.0/opam
···
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "1.7"}
-
"owl" {>= "0.5.0"}
+
"owl" {>= "0.5.0" & < "0.7.0"}
"plplot"
]
url {
+1 -1
packages/owl-plplot/owl-plplot.0.7.0/opam
···
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "1.7.0"}
-
"owl" {>= "0.5.0"}
+
"owl" {>= "0.5.0" & < "0.8.0"}
"plplot"
]
url {
+1 -1
packages/owl-plplot/owl-plplot.0.7.2/opam
···
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "1.7.0"}
-
"owl" {>= "0.5.0"}
+
"owl" {>= "0.5.0" & < "0.8.0"}
"plplot"
]
url {
+30
packages/owl-top/owl-top.1.2/opam
···
+
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" ] {dev}
+
[ "dune" "build" "-p" name "-j" jobs ]
+
]
+
+
depends: [
+
"ocaml" {>= "4.12.0"}
+
"dune" {>= "3.16"}
+
"ocaml-compiler-libs"
+
"owl" {= version}
+
]
+
url {
+
src: "https://github.com/owlbarn/owl/releases/download/1.2/owl-1.2.tbz"
+
checksum: [
+
"sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5"
+
"sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd"
+
]
+
}
+
x-commit-hash: "7e8313b57b4aec07832c992f0b42182c034f78fe"
+43
packages/owl/owl.1.2/opam
···
+
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" ] {dev}
+
[ "dune" "build" "-p" name "-j" jobs ]
+
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
+
]
+
+
depends: [
+
"ocaml" {>= "4.12.0"}
+
"alcotest" {with-test}
+
"base" {build}
+
"base-bigarray"
+
"conf-openblas" {>= "0.2.1"}
+
"ctypes" {>= "0.16.0"}
+
"dune" {>= "3.16"}
+
"dune-configurator"
+
"owl-base" {= version}
+
"npy"
+
]
+
url {
+
src: "https://github.com/owlbarn/owl/releases/download/1.2/owl-1.2.tbz"
+
checksum: [
+
"sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5"
+
"sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd"
+
]
+
}
+
x-commit-hash: "7e8313b57b4aec07832c992f0b42182c034f78fe"