diff --git a/lol-benches/CHANGES.md b/lol-benches/CHANGES.md index d42be113..69551837 100644 --- a/lol-benches/CHANGES.md +++ b/lol-benches/CHANGES.md @@ -1,6 +1,10 @@ Changelog for lol-benches project ================================ +0.0.0.3 +----- + * Removed imports of Simple*Benches. + 0.0.0.2 ----- * Import Control.Monad.Random hiding `lift` to support MonadRandom-0.5.1. diff --git a/lol-benches/Crypto/Lol/Benchmarks/Standard.hs b/lol-benches/Crypto/Lol/Benchmarks/Standard.hs index e274c915..6c8159e0 100644 --- a/lol-benches/Crypto/Lol/Benchmarks/Standard.hs +++ b/lol-benches/Crypto/Lol/Benchmarks/Standard.hs @@ -25,9 +25,9 @@ Default high-level benchmarks for Tensor implementations. module Crypto.Lol.Benchmarks.Standard where import Crypto.Lol.Benchmarks -import Crypto.Lol.Benchmarks.SimpleTensorBenches +--import Crypto.Lol.Benchmarks.SimpleTensorBenches import Crypto.Lol.Benchmarks.TensorBenches -import Crypto.Lol.Benchmarks.SimpleUCycBenches +--import Crypto.Lol.Benchmarks.SimpleUCycBenches import Crypto.Lol.Benchmarks.UCycBenches import Crypto.Lol.Benchmarks.CycBenches import Crypto.Lol.Factored @@ -66,9 +66,9 @@ oneIdxBenches :: forall t m r gen . _ => Proxy '(m,r) -> Proxy t -> Proxy gen -> oneIdxBenches _ _ pgen = let ptmr = Proxy :: Proxy '(t,m,r) in benchGroup (showType ptmr) $ (($ pgen) . ($ ptmr)) <$> [ - simpleTensorBenches1, + --simpleTensorBenches1, tensorBenches1, - simpleUCycBenches1, + --simpleUCycBenches1, ucycBenches1, cycBenches1 ] @@ -79,9 +79,9 @@ twoIdxBenches :: forall t m m' r . _ => Proxy '(m,m',r) -> Proxy t -> IO Benchma twoIdxBenches _ _ = let ptmr = Proxy :: Proxy '(t,m,m',r) in benchGroup (showType ptmr) $ ($ ptmr) <$> [ - simpleTensorBenches2, + --simpleTensorBenches2, tensorBenches2, - simpleUCycBenches2, + --simpleUCycBenches2, ucycBenches2, cycBenches2 ] diff --git a/lol-benches/lol-benches.cabal b/lol-benches/lol-benches.cabal index e758f7f2..d4e8c46c 100644 --- a/lol-benches/lol-benches.cabal +++ b/lol-benches/lol-benches.cabal @@ -5,7 +5,7 @@ name: lol-benches -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change -version: 0.0.0.2 +version: 0.0.0.3 synopsis: A library for benchmarking . homepage: https://github.com/cpeikert/Lol Bug-Reports: https://github.com/cpeikert/Lol/issues