forked from robstewart57/hdph-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhdph-rs.cabal
257 lines (248 loc) · 10.2 KB
/
hdph-rs.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
251
252
253
254
255
256
257
name: hdph-rs
version: 0.0.1
synopsis: A Reliable Scheduling extension to Haskell distributed parallel Haskell
description: Haskell distributed parallel Haskell with Reliable
Scheduling (HdpH-RS) is a Haskell DSL for
distributed-memory parallelism and fault tolerance,
implemented entirely in Haskell (as supported by GHC).
HdpH-RS is a derivation of HdpH
<https://github.com/PatrickMaier/HdpH> and is a
research tool for scalable and reliable scheduling on
HPC platforms. The HdpH-RS design, validation and
implementation is described in full in my PhD thesis
\"Reliable Massively Parallel Symbolic Computing: Fault
Tolerance for a Distributed Haskell\"
<http://www.macs.hw.ac.uk/~rs46/phd-thesis.html> .
.
The contributions of HdpH-RS include:
.
* An extension to the HdpH language operational
semantics for fault tolerance in HdpH-RS has been
formulated (Chapter 3).
.
* The design of a fault tolerant work stealing
scheduling protocol has been abstracted in Promela
and verified with the SPIN model checker (Chapter 4),
and implemented in Haskell (Chapter 5). The Promela
model:
<https://github.com/robstewart57/phd-thesis/blob/master/spin_model/hdph_scheduler.pml>.
.
* The scalability of HdpH-RS has been measured up to
1400 cores on HECToR, a UK computing resource.
HdpH-RS fault tolerance has been tested with Chaos
Monkey unit tests on a Beowulf commodity cluster
(Chapter 6).
.
This repository is unlikely to receive further commits.
Go to <https://github.com/PatrickMaier/HdpH> to
download the upstream version of HdpH.
homepage: https://github.com/robstewart57/hdph-rs
license: BSD3
license-file: LICENSE
author: Rob Stewart <robstewart57@gmail.com>,
Patrick Maier <C.Patrick.Maier@gmail.com>
maintainer: Rob Stewart <robstewart57@gmail.com>
stability: experimental
category: Control, Parallelism, Distributed Computing, Monads
tested-with: GHC == 7.4.1 || == 7.6.2
build-type: Simple
cabal-version: >= 1.8
Library
exposed-modules: Control.Parallel.HdpH,
Control.Parallel.HdpH.Conf,
Control.Parallel.HdpH.Strategies
Control.Parallel.HdpH.FTStrategies
other-modules: Control.Parallel.HdpH.Internal.Comm,
Control.Parallel.HdpH.Internal.Data.Deque,
Control.Parallel.HdpH.Internal.Data.Sem,
Control.Parallel.HdpH.Internal.Type.GRef,
Control.Parallel.HdpH.Internal.IVar,
Control.Parallel.HdpH.Internal.Location,
Control.Parallel.HdpH.Internal.Misc,
Control.Parallel.HdpH.Internal.Scheduler,
Control.Parallel.HdpH.Internal.Sparkpool,
Control.Parallel.HdpH.Internal.State.GRef,
Control.Parallel.HdpH.Internal.State.Location,
Control.Parallel.HdpH.Internal.Threadpool,
Control.Parallel.HdpH.Internal.Type.GRef,
Control.Parallel.HdpH.Internal.Type.Location,
Control.Parallel.HdpH.Internal.Type.Par
Control.Parallel.HdpH.Internal.Type.Msg,
Control.Parallel.HdpH.Internal.Type.ToClosureInstances
build-depends: template-haskell < 2.9,
array,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.5.0.0 && < 0.6,
deepseq >= 1.1 && < 2,
HUnit,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
split,
time >= 1.2 && < 2,
hdph-closure == 0.0.1,
ghc-prim,
unix
hs-source-dirs: src
ghc-options: -O2
Executable hello
main-is: hello.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
deepseq >= 1.1 && < 2,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
time >= 1.2 && < 2,
hdph-rs,
hdph-closure == 0.0.1
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2
Executable fib
main-is: fib.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
deepseq >= 1.1 && < 2,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
time >= 1.2 && < 2,
hdph-rs,
hdph-closure == 0.0.1
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2
Executable sumeuler
main-is: sumeuler.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
deepseq >= 1.1 && < 2,
monad-par,
monad-par-extras,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
split,
time >= 1.2 && < 2,
hdph-rs,
hdph-closure == 0.0.1
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2
Executable nbody
main-is: nbody.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
cryptohash,
deepseq >= 1.1 && < 2,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
time >= 1.2 && < 2,
hdph-rs,
hdph-closure == 0.0.1
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2
Executable summatory-liouville
main-is: summatory-liouville.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
deepseq >= 1.1 && < 2,
monad-par,
monad-par-extras,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
time >= 1.2 && < 2,
hdph-rs,
hdph-closure == 0.0.1,
unix
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2
Executable queens
main-is: queens.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
deepseq >= 1.1 && < 2,
monad-par,
monad-par-extras,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
time >= 1.2 && < 2,
hdph-rs,
hdph-closure == 0.0.1
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2 -rtsopts
Executable mandel
main-is: mandel.hs
build-depends: template-haskell,
base >= 4 && < 5,
binary < 0.7,
vector-binary-instances,
bytestring == 0.10.*,
containers >= 0.1 && < 0.6,
deepseq >= 1.1 && < 2,
ghc-prim,
monad-par,
monad-par-extras,
mtl >= 2 && < 3,
network == 2.4.*,
network-info == 0.2.*,
network-multicast >= 0.0.7 && < 0.1,
network-transport == 0.3.*,
network-transport-tcp == 0.3.*,
random >= 1 && < 2,
split,
time >= 1.2 && < 2,
vector,
hdph-rs,
hdph-closure == 0.0.1
hs-source-dirs: src/Test/HdpH
ghc-options: -threaded -O2