Skip to content

Commit 7f48d41

Browse files
committed
[new release] lacaml (11.1.0)
CHANGES: - Bug fix: moved incorrect `Bool_val` out of blocking section. - Removed -O3, -ffast-math, and -march=native flags. They may be too risky as defaults. - Rewrote README and improved changelog. - Reformatted all C-code using `clang-format` and OCaml code using `ocamlformat`. - Added GitHub workflow.
1 parent 1ee5091 commit 7f48d41

File tree

1 file changed

+60
-0
lines changed
  • packages/lacaml/lacaml.11.1.0

1 file changed

+60
-0
lines changed

packages/lacaml/lacaml.11.1.0/opam

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
opam-version: "2.0"
2+
synopsis: "Lacaml - OCaml-bindings to BLAS and LAPACK"
3+
description: """
4+
Lacaml interfaces the BLAS-library (Basic Linear Algebra Subroutines) and
5+
LAPACK-library (Linear Algebra routines). It also contains many additional
6+
convenience functions for vectors and matrices."""
7+
maintainer: [
8+
"Markus Mottl <[email protected]>"
9+
"Christophe Troestler <[email protected]>"
10+
]
11+
authors: [
12+
"Egbert Ammicht <[email protected]>"
13+
"Patrick Cousot <[email protected]>"
14+
"Sam Ehrlichman <[email protected]>"
15+
"Florent Hoareau <[email protected]>"
16+
"Markus Mottl <[email protected]>"
17+
"Liam Stewart <[email protected]>"
18+
"Christophe Troestler <[email protected]>"
19+
"Oleg Trott <[email protected]>"
20+
"Martin Willensdorfer <[email protected]>"
21+
]
22+
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
23+
tags: ["clib:lapack" "clib:blas"]
24+
homepage: "https://mmottl.github.io/lacaml"
25+
doc: "https://mmottl.github.io/lacaml/api"
26+
bug-reports: "https://github.com/mmottl/lacaml/issues"
27+
depends: [
28+
"dune" {>= "2.7"}
29+
"ocaml" {>= "4.08"}
30+
"dune-configurator"
31+
"conf-blas" {build}
32+
"conf-lapack" {build}
33+
"base-bytes"
34+
"base-bigarray"
35+
"odoc" {with-doc}
36+
]
37+
build: [
38+
["dune" "subst"] {dev}
39+
[
40+
"dune"
41+
"build"
42+
"-p"
43+
name
44+
"-j"
45+
jobs
46+
"@install"
47+
"@runtest" {with-test}
48+
"@doc" {with-doc}
49+
]
50+
]
51+
dev-repo: "git+https://github.com/mmottl/lacaml.git"
52+
url {
53+
src:
54+
"https://github.com/mmottl/lacaml/releases/download/11.1.0/lacaml-11.1.0.tbz"
55+
checksum: [
56+
"sha256=df0b945fde36c325965dbe4c8df787661c76fe44bffb724555dd384f2fd9b700"
57+
"sha512=9cb60f3797eadc62daf946c527f79de9722f002f34b2b24efaef1fefc1846f780a3769da888eaa0bcc45993159f810de8b50244f59bf34f434c8a068527a5935"
58+
]
59+
}
60+
x-commit-hash: "0ae604976520f0106f96cea7457bca212ebb73bb"

0 commit comments

Comments
 (0)