[commit: nofib] master: Update Repa libraries (fixes Blur for now) (b6c1fee)
David Terei
davidterei at gmail.com
Tue Jan 17 20:11:58 CET 2012
Repository : ssh://darcs.haskell.org//srv/darcs/nofib
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/b6c1feee6b3b885aacbfdd0cd0986c064f72304f
>---------------------------------------------------------------
commit b6c1feee6b3b885aacbfdd0cd0986c064f72304f
Author: David Terei <davidterei at gmail.com>
Date: Mon Jan 16 01:13:48 2012 -0800
Update Repa libraries (fixes Blur for now)
fibon/Repa/Blur/Fibon/Instance.hs | 26 -
fibon/Repa/Blur/Fibon/data/ref/input/lena.bmp | Bin 786486 -> 0 bytes
.../Blur/Fibon/data/ref/output/out.expected.bmp | Bin 786486 -> 0 bytes
fibon/Repa/Blur/Fibon/data/test/input/step20.bmp | Bin 49206 -> 0 bytes
.../Blur/Fibon/data/test/output/out.expected.bmp | Bin 49206 -> 0 bytes
fibon/Repa/Blur/Makefile | 74 ++-
fibon/Repa/Blur/src/Main.hs | 86 ++-
fibon/Repa/_RepaLib/bmp/Codec/BMP.hs | 70 ++-
fibon/Repa/_RepaLib/bmp/Codec/BMP/Base.hs | 6 +-
fibon/Repa/_RepaLib/bmp/Codec/BMP/BitmapInfo.hs | 1 +
fibon/Repa/_RepaLib/bmp/Codec/BMP/BitmapInfoV3.hs | 114 ++--
fibon/Repa/_RepaLib/bmp/Codec/BMP/BitmapInfoV4.hs | 94 ++-
fibon/Repa/_RepaLib/bmp/Codec/BMP/BitmapInfoV5.hs | 15 +-
fibon/Repa/_RepaLib/bmp/Codec/BMP/Compression.hs | 43 +
fibon/Repa/_RepaLib/bmp/Codec/BMP/Error.hs | 60 ++-
fibon/Repa/_RepaLib/bmp/Codec/BMP/FileHeader.hs | 11 +-
fibon/Repa/_RepaLib/bmp/Codec/BMP/Pack.hs | 2 +-
fibon/Repa/_RepaLib/bmp/Codec/BMP/Unpack.hs | 13 +-
fibon/Repa/_RepaLib/bmp/bmp.cabal | 11 +-
fibon/Repa/_RepaLib/quickcheck/LICENSE | 5 +-
fibon/Repa/_RepaLib/quickcheck/QuickCheck.cabal | 58 ++-
fibon/Repa/_RepaLib/quickcheck/README | 6 +-
fibon/Repa/_RepaLib/quickcheck/Test/QuickCheck.hs | 17 +-
.../_RepaLib/quickcheck/Test/QuickCheck/All.hs | 121 +++
.../quickcheck/Test/QuickCheck/Arbitrary.hs | 43 +-
.../quickcheck/Test/QuickCheck/Exception.hs | 5 +-
.../quickcheck/Test/QuickCheck/Function.hs | 216 ++++--
.../_RepaLib/quickcheck/Test/QuickCheck/Gen.hs | 15 +-
.../quickcheck/Test/QuickCheck/Modifiers.hs | 103 ++-
.../_RepaLib/quickcheck/Test/QuickCheck/Monadic.hs | 9 +-
.../_RepaLib/quickcheck/Test/QuickCheck/Poly.hs | 30 +-
.../quickcheck/Test/QuickCheck/Property.hs | 345 ++++++---
.../_RepaLib/quickcheck/Test/QuickCheck/State.hs | 2 +-
.../_RepaLib/quickcheck/Test/QuickCheck/Test.hs | 104 ++-
.../_RepaLib/quickcheck/Test/QuickCheck/Text.hs | 2 +-
.../Data/Array/Repa/Algorithms/Complex.hs | 5 +-
.../Data/Array/Repa/Algorithms/Convolve.hs | 23 +-
.../Data/Array/Repa/Algorithms/DFT.hs | 11 +-
.../Data/Array/Repa/Algorithms/FFT.hs | 93 ++-
.../Data/Array/Repa/Algorithms/Iterate.hs | 45 ++
.../Data/Array/Repa/Algorithms/Matrix.hs | 36 +-
.../Data/Array/Repa/Algorithms/Randomish.hs | 115 +++
.../_RepaLib/repa-algorithms/repa-algorithms.cabal | 17 +-
.../repa-bytestring/Data/Array/Repa/ByteString.hs | 61 ++-
.../_RepaLib/repa-bytestring/repa-bytestring.cabal | 15 +-
.../_RepaLib/repa-io/Data/Array/Repa/IO/BMP.hs | 70 ++-
.../_RepaLib/repa-io/Data/Array/Repa/IO/Binary.hs | 83 ++
.../_RepaLib/repa-io/Data/Array/Repa/IO/Matrix.hs | 15 +-
.../_RepaLib/repa-io/Data/Array/Repa/IO/Timing.hs | 21 +-
.../_RepaLib/repa-io/Data/Array/Repa/IO/Vector.hs | 5 +-
fibon/Repa/_RepaLib/repa-io/repa-io.cabal | 19 +-
fibon/Repa/_RepaLib/repa/Data/Array/Repa.hs | 816 +++-----------------
.../_RepaLib/repa/Data/Array/Repa/Arbitrary.hs | 99 +++
fibon/Repa/_RepaLib/repa/Data/Array/Repa/Index.hs | 116 +---
.../repa/Data/Array/Repa/Internals/Base.hs | 410 ++++++++++
.../_RepaLib/repa/Data/Array/Repa/Internals/Elt.hs | 283 +++++++
.../Data/Array/Repa/Internals/EvalBlockwise.hs | 153 ++++
.../repa/Data/Array/Repa/Internals/EvalChunked.hs | 62 ++
.../repa/Data/Array/Repa/Internals/EvalCursored.hs | 136 ++++
.../Data/Array/Repa/Internals/EvalReduction.hs | 121 +++
.../repa/Data/Array/Repa/Internals/Forcing.hs | 215 +++++
.../repa/Data/Array/Repa/Internals/Gang.hs | 249 ++++++
.../repa/Data/Array/Repa/Internals/Select.hs | 118 +++
.../repa/Data/Array/Repa/Operators/IndexSpace.hs | 165 ++++
.../repa/Data/Array/Repa/Operators/Interleave.hs | 111 +++
.../repa/Data/Array/Repa/Operators/Mapping.hs | 109 +++
.../repa/Data/Array/Repa/Operators/Modify.hs | 53 ++
.../repa/Data/Array/Repa/Operators/Reduction.hs | 82 ++
.../repa/Data/Array/Repa/Operators/Select.hs | 44 ++
.../repa/Data/Array/Repa/Operators/Traverse.hs | 126 +++
.../_RepaLib/repa/Data/Array/Repa/Properties.hs | 115 +++
.../_RepaLib/repa/Data/Array/Repa/QuickCheck.hs | 21 -
fibon/Repa/_RepaLib/repa/Data/Array/Repa/Shape.hs | 16 +-
fibon/Repa/_RepaLib/repa/Data/Array/Repa/Slice.hs | 1 +
.../repa/Data/Array/Repa/Specialised/Dim2.hs | 108 +++
.../Repa/_RepaLib/repa/Data/Array/Repa/Stencil.hs | 270 +++++++
.../_RepaLib/repa/Data/Array/Repa/Stencil/Base.hs | 59 ++
.../repa/Data/Array/Repa/Stencil/Template.hs | 95 +++
fibon/Repa/_RepaLib/repa/Test.hs | 12 -
fibon/Repa/_RepaLib/repa/repa.cabal | 50 +-
80 files changed, 5009 insertions(+), 1547 deletions(-)
Diff suppressed because of size. To see it, use:
git show b6c1feee6b3b885aacbfdd0cd0986c064f72304f
More information about the Cvs-ghc
mailing list