1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
Name: hmatrix
Version: 0.20.2
License: BSD3
License-file: LICENSE
Author: Alberto Ruiz
Maintainer: Dominic Steinitz
Stability: provisional
Homepage: https://github.com/haskell-numerics/hmatrix
Synopsis: Numeric Linear Algebra
Description: Linear systems, matrix decompositions, and other numerical computations based on BLAS and LAPACK.
.
Standard interface: "Numeric.LinearAlgebra".
.
Safer interface with statically checked dimensions: "Numeric.LinearAlgebra.Static".
.
Code examples: <http://dis.um.es/~alberto/hmatrix/hmatrix.html>
Category: Math
tested-with: GHC==8.10
cabal-version: >=1.18
build-type: Simple
extra-source-files: THANKS.md CHANGELOG
extra-source-files: src/Internal/C/lapack-aux.h
flag openblas
description: Link with OpenBLAS (https://github.com/xianyi/OpenBLAS) optimized libraries.
default: False
manual: True
flag disable-default-paths
description: When enabled, don't add default hardcoded include/link dirs by default. Needed for hermetic builds like in nix.
default: False
manual: True
flag no-random_r
description: When enabled, don't depend on the random_r() C function.
default: False
manual: True
library
default-language: Haskell2010
Build-Depends: base >= 4.8 && < 5,
binary,
array,
deepseq,
random,
split,
bytestring,
primitive,
storable-complex,
semigroups,
vector >= 0.11
hs-source-dirs: src
exposed-modules: Numeric.LinearAlgebra
Numeric.LinearAlgebra.Devel
Numeric.LinearAlgebra.Data
Numeric.LinearAlgebra.HMatrix
Numeric.LinearAlgebra.Static
other-modules: Internal.Vector
Internal.Devel
Internal.Vectorized
Internal.Matrix
Internal.ST
Internal.IO
Internal.Element
Internal.Conversion
Internal.LAPACK
Internal.Numeric
Internal.Algorithms
Internal.Random
Internal.Container
Internal.Sparse
Internal.Convolution
Internal.Chain
Numeric.Vector
Internal.CG
Numeric.Matrix
Internal.Util
Internal.Modular
Internal.Static
C-sources: src/Internal/C/lapack-aux.c
src/Internal/C/vector-aux.c
other-extensions: ForeignFunctionInterface
ghc-options: -Wall
-fno-warn-missing-signatures
-fno-warn-orphans
-fno-prof-auto
cc-options: -O4 -Wall
if arch(x86_64)
cc-options: -msse2
if arch(i386)
cc-options: -msse2
if flag(no-random_r)
cc-options: -DNO_RANDOM_R
if os(OSX)
if flag(openblas)
if !flag(disable-default-paths)
extra-lib-dirs: /opt/local/lib/openblas/lib
extra-libraries: openblas
else
extra-libraries: blas lapack
if !flag(disable-default-paths)
extra-lib-dirs: /opt/local/lib/
include-dirs: /opt/local/include/
extra-lib-dirs: /usr/local/lib/
include-dirs: /usr/local/include/
if arch(i386)
cc-options: -arch i386
frameworks: Accelerate
if os(freebsd)
if flag(openblas)
if !flag(disable-default-paths)
extra-lib-dirs: /usr/local/lib/openblas/lib
extra-libraries: openblas
else
extra-libraries: blas lapack
if !flag(disable-default-paths)
extra-lib-dirs: /usr/local/lib
include-dirs: /usr/local/include
extra-libraries: gfortran
extra-lib-dirs: /usr/local/lib/gcc9 /usr/local/lib/gcc8 /usr/local/lib/gcc7
if os(windows)
if flag(openblas)
extra-libraries: openblas
else
extra-libraries: blas lapack
if os(linux)
if flag(openblas)
if !flag(disable-default-paths)
extra-lib-dirs: /usr/lib/openblas/lib
extra-libraries: openblas
else
extra-libraries: blas lapack
if arch(x86_64)
cc-options: -fPIC
source-repository head
type: git
location: https://github.com/haskell-numerics/hmatrix
|