-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcgraytrace.cabal
113 lines (90 loc) · 3.66 KB
/
cgraytrace.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
-- Initial cgraytrace.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: cgraytrace
version: 0.1.0.1
synopsis: Simple raytracer made as an demonstration for CG^2 seminar (Sofia, Bulgaria)
-- description:
license: PublicDomain
-- license-file: LICENSE
author: Vassil Keremidchiev
maintainer: [email protected]
-- copyright:
category: Graphics
build-type: Simple
cabal-version: >=1.10
library
default-extensions: BangPatterns
, DeriveGeneric
, FlexibleInstances
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, RankNTypes
exposed-modules: BRDF
, Camera
, Geometry
, Light
, Material
, Math
, Raytracer
, Scene
build-depends: base,
deepseq,
JuicyPixels,
linear,
random,
parallel,
vector,
dimensional
hs-source-dirs: Lib
default-language: Haskell2010
ghc-options: -Wall -O2 -optc-O3 -funfolding-use-threshold=16
executable cgraytrace-srv
main-is: Main.hs
-- default-extensions:
build-depends: base
, cgraytrace
, yesod
, JuicyPixels
, tf-random
, mersenne-random-pure64
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -threaded -O2 -optc-O3 -funfolding-use-threshold=16 -with-rtsopts=-N
-- ghc-prof-options: -Wall -threaded -prof -fprof-auto -rtsopts -O2 -optc-O3 -funfolding-use-threshold=16 "-with-rtsopts=-N -p -s -h -i0.1"
-- ghc-prof-options: -prof -fprof-auto -rtsopts -with-rtsopts=-N
executable cgraytrace-exe
main-is: Main.hs
-- default-extensions:
build-depends: base
, cgraytrace
, JuicyPixels
, tf-random
, mersenne-random-pure64
, time
hs-source-dirs: App
default-language: Haskell2010
-- gen0+ collections are interleaved with non-GC. 8 threads maximum for parallel GC (larger give worse results on many machines).
ghc-options: -Wall -threaded -O3 -optc-O3 -funfolding-use-threshold=16 -rtsopts "-with-rtsopts=-N -A40m -qb0 -qn24"
executable cgraytrace_prof_thread
main-is: Main.hs
-- default-extensions:
build-depends: base
, cgraytrace
, JuicyPixels
, tf-random
, mersenne-random-pure64
, time
hs-source-dirs: App
default-language: Haskell2010
ghc-options: -Wall -threaded -O3 -optc-O3 -funfolding-use-threshold=16 -rtsopts -eventlog "-with-rtsopts=-N -A40m -qb0 -qn24 -ls -lf"
benchmark cgraytrace-bench
type: exitcode-stdio-1.0
main-is: MainBench.hs
build-depends: base
, cgraytrace
, tf-random
, mersenne-random-pure64
, criterion
hs-source-dirs: App
default-language: Haskell2010
ghc-options: -Wall -threaded -O3 -optc-O3 -funfolding-use-threshold=16 -rtsopts "-with-rtsopts=-N -A40m -qb0 -qn24"