uvector: Fast unboxed arrays with a flexible interface

[ bsd3, data, library ] [ Propose Tags ]

Fast unboxed arrays with a flexible interface. The library is built of fusible combinators, as described in the paper /Stream Fusion: From Lists to Streams to Nothing at All/.

For best results, compile with your user programs with -O2 -fvia-C -optc-O2.


[Skip to Readme]

Modules

[Index]

Flags

Automatic Flags
NameDescriptionDefault
safe

Compile the library with read/write bound checking enabled.

Disabled

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

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5, 0.1.1.0, 0.1.1.1
Dependencies base (<4.3), ghc-prim [details]
License BSD-3-Clause
Author Manuel Chakravarty, Gabriele Keller, Roman Leshchinskiy, Don Stewart
Maintainer Don Stewart <dons@galois.com>
Revised Revision 1 made by HerbertValerioRiedel at 2014-12-20T11:21:13Z
Category Data
Home page http://code.haskell.org/~dons/code/uvector
Uploaded by DonaldStewart at 2008-07-04T19:54:05Z
Distributions
Reverse Dependencies 12 direct, 4702 indirect [details]
Downloads 7018 total (24 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for uvector-0.1.0.1

[back to package description]
The uvector library is a polished up version of the basic flat, unlifted
arrays from the Data Parallel Haskell project. These arrays use
aggressive fusion optimisations, low level unboxed representations, and
a list-like interface, to provide convenient access to fast arrays in
pure Haskell.

As this is all about speed, the library is only available for GHC. 

------------------------------------------------------------------------

When to fuse: don't duplicate work.