packages feed

accelerate 0.12.1.0 → 0.12.2.0

raw patch · 1 files changed

+4/−4 lines, 1 filesdep ~containersdep ~ghc-primnew-uploaderPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: containers, ghc-prim

API changes (from Hackage documentation)

- Data.Array.Accelerate: rotate, rotateR, rotateL :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
- Data.Array.Accelerate: setBit, complementBit, clearBit :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
- Data.Array.Accelerate: shift, shiftR, shiftL :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: clearBit :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: complementBit :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: rotate :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: rotateL :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: rotateR :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: setBit :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: shift :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: shiftL :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t
+ Data.Array.Accelerate: shiftR :: (Elt t, IsIntegral t) => Exp t -> Exp Int -> Exp t

Files

accelerate.cabal view
@@ -1,5 +1,5 @@ Name:                   accelerate-Version:                0.12.1.0+Version:                0.12.2.0 Cabal-version:          >= 1.6 Tested-with:            GHC >= 7.0.3 Build-type:             Simple@@ -25,7 +25,7 @@                         Known bugs: <https://github.com/AccelerateHS/accelerate/issues>                         .                         * New in 0.12.1.0: CUDA backend support for Char and Bool; bug fixes-                        +                         * New in 0.12.0.0: Full sharing recovery in scalar expressions and array                             computations. Two new example applications in package accelerate-examples:                             Real-time Canny edge detection and fluid flow simulator (both including a@@ -95,8 +95,8 @@   Include-Dirs:         include   Build-depends:        array           >= 0.3 && < 0.5,                         base            == 4.*,-                        containers      >= 0.3 && < 0.5,-                        ghc-prim        == 0.2.*,+                        containers      >= 0.3 && < 0.6,+                        ghc-prim,                         pretty          >= 1.0 && < 1.2    if flag(more-pp)