-
Notifications
You must be signed in to change notification settings - Fork 11
/
bench.cabal
54 lines (50 loc) · 1.39 KB
/
bench.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: bench
version: 0
build-type: Simple
cabal-version: >=1.10
library
build-depends: base
default-language: Haskell2010
test-suite space
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -O2
main-is: Space.hs
other-modules: Common
build-depends: base
, weigh
, deepseq
, containers
, unordered-containers
, bytestring-trie
, bytestring
, random
, hashtables
benchmark time
default-language: Haskell2010
type: exitcode-stdio-1.0
ghc-options: -Wall -O2 -rtsopts
main-is: Time.hs
other-modules: Common
build-depends: base
, bytestring
, ghc-prim
, criterion
, deepseq
, containers
, unordered-containers
, bytestring-trie
, random, directory
, hashtables
executable report
default-language: Haskell2010
ghc-options: -Wall -O2 -rtsopts
main-is: Report.hs
build-depends: base
, bytestring, directory
, vector
, ghc-prim
, criterion
, deepseq
, containers
, csv