packages feed

massiv 0.3.2.0 → 0.3.2.1

raw patch · 3 files changed

+10/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.3.2.1++* Fix `sqrtA` function: [#76](https://github.com/lehins/massiv/pull/76)+ # 0.3.2  * Exported `withMArrayS`@@ -51,6 +55,10 @@ * Addition of `makeUnsafeStencil` * `Window` now has an `windowUnrollIx2` field. * Addition of `insertWindow` and `dropWindow`++# 0.2.8.1++* Fix `sqrtA` function. Backport of [#76](https://github.com/lehins/massiv/pull/76)  # 0.2.8 
massiv.cabal view
@@ -1,5 +1,5 @@ name:                massiv-version:             0.3.2.0+version:             0.3.2.1 synopsis:            Massiv (Массив) is an Array Library. description:         Multi-dimensional Arrays with fusion, stencils and parallel computation. homepage:            https://github.com/lehins/massiv
src/Data/Massiv/Array/Numeric.hs view
@@ -245,7 +245,7 @@ sqrtA   :: (Source r ix e, Floating e)   => Array r ix e -> Array D ix e-sqrtA = liftArray exp+sqrtA = liftArray sqrt {-# INLINE sqrtA #-}  logA