-
Notifications
You must be signed in to change notification settings - Fork 0
/
spl.cabal
283 lines (254 loc) · 7.56 KB
/
spl.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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
name: spl
version: 0.1
cabal-version: >= 1.10
license: BSD3
license-file: LICENSE
copyright: (c) 2016-2020 Drexel University
author: Geoffrey Mainland <[email protected]>
maintainer: Geoffrey Mainland <[email protected]>
stability: alpha
homepage: https://lambda.cs.drexel.edu/gitlab/mainland/spl
category: Language
synopsis: SPL language.
tested-with: GHC==8.6.5
description:
A Haskell implementation of the SPL language.
build-type: Simple
library
default-language: Haskell2010
exposed-modules:
Data.Complex.Cyclotomic
Data.FlagSet
IHaskell.Display.Spiral
Spiral
Spiral.Array
Spiral.Array.Base
Spiral.Array.Computable
Spiral.Array.Mutable
Spiral.Array.Operators.Mapping
Spiral.Array.Operators.Matrix
Spiral.Array.Operators.Permute
Spiral.Array.Operators.Reduction
Spiral.Array.Repr.Complex
Spiral.Array.Repr.Compute
Spiral.Array.Repr.Concrete
Spiral.Array.Repr.Hidden
Spiral.Array.Repr.Slice
Spiral.Array.Repr.Transform
Spiral.Array.Repr.Virtual
Spiral.Array.Shape
Spiral.Backend.C
Spiral.Backend.C.CExp
Spiral.Backend.C.Code
Spiral.Backend.C.Monad
Spiral.Backend.C.Util
Spiral.Config
Spiral.Convolution
Spiral.Convolution.AgarwalCooley
Spiral.Convolution.ConvolutionTheorem
Spiral.Convolution.Core
Spiral.Convolution.SplitNesting
Spiral.Convolution.Standard
Spiral.Convolution.Tensor
Spiral.Convolution.ToomCook
Spiral.Convolution.Winograd
Spiral.Driver
Spiral.Driver.Opts
Spiral.Exp
Spiral.FFT.Bluestein
Spiral.FFT.CooleyTukey
Spiral.FFT.GoodThomas
Spiral.FFT.Rader
Spiral.FFT.Winograd
Spiral.Globals
Spiral.Monad
Spiral.NumberTheory
Spiral.OpCount
Spiral.Permutation
Spiral.Program
Spiral.Program.Monad
Spiral.Program.Syntax
Spiral.RootOfUnity
Spiral.SPL
Spiral.SPL.Run
Spiral.Search
Spiral.Search.FFTBreakdowns
Spiral.Search.Monad
Spiral.Search.OpCount
Spiral.Search.SFKT
Spiral.Util.Pretty
Spiral.Util.Pretty.Maple
Spiral.Util.Pretty.LaTeX
Spiral.Util.Uniq
other-modules:
Data.Heterogeneous
Data.Modular.Instances
Spiral.Driver.Monad
Spiral.Util.Name
Spiral.Util.Trace
build-depends:
arithmoi >= 0.5 && < 0.11,
base >= 4.9 && < 4.13,
bytestring >= 0.9 && < 0.11,
containers >= 0.5 && < 0.7,
exception-mtl >= 0.3 && < 0.5,
exception-transformers >= 0.3 && < 0.5,
ihaskell >= 0.10 && < 0.11,
language-c-quote >= 0.12.2 && < 0.13,
logict >= 0.6 && < 0.8,
mainland-pretty >= 0.7 && < 0.8,
matrix >= 0.3 && < 0.4,
modular-arithmetic >= 1.2.1.2 && < 1.3,
mtl >= 2.0 && < 3,
poly >= 0.3.1.0 && < 4,
primitive >= 0.6 && < 0.8,
random >= 1.1 && < 1.2,
ref-fd >= 0.3 && < 0.5,
semirings >= 0.4.2 && < 0.5,
srcloc >= 0.5 && < 0.6,
symbol >= 0.2.4 && < 0.3,
text >= 1.1 && < 1.3,
transformers >= 0.2 && < 0.6,
vector >= 0.11 && < 0.13,
HaTeX >= 3.21 && < 3.22,
QuickCheck >= 2.8 && < 2.14
ghc-options:
-Wall -fno-warn-name-shadowing -O2
if impl(ghc >= 8.0)
ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances
else
-- provide/emulate `Control.Monad.Fail` and `Data.Semigroups` API for pre-GHC8
build-depends: fail == 4.9.*, semigroups == 0.18.*
executable dftgen
main-is: DFTGen.hs
default-language: Haskell2010
hs-source-dirs:
examples
build-depends:
spl,
base >= 4.9 && < 4.13,
mainland-pretty >= 0.7 && < 0.8
executable maple
main-is: Maple.hs
default-language: Haskell2010
hs-source-dirs:
examples
build-depends:
spl,
base >= 4.9 && < 4.13,
mainland-pretty >= 0.7 && < 0.8
executable opcount
main-is: OpCount.hs
default-language: Haskell2010
hs-source-dirs:
examples
build-depends:
spl,
base >= 4.9 && < 4.13,
containers >= 0.5 && < 0.7,
mainland-pretty >= 0.7 && < 0.8
executable opcounts
main-is: OpCounts.hs
default-language: Haskell2010
hs-source-dirs:
examples
build-depends:
spl,
base >= 4.9 && < 4.13,
containers >= 0.5 && < 0.7,
mainland-pretty >= 0.7 && < 0.8
executable search
main-is: Search.hs
default-language: Haskell2010
hs-source-dirs:
examples
build-depends:
spl,
base >= 4.9 && < 4.13,
containers >= 0.5 && < 0.7,
mainland-pretty >= 0.7 && < 0.8
executable voronenko
main-is: Voronenko.hs
default-language: Haskell2010
hs-source-dirs:
examples
build-depends:
spl,
base >= 4.9 && < 4.13,
mainland-pretty >= 0.7 && < 0.8,
transformers >= 0.2 && < 0.6
test-suite full
type: exitcode-stdio-1.0
main-is: Main.hs
default-language: Haskell2010
hs-source-dirs:
src/test
other-modules:
Test.Codegen
Test.Convolution
Test.FFTW
Test.Factorization
Test.Gen
Test.Instances
Test.Opcount
Test.SPL
build-depends:
spl,
base >= 4.9 && < 4.13,
bytestring >= 0.9 && < 0.11,
directory >= 1.3 && < 1.4,
filepath >= 1.4 && < 1.5,
hspec >= 2.5 && < 2.8,
hspec-core >= 2.5 && < 2.8,
libltdl >= 0.1.1.2 && < 0.2,
mainland-pretty >= 0.7 && < 0.8,
modular-arithmetic >= 1.2.1.2 && < 1.3,
process >= 1.4 && < 1.7,
temporary >= 1.3 && < 1.4,
text >= 1.1 && < 1.3,
transformers >= 0.2 && < 0.6,
vector >= 0.11 && < 0.13,
vector-fftw >= 0.1 && < 0.2,
HUnit >= 1.3 && < 1.7,
QuickCheck >= 2.8 && < 2.14
ghc-options:
-Wall -fno-warn-name-shadowing -O2
test-suite quick
type: exitcode-stdio-1.0
main-is: Quick.hs
default-language: Haskell2010
hs-source-dirs:
src/test
other-modules:
Test.Codegen
Test.Convolution
Test.FFTW
Test.Factorization
Test.Gen
Test.Instances
Test.Opcount
Test.SPL
build-depends:
spl,
base >= 4.9 && < 4.13,
bytestring >= 0.9 && < 0.11,
directory >= 1.3 && < 1.4,
filepath >= 1.4 && < 1.5,
hspec >= 2.5 && < 2.8,
hspec-core >= 2.5 && < 2.8,
libltdl >= 0.1.1.2 && < 0.2,
mainland-pretty >= 0.7 && < 0.8,
modular-arithmetic >= 1.2.1.2 && < 1.3,
process >= 1.4 && < 1.7,
temporary >= 1.3 && < 1.4,
text >= 1.1 && < 1.3,
transformers >= 0.2 && < 0.6,
vector >= 0.11 && < 0.13,
vector-fftw >= 0.1 && < 0.2,
HUnit >= 1.3 && < 1.7,
QuickCheck >= 2.8 && < 2.14
ghc-options:
-Wall -fno-warn-name-shadowing -O2
source-repository head
type: git
location: https://lambda.cs.drexel.edu/gitlab/mainland/spl.git