name: fpnla version: 0.1.1 cabal-version: >=1.2 build-type: Simple stability: Experimental author: Mauro Blanco, Pablo Perdomo, Pablo Ezzatti, Alberto Pardo, Marcos Viera synopsis: A library for NLA operations description: . This package defines a framework for linear algebra operations, allowing: . - Definition of multiple instances of BLAS and LAPACK operations. . - Definition of multiple representations of vectors and matrices. . - Arbitrary combination of strategies and structure representations. . - Type-safe manipulation of context information associated to each strategy. . - Definition of specialized strategies for a given representation. . The framework is based on BLAS () and LAPACK () linear algebra libraries, as these are well known libraries in the area. For this reason the design of the framework is strongly oriented to these libraries. Anyway it is possible to easily define operations not considered in these libraries and still maintaining the above properties. . Many representations and strategy definitions (from which many are parallel) can be found in the @fpnla-examples@ () package. . Details about the package may be found in the paper: Towards a functional run-time for dense NLA domain. In Proceedings of the 2Nd ACM SIGPLAN Workshop on Functional High-performance Computing. New York, NY, USA. ACM, pages 85-96 (). . tested-with: GHC==7.6.3 maintainer: Pablo Perdomo , Mauro Blanco category: Math license: BSD3 license-file: LICENSE copyright: Universidad de la República, Uruguay library hs-source-dirs: src build-depends: base >= 4 && < 5 ghc-options: -Wall -fno-warn-orphans exposed-modules: FPNLA.Matrix, FPNLA.Matrix.Utils, FPNLA.Operations.BLAS, FPNLA.Operations.LAPACK, FPNLA.Operations.Parameters other-modules: FPNLA.Utils