accelerate-blas 0.1.0.0 → 0.1.0.1
raw patch · 4 files changed
+13/−6 lines, 4 files
Files
- CHANGELOG.md +8/−1
- accelerate-blas.cabal +2/−2
- test/Hedgehog/Gen/Shape.hs +1/−1
- test/Similar.hs +2/−2
CHANGELOG.md view
@@ -6,6 +6,13 @@ project adheres to the [Haskell Package Versioning Policy (PVP)](https://pvp.haskell.org) -## 0.1.0.0 - 2017-09-21++## [0.1.0.1] - 2017-09-25+ * test-suite: build fix for ghc-8.2++## [0.1.0.0] - 2017-09-21 * First version. Released on an unsuspecting world.++[0.1.0.1]: https://github.com/tmcdonell/accelerate-blas/compare/0.1.0.0...0.1.0.1+[0.1.0.0]: https://github.com/tmcdonell/accelerate-blas/compare/4c89f4e6c62b8de3f37855ab2e4d27046b2495b2...0.1.0.0
accelerate-blas.cabal view
@@ -1,5 +1,5 @@ name: accelerate-blas-version: 0.1.0.0+version: 0.1.0.1 synopsis: Numeric Linear Algebra in Accelerate description: Linear systems, matrix decompositions, and other numerical computations for@@ -183,7 +183,7 @@ source-repository this type: git- tag: 0.1.0.0+ tag: 0.1.0.1 location: https://github.com/tmcdonell/accelerate-blas -- vim: nospell
test/Hedgehog/Gen/Shape.hs view
@@ -12,7 +12,7 @@ -- Generate a randomly sized shape of the given dimensionality -- class GenShape sh where- genShape :: Monad m => Range Int -> Gen sh+ genShape :: Range Int -> Gen sh instance GenShape Z where genShape _ = return Z
test/Similar.hs view
@@ -1,5 +1,5 @@-{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE DefaultSignatures #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE TypeOperators #-} module Similar where@@ -12,7 +12,7 @@ infix 4 ~~~-(~~~) :: (MonadTest m, Similar a, Show (Sim a), HasCallStack) => a -> a -> m ()+(~~~) :: (MonadTest m, Similar a, Show a, HasCallStack) => a -> a -> m () a ~~~ b = withFrozenCallStack $ Sim a === Sim b