Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 8 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions packages/owl-base/owl-base.1.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
opam-version: "2.0"
maintainer: "Liang Wang <[email protected]>"
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"
30 changes: 30 additions & 0 deletions packages/owl-top/owl-top.1.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
opam-version: "2.0"
maintainer: "Liang Wang <[email protected]>"
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" {>= "2.0.0"}
avsm marked this conversation as resolved.
Show resolved Hide resolved
"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 changes: 43 additions & 0 deletions packages/owl/owl.1.2/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
opam-version: "2.0"
maintainer: "Liang Wang <[email protected]>"
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}
avsm marked this conversation as resolved.
Show resolved Hide resolved
[ "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" {>= "2.0.0"}
avsm marked this conversation as resolved.
Show resolved Hide resolved
"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"
Loading