-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhaskell-image-processing-benchmark.cabal
More file actions
37 lines (36 loc) · 1.71 KB
/
haskell-image-processing-benchmark.cabal
File metadata and controls
37 lines (36 loc) · 1.71 KB
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
name: haskell-image-processing-benchmark
version: 0.1.0.0
synopsis: Benchmark different Haskell image processing libraries
-- description:
license: BSD3
license-file: LICENSE
author: Philipp Schuster
maintainer: pschuster@uni-koblenz.de
-- copyright:
category: Graphics
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable haskell-image-processing-benchmark
main-is: Main.hs
other-modules: HaskellImageProcessingBenchmark.Friday,
HaskellImageProcessingBenchmark.UnmHip,
HaskellImageProcessingBenchmark.Yarr,
HaskellImageProcessingBenchmark.Repa,
HaskellImageProcessingBenchmark.OpenCV
-- other-extensions:
build-depends: base >=4.6 && <4.7,
criterion ==1.0.2.0,
friday ==0.1.5,
unm-hip ==0.3.1.7,
yarr ==1.3.2,
yarr-image-io ==1.3.0,
repa ==3.2.3.3,
repa-devil ==0.3.2.2,
repa-algorithms ==3.2.4.1,
deepseq ==1.3.0.2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -rtsopts -with-rtsopts=-N -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funbox-strict-fields -fexpose-all-unfoldings -funfolding-keeness-factor1000 -fsimpl-tick-factor=500 -fllvm -optlo-O3
c-sources: cbits/haskell_image_processing_benchmark_opencv.c
extra-libraries: opencv_core,opencv_highgui,opencv_imgproc