diff options
author | Tom Smeding <tom@tomsmeding.com> | 2025-02-20 10:11:57 +0100 |
---|---|---|
committer | Tom Smeding <tom@tomsmeding.com> | 2025-02-20 10:11:57 +0100 |
commit | fe3132304b6c25e5bebc9fb327e3ea5d6018be7a (patch) | |
tree | edbf62755eab8103c3f39ee7dfe2b0006692e857 /ad-dual.cabal | |
parent | 011bda94ea9ab0bdb43751d8d19963beb5a887a0 (diff) |
Attempt at a benchmark (crashes)
Diffstat (limited to 'ad-dual.cabal')
-rw-r--r-- | ad-dual.cabal | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ad-dual.cabal b/ad-dual.cabal index 09697f0..5d3ca39 100644 --- a/ad-dual.cabal +++ b/ad-dual.cabal @@ -8,6 +8,7 @@ build-type: Simple library exposed-modules: Numeric.ADDual + Numeric.ADDual.Internal other-modules: build-depends: base >= 4.14.3, @@ -28,3 +29,17 @@ test-suite test hs-source-dirs: test default-language: Haskell2010 ghc-options: -Wall + +benchmark bench + type: exitcode-stdio-1.0 + main-is: Main.hs + build-depends: + base, + ad-dual, + ad, + criterion, + deepseq, + vector + hs-source-dirs: bench + default-language: Haskell2010 + ghc-options: -Wall |