this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

CHANGES:

* Revise automatic installation test via GitHub Action
* Revise dockerfiles; add docker automatic build and deployment
* Fix compatibility on MacOS and Arm64 architecture
* Update compilation to OCaml 5.2.0
* Revise examples and tests
* Update inline document and tutorials
* FFT module revamp (@gabyfle)
* Changed def of ssqr_diff' to not modify inputs (@patrick-nicodemus)
* Avoid calling log(0) when generating gaussian random variables (@edwintorok)

+101
+28
packages/owl-base/owl-base.1.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Liang Wang <ryanrhymes@gmail.com>" 3 + authors: [ "Liang Wang" ] 4 + license: "MIT" 5 + homepage: "https://github.com/owlbarn/owl" 6 + dev-repo: "git+https://github.com/owlbarn/owl.git" 7 + bug-reports: "https://github.com/owlbarn/owl/issues" 8 + doc: "https://owlbarn.github.io/" 9 + synopsis: "OCaml Scientific and Engineering Computing - Base" 10 + description: "Owl is an OCaml scientific library." 11 + build: [ 12 + [ "dune" "subst" ] {pinned} 13 + [ "dune" "build" "-p" name "-j" jobs ] 14 + ] 15 + 16 + depends: [ 17 + "ocaml" {>= "4.12.0"} 18 + "base-bigarray" 19 + "dune" {>= "2.0.0"} 20 + ] 21 + url { 22 + src: "https://github.com/owlbarn/owl/releases/download/1.2/owl-1.2.tbz" 23 + checksum: [ 24 + "sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5" 25 + "sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd" 26 + ] 27 + } 28 + x-commit-hash: "7e8313b57b4aec07832c992f0b42182c034f78fe"
+30
packages/owl-top/owl-top.1.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Liang Wang <ryanrhymes@gmail.com>" 3 + authors: [ "Liang Wang" ] 4 + license: "MIT" 5 + homepage: "https://github.com/owlbarn/owl" 6 + dev-repo: "git+https://github.com/owlbarn/owl.git" 7 + bug-reports: "https://github.com/owlbarn/owl/issues" 8 + doc: "https://owlbarn.github.io/" 9 + synopsis: "OCaml Scientific and Engineering Computing - Top" 10 + description: "Owl is an OCaml scientific library." 11 + 12 + build: [ 13 + [ "dune" "subst" ] {pinned} 14 + [ "dune" "build" "-p" name "-j" jobs ] 15 + ] 16 + 17 + depends: [ 18 + "ocaml" {>= "4.12.0"} 19 + "dune" {>= "2.0.0"} 20 + "ocaml-compiler-libs" 21 + "owl" {= version} 22 + ] 23 + url { 24 + src: "https://github.com/owlbarn/owl/releases/download/1.2/owl-1.2.tbz" 25 + checksum: [ 26 + "sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5" 27 + "sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd" 28 + ] 29 + } 30 + x-commit-hash: "7e8313b57b4aec07832c992f0b42182c034f78fe"
+43
packages/owl/owl.1.2/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Liang Wang <ryanrhymes@gmail.com>" 3 + authors: [ "Liang Wang" ] 4 + license: "MIT" 5 + homepage: "https://github.com/owlbarn/owl" 6 + dev-repo: "git+https://github.com/owlbarn/owl.git" 7 + bug-reports: "https://github.com/owlbarn/owl/issues" 8 + doc: "https://owlbarn.github.io/owl/" 9 + synopsis: "OCaml Scientific and Engineering Computing" 10 + description: """ 11 + Owl: OCaml Scientific and Engineering Computing 12 + 13 + Owl is an OCaml numerical library. 14 + 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). 15 + Recently, Owl has implemented algorithmic differentiation which essentially makes developing machine learning and neural network algorithms trivial. 16 + """ 17 + 18 + build: [ 19 + [ "dune" "subst" ] {pinned} 20 + [ "dune" "build" "-p" name "-j" jobs ] 21 + [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 22 + ] 23 + 24 + depends: [ 25 + "ocaml" {>= "4.12.0"} 26 + "alcotest" {with-test} 27 + "base" {build} 28 + "base-bigarray" 29 + "conf-openblas" {>= "0.2.1"} 30 + "ctypes" {>= "0.16.0"} 31 + "dune" {>= "2.0.0"} 32 + "dune-configurator" 33 + "owl-base" {= version} 34 + "npy" 35 + ] 36 + url { 37 + src: "https://github.com/owlbarn/owl/releases/download/1.2/owl-1.2.tbz" 38 + checksum: [ 39 + "sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5" 40 + "sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd" 41 + ] 42 + } 43 + x-commit-hash: "7e8313b57b4aec07832c992f0b42182c034f78fe"