Copyright | [2016..2020] The Accelerate Team |
---|---|
License | BSD3 |
Maintainer | Trevor L. McDonell <trevor.mcdonell@gmail.com> |
Stability | experimental |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Combine folds in Applicative
style to generate multiple results with
a single pass over the array. Based on Max Rabkin's "Beautiful Folding" [1]
and talks by Gabriel Gonzalez [2].
Documentation
Fold
describes how to process data of some i
nput type into some
o
utput type, via a reduction using some intermediate Monoid w
. For
example, both sum
and length
below use the Sum
monoid:
sum = Fold (lift . Sum) (getSum . unlift) length = Fold (\_ -> 1) (getSum . unlift)
The key is that Fold
s can be combined using Applicative
in order to
produce multiple outputs from a single reduction of the array. For example:
average = (/) <$> sum <*> length
This computes both the sum of the array as well as its length in a single traversal, then combines both results to compute the average.
Because Fold
has some numeric instances, this can also be defined more
succinctly as:
average = sum / length
A more complex example:
sumOfSquares = Fold (lift . Sum . (^2)) (getSum . unlift) standardDeviation = sqrt ((sumOfSquares / length) - (sum / length) ^ 2)
These will all execute with a single reduction kernel and a single map to summarise (combine) the results.
Instances
Functor (Fold i) Source # | |
Applicative (Fold i) Source # | |
Floating b => Floating (Fold a (Exp b)) Source # | |
Defined in Data.Array.Accelerate.Data.Fold exp :: Fold a (Exp b) -> Fold a (Exp b) # log :: Fold a (Exp b) -> Fold a (Exp b) # sqrt :: Fold a (Exp b) -> Fold a (Exp b) # (**) :: Fold a (Exp b) -> Fold a (Exp b) -> Fold a (Exp b) # logBase :: Fold a (Exp b) -> Fold a (Exp b) -> Fold a (Exp b) # sin :: Fold a (Exp b) -> Fold a (Exp b) # cos :: Fold a (Exp b) -> Fold a (Exp b) # tan :: Fold a (Exp b) -> Fold a (Exp b) # asin :: Fold a (Exp b) -> Fold a (Exp b) # acos :: Fold a (Exp b) -> Fold a (Exp b) # atan :: Fold a (Exp b) -> Fold a (Exp b) # sinh :: Fold a (Exp b) -> Fold a (Exp b) # cosh :: Fold a (Exp b) -> Fold a (Exp b) # tanh :: Fold a (Exp b) -> Fold a (Exp b) # asinh :: Fold a (Exp b) -> Fold a (Exp b) # acosh :: Fold a (Exp b) -> Fold a (Exp b) # atanh :: Fold a (Exp b) -> Fold a (Exp b) # log1p :: Fold a (Exp b) -> Fold a (Exp b) # expm1 :: Fold a (Exp b) -> Fold a (Exp b) # | |
Fractional b => Fractional (Fold a (Exp b)) Source # | |
Num b => Num (Fold a (Exp b)) Source # | |
Defined in Data.Array.Accelerate.Data.Fold (+) :: Fold a (Exp b) -> Fold a (Exp b) -> Fold a (Exp b) # (-) :: Fold a (Exp b) -> Fold a (Exp b) -> Fold a (Exp b) # (*) :: Fold a (Exp b) -> Fold a (Exp b) -> Fold a (Exp b) # negate :: Fold a (Exp b) -> Fold a (Exp b) # abs :: Fold a (Exp b) -> Fold a (Exp b) # signum :: Fold a (Exp b) -> Fold a (Exp b) # fromInteger :: Integer -> Fold a (Exp b) # |