jalla: Higher level functions for linear algebra. Wraps BLAS and LAPACKE.

[ library, math ] [ Propose Tags ]

Jalla aims at providing high level functions for linear algebra computations which should be fast and easy enough to use. Under the hood, BLAS and LAPACKE are used (LAPACKE is a standard C interface to LAPACK which is part of LAPACK since version 3.4). Currently, I am adding new functions whenever I find some time. Please help, if you want to! There are not many tests yet, and we need some nicer error reporting (nicer than exceptions).


[Skip to Readme]

Modules

[Last Documentation]

  • Numeric
    • Numeric.Jalla
      • Foreign
        • Numeric.Jalla.Foreign.BLAS
        • Numeric.Jalla.Foreign.BlasOps
        • Numeric.Jalla.Foreign.LAPACKE
        • Numeric.Jalla.Foreign.LapackeOps
      • Numeric.Jalla.IMM
      • Numeric.Jalla.Indexable
      • Numeric.Jalla.InnerProduct
      • Numeric.Jalla.Matrix
      • Numeric.Jalla.Test
      • Numeric.Jalla.Types
      • Numeric.Jalla.Vector

Flags

Automatic Flags
NameDescriptionDefault
build_lapacke

If true, try to build lapacke in the ./lapacke directory of the jalla package.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.1.0.1, 0.2, 0.2.0.1
Dependencies base (>4.0.0 && <4.6.0), convertible, mtl, QuickCheck (>=2.4.2), random (>=1.0.1) [details]
License BSD-3-Clause
Copyright 2011-2012, Christian Gosch
Author Christian Gosch
Maintainer Christian Gosch <github@goschs.de>
Category Math
Home page https://github.com/cgo/jalla
Source repo head: git clone git://github.com/cgo/jalla.git
Uploaded by ChristianGosch at 2012-03-22T22:23:53Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2901 total (7 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-25 [all 6 reports]

Readme for jalla-0.1.0

[back to package description]
Jalla aims at providing high level functions for linear algebra computations,
which should be fast and easy enough to use.
It also contains a Haskell wrapper for cblas and lapacke, a C interface for LAPACK written by Intel.
Jalla is written and maintained by Christian Gosch (github at goschs dot de) and
was started as a little project to learn Haskell.

Jalla (probably) needs ghc, it has not been tested with other Haskell implementations.
It is developed with ghc > 7.0.

You need to have CBLAS and LAPACK installed, e.g. by installing ATLAS generated libraries
on you computer. 
In Ubuntu, there are packages for CBLAS and LAPACK which you can install with apt-get,
synaptic, or any other such tool.
Lapacke must be compiled "by hand".

0. Get the jalla sources; say they are located in the directory "jalla/"
1. a) LAPACKE is part of LAPACK since version 3.4.
      If you have that version, use that. Otherwise, follow b).
   b) Get Lapacke at <http://www.netlib.org/lapack/lapacke.tgz>
      or at <http://www.netlib.org/lapack/#_standard_c_language_apis_for_lapack>
2. Unpack lapacke into "./lapacke" in the top jalla directory.
3. (Follow lapacke's instructions to build)
   /OR/ use the shiny new SCons file provided to build lapacke
   for use with jalla, which can be found in the lapacke/ sub-directory
   in the jalla source code.

   Note that now, you can also let the Setup.hs script do the work right before configuring:
    runhaskell Setup.hs configure --user --flags="build_lapacke"
   should build lapacke right before configuring jalla.   

   If you don't use the provided SCons file, 
   note that Jalla expects the LAPACKE_... naming scheme, i.e. LAPACKE in upper case,
   the rest in lower case. That scheme is called LAPACK_NAME_PATTERN_MC in the LAPACKE make.inc
   file.
   Jalla also expects the define LAPACK_COMPLEX_STRUCTURE in the same make.inc.
   This means that complex numbers are represented as C struct.   
4. In jalla/, call 
    cabal configure
    cabal build
    cabal haddock
5. Look at the generated documentation, which is getting better now.

Please contact the author at github at goschs dot de if anything does not work!


Documentation
-------------
The haddock documentation is not complete, but not so bad anymore.
I will add more. The most important things are documented.


Status
------
The code may change in some places, and will definitely be growing as soon as I need more functionality.
Please let me know if you have suggestions.

Please also tell me if you have a greater interest in this project and want to participate!


License
-------
See the file LICENSE.
This project is under a BSD3-style license.