Changes between Version 23 and Version 24 of WikiStart


Ignore:
Timestamp:
May 31, 2011, 6:17:45 AM (13 years ago)
Author:
Ben Lippmeier
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v23 v24  
    2727To report bugs, request features, or get an account on the trac, please send email to `repa@ouroborus.net`
    2828
    29 == Tutorial ==
    30 There is a draft tutorial at [http://www.haskell.org/haskellwiki/Numeric_Haskell:_A_Repa_Tutorial]
     29== Papers and Tutorials ==
     30
     31[http://http://www.cse.unsw.edu.au/~benl/papers/repa/repa-icfp2010.pdf Regular Shape Polymorphic Arrays in Haskell]
     32 * Describes the overall approach to fusion, and how the shape polymorphism works.
     33 * Since this paper was published, the internals have changed slightly, but the overall structure is the same.
     34
     35[http://www.cse.unsw.edu.au/~benl/papers/stencil/stencil-icfp2011-sub.pdf Efficient Parallel Stencil Convolution in Haskell]
     36 * Describes the current array representation.
     37 * Discusses the back-end, how the parallelism works, and how to write fast code.
     38 * Describes Repa's special support for Stencil convolutions.
     39
     40[http://www.haskell.org/haskellwiki/Numeric_Haskell:_A_Repa_Tutorial Tutorial on usage and optimisation]
     41 * Contains lots of simple examples to get you started.
     42 * High level discussion of fusion, optimisation, and how to use the {{{force}}} function.
    3143
    3244== Examples ==