forked from tweag/monad-bayes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonad-bayes.cabal
250 lines (242 loc) · 9.05 KB
/
monad-bayes.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
name: monad-bayes
version: 0.1.0.0
synopsis: A library for probabilistic programming in Haskell.
description: Please see README.md
homepage: http://github.com/adscib/monad-bayes#readme
license: MIT
license-file: LICENSE
author: Adam Scibior
maintainer: [email protected]
copyright: 2015 Adam Scibior
category: Statistics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable example
hs-source-dirs: benchmark, models
main-is: Single.hs
build-depends: base
, monad-bayes
, log-domain
, vector
, containers
, mwc-random
, time
, optparse-applicative
default-language: Haskell2010
other-modules: LogReg
, HMM
, LDA
, Dice
library
hs-source-dirs: src
exposed-modules: Control.Monad.Bayes.Class
, Control.Monad.Bayes.Free
, Control.Monad.Bayes.Sampler
, Control.Monad.Bayes.Weighted
, Control.Monad.Bayes.Sequential
, Control.Monad.Bayes.Population
, Control.Monad.Bayes.Traced.Static
, Control.Monad.Bayes.Traced.Dynamic
, Control.Monad.Bayes.Traced.Basic
, Control.Monad.Bayes.Traced
, Control.Monad.Bayes.Enumerator
, Control.Monad.Bayes.Helpers
, Control.Monad.Bayes.Inference.SMC
, Control.Monad.Bayes.Inference.RMSMC
, Control.Monad.Bayes.Inference.PMMH
, Control.Monad.Bayes.Inference.SMC2
other-modules: Control.Monad.Bayes.Traced.Common
build-depends: base >= 4.7 && < 5
, containers
, mtl
, transformers
, math-functions
, monad-coroutine
, mwc-random
, safe
, vector
, ieee754
, free
, statistics
, log-domain
ghc-options: -Wall -fno-warn-redundant-constraints -O2
default-language: Haskell2010
default-extensions: RankNTypes
, GeneralizedNewtypeDeriving
, StandaloneDeriving
, TypeFamilies
, FlexibleContexts
, FlexibleInstances
, TupleSections
, MultiParamTypeClasses
, GADTs
other-extensions: ScopedTypeVariables
, DeriveFunctor
test-suite monad-bayes-test
type: exitcode-stdio-1.0
hs-source-dirs: test, models
main-is: Spec.hs
build-depends: base
, monad-bayes
, hspec
, QuickCheck
, ieee754
, mtl
, math-functions
, transformers
, log-domain
, vector
ghc-options: -Wall -threaded -rtsopts "-with-rtsopts=-N -M1g -K1g"
default-language: Haskell2010
other-modules: Sprinkler,
TestEnumerator,
TestPopulation,
TestInference,
TestSequential,
TestWeighted
-- StrictlySmallerSupport
benchmark ssm-bench
type: exitcode-stdio-1.0
hs-source-dirs: models
, benchmark
build-depends: base
, monad-bayes
-- , mtl
-- , transformers
-- , math-functions
-- , hmatrix
-- , statistics
-- , vector
-- , Chart
-- , Chart-cairo
-- , optparse-applicative
-- , directory
default-language: Haskell2010
default-extensions: RankNTypes
-- Main benchmark file should import all the modules to be
-- maintained. Those modules should also be listed in
-- `other-modules`.
main-is: SSM.hs
-- List all models we want to watch for changes.
-- DO NOT list modules that don't compile.
-- They make it impossible to run `stack ghci`.
other-modules: NonlinearSSM
benchmark speed-bench
type: exitcode-stdio-1.0
hs-source-dirs: models
, benchmark
build-depends: base
, monad-bayes
, criterion
, abstract-par
, log-domain
, vector
, mwc-random
, containers
, process
ghc-options: -rtsopts "-with-rtsopts=-M1g -K1g"
default-language: Haskell2010
default-extensions: RankNTypes
-- Main benchmark file should import all the modules to be
-- maintained. Those modules should also be listed in
-- `other-modules`.
main-is: Speed.hs
-- List all models we want to watch for changes.
-- DO NOT list modules that don't compile.
-- They make it impossible to run `stack ghci`.
other-modules: LogReg
, HMM
, LDA
-- benchmark monad-bayes-bench
-- type: exitcode-stdio-1.0
-- hs-source-dirs: models
-- build-depends: base
-- , monad-bayes
-- , mtl
-- , transformers
-- , math-functions
-- , hmatrix
-- , statistics
-- , vector
-- , Chart
-- , Chart-cairo
-- , optparse-applicative
-- , directory
-- default-language: Haskell2010
-- -- Main benchmark file should import all the modules to be
-- -- maintained. Those modules should also be listed in
-- -- `other-modules`.
-- main-is: BenchAll.hs
-- -- List all models we want to watch for changes.
-- -- DO NOT list modules that don't compile.
-- -- They make it impossible to run `stack ghci`.
-- other-modules: Sprinkler,
-- BetaBin,
-- Dice,
-- Gamma,
-- HMM,
-- DPmixture,
-- StrictlySmallerSupport,
-- Plotting
-- benchmark lgss-benchmark
-- type: exitcode-stdio-1.0
-- hs-source-dirs: models
-- build-depends: base
-- , monad-bayes
-- , transformers
-- , mtl
-- , statistics
-- , vector
-- , Chart
-- , Chart-cairo
-- , optparse-applicative
-- , directory
-- default-language: Haskell2010
-- -- Main benchmark file should import all the modules to be
-- -- maintained. Those modules should also be listed in
-- -- `other-modules`.
-- main-is: LGSS.hs
-- -- List all models we want to watch for changes.
-- -- DO NOT list modules that don't compile.
-- -- They make it impossible to run `stack ghci`.
-- other-modules: Plotting
--
-- benchmark performance
-- type: exitcode-stdio-1.0
-- hs-source-dirs: models
-- build-depends: base
-- , monad-bayes
-- , transformers
-- , mtl
-- , vector
-- , criterion
-- , ad
-- , mwc-random
-- , statistics
-- , Chart
-- , Chart-cairo
-- , directory
-- , optparse-applicative
-- , abstract-par
-- , containers
-- , hmatrix
-- default-language: Haskell2010
-- -- Main benchmark file should import all the modules to be
-- -- maintained. Those modules should also be listed in
-- -- `other-modules`.
-- main-is: Benchmarks.hs
-- -- List all models we want to watch for changes.
-- -- DO NOT list modules that don't compile.
-- -- They make it impossible to run `stack ghci`.
-- other-modules: Plotting,
-- NonlinearSSM,
-- HMM,
-- LogReg,
-- LDA
-- default-extensions: RankNTypes
-- , TypeFamilies
-- , AllowAmbiguousTypes
source-repository head
type: git
location: https://github.com/adscib/monad-bayes