storablevector-streamfusion: Conversion between storablevector and stream-fusion lists with fusion

[ bsd3, data, library ] [ Propose Tags ]

This package brings together the best of two worlds: The flexibility of plain lists and speed of low-level arrays. Lists are lazy per element, thus allowing for elegant tying-the-knot algorithms and correct fusion of subsequent operations, and they support any element type, including functions. Storablevectors do not have these features. Instead they are fast, including very fast access via indices, they are memory efficient and allow simple exchange with C.

This package provides the canonical functions for conversion from StorableVector to Stream and back. By a simple fusion rule they let the interim Stream based lists disappear in many situations, resulting in fast low-level loops. Such fusion could not be correct on StorableVectors. E.g. consider

import qualified Data.StorableVector.Lazy as SV
SV.zipWith f (SV.unfoldr size g a) (SV.cons b (SV.unfoldr size h c))

which yields a storable vector with the chunk structure

[1, size, size, ...]

and the following strictness behaviour: For computation of the first value of the result, the first chunk with size size of SV.unfoldr size g a has to be fully evaluated. This has two advantages: Firstly, you do not really want that behaviour, but you accept it for the sake of overall performance. Secondly, the odd behaviour cannot easily be preserved by fusion, and we must resist to tell the optimizer incorrect rules.

So here is the solution: Write

import qualified Data.StorableVector.Lazy.Stream as SVG
import qualified Data.List.Stream as Stream
SVG.from chunkSize $
   Stream.zipWith f
      (Stream.unfoldr g a)
      (Stream.cons b (Stream.unfoldr h c))

and get two advantages. First: You do not have to pass the size parameter at the leaves, but only once at the top. Second: Fusion jumps in and turns everything in a single efficient SV.unfoldr.

Flags

Automatic Flags
NameDescriptionDefault
splitbase

Choose the new smaller, split-up base package.

Enabled
buildtests

Build test executables

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.0
Dependencies base (>=1.0 && <2 || >=3), binary (>=0.4 && <0.5), bytestring (>=0.9 && <0.10), old-time (>=1.0 && <1.1), storablevector (>=0.2 && <0.3), stream-fusion (>=0.1 && <0.2), utility-ht (>=0.0.1 && <0.1) [details]
License BSD-3-Clause
Author Henning Thielemann <storablevector@henning-thielemann.de>
Maintainer Henning Thielemann <storablevector@henning-thielemann.de>
Category Data
Home page http://www.haskell.org/haskellwiki/Storable_Vector
Uploaded by HenningThielemann at 2009-04-24T21:35:16Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables speedtest
Downloads 1187 total (4 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]