Skip to content

Commit

Permalink
Update versions. Remove deprecated benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
lehins committed Aug 7, 2022
1 parent d7da78a commit 33df063
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- resolver: lts-19
ghc: 9.0.2
- resolver: nightly
ghc: 9.2.3
ghc: 9.2.4
exclude:
- resolver: lts-14
os: windows-latest # OOM on building Test.Massiv.VectorSpec
Expand Down
2 changes: 0 additions & 2 deletions massiv-bench/bench/Iter.hs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,6 @@ iterFullBench !sz =
(show (typeOf sz))
[ bench "RowMajor" $ whnfIO $
stToIO $ iterTargetFullST_ defRowMajor trivialScheduler_ 0 sz seqAction
, bench "iterM_" $ whnfIO $
iterM_ zeroIndex (unSz sz) oneIndex (<) (\ix -> ix `seq` pure ())
, bench "iterA_" $ whnfIO $
iterA_ zeroIndex (unSz sz) oneIndex (<) (\ix -> ix `seq` pure ())
, bench "iterFullA_" $ whnfIO $
Expand Down
7 changes: 4 additions & 3 deletions massiv/massiv.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: massiv
version: 1.1.0.0
version: 1.0.2.0
synopsis: Massiv (Массив) is an Array Library.
description: Multi-dimensional Arrays with fusion, stencils and parallel computation.
homepage: https://github.com/lehins/massiv
Expand All @@ -19,7 +19,8 @@ tested-with: GHC == 8.0.2
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.1
, GHC == 9.0.2
, GHC == 9.2.4

flag unsafe-checks
description: Enable all the bounds checks for unsafe functions at the cost of
Expand Down Expand Up @@ -82,7 +83,7 @@ library
, bytestring
, deepseq
, exceptions
, scheduler >= 2.0.0 && < 3.0.0
, scheduler >= 2.0.0 && < 3
, primitive >= 0.7.1.0
, random >= 1.2.0
, unliftio-core
Expand Down

0 comments on commit 33df063

Please sign in to comment.