forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
1 changed file
with
60 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,60 @@ | ||
opam-version: "2.0" | ||
synopsis: "Lacaml - OCaml-bindings to BLAS and LAPACK" | ||
description: """ | ||
Lacaml interfaces the BLAS-library (Basic Linear Algebra Subroutines) and | ||
LAPACK-library (Linear Algebra routines). It also contains many additional | ||
convenience functions for vectors and matrices.""" | ||
maintainer: [ | ||
"Markus Mottl <[email protected]>" | ||
"Christophe Troestler <[email protected]>" | ||
] | ||
authors: [ | ||
"Egbert Ammicht <[email protected]>" | ||
"Patrick Cousot <[email protected]>" | ||
"Sam Ehrlichman <[email protected]>" | ||
"Florent Hoareau <[email protected]>" | ||
"Markus Mottl <[email protected]>" | ||
"Liam Stewart <[email protected]>" | ||
"Christophe Troestler <[email protected]>" | ||
"Oleg Trott <[email protected]>" | ||
"Martin Willensdorfer <[email protected]>" | ||
] | ||
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" | ||
tags: ["clib:lapack" "clib:blas"] | ||
homepage: "https://mmottl.github.io/lacaml" | ||
doc: "https://mmottl.github.io/lacaml/api" | ||
bug-reports: "https://github.com/mmottl/lacaml/issues" | ||
depends: [ | ||
"dune" {>= "2.7"} | ||
"ocaml" {>= "4.08"} | ||
"dune-configurator" | ||
"conf-blas" {build} | ||
"conf-lapack" {build} | ||
"base-bytes" | ||
"base-bigarray" | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/mmottl/lacaml.git" | ||
url { | ||
src: | ||
"https://github.com/mmottl/lacaml/releases/download/11.1.0/lacaml-11.1.0.tbz" | ||
checksum: [ | ||
"sha256=df0b945fde36c325965dbe4c8df787661c76fe44bffb724555dd384f2fd9b700" | ||
"sha512=9cb60f3797eadc62daf946c527f79de9722f002f34b2b24efaef1fefc1846f780a3769da888eaa0bcc45993159f810de8b50244f59bf34f434c8a068527a5935" | ||
] | ||
} | ||
x-commit-hash: "0ae604976520f0106f96cea7457bca212ebb73bb" |