-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathclash-benchmark.cabal
59 lines (52 loc) · 1.83 KB
/
clash-benchmark.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
55
56
57
58
59
name: clash-benchmark
version: 0.0.0
synopsis: Criterion based Clash benchmark
-- description:
homepage: https://clash-lang.org/
license: BSD2
author: Leon Schoorl
category: Testing
build-type: Simple
cabal-version: >=1.10
library
HS-Source-Dirs: common
default-language: Haskell2010
ghc-options: -O2 -Wall -Wcompat
Exposed-Modules: BenchmarkCommon
build-depends: base,
containers,
ghc,
mtl,
text,
unordered-containers,
clash-ghc,
clash-lib,
clash-prelude
if impl(ghc >= 9.0.0)
build-depends: ghc-boot
executable clash-benchmark-normalization
main-is: benchmark-normalization.hs
default-language: Haskell2010
ghc-options: -O2 -Wall -Wcompat -threaded -rtsopts "-with-rtsopts=-N -A128m"
build-depends: base,
containers,
criterion,
deepseq,
directory,
filepath,
text,
unordered-containers,
clash-benchmark,
clash-ghc,
clash-lib,
clash-prelude
executable clash-benchmark-concurrency
main-is: benchmark-concurrency.hs
default-language: Haskell2010
ghc-options: -O2 -Wall -Wcompat -threaded -rtsopts "-with-rtsopts=-N -A128m"
build-depends: base,
criterion,
time,
clash-lib,
clash-ghc,
clash-benchmark