-
Notifications
You must be signed in to change notification settings - Fork 27
/
accelerate-examples.cabal
827 lines (684 loc) · 21.6 KB
/
accelerate-examples.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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
name: accelerate-examples
version: 1.3.0.0
cabal-version: >=1.10
tested-with: GHC >= 8.6
build-type: Simple
synopsis: Examples using the Accelerate library
description:
Example programs using the Accelerate library. The aim is for this package to
evolve and be useful for both performance and regression testing.
.
Refer to the main /Accelerate/ package for more information:
<http://hackage.haskell.org/package/accelerate>
.
license: BSD3
license-file: LICENSE
author: The Accelerate Team
maintainer: Trevor L. McDonell <[email protected]>
homepage: https://github.com/AccelerateHS/accelerate-examples
bug-reports: https://github.com/AccelerateHS/accelerate/issues
category: Accelerate
stability: Experimental
extra-source-files:
README.md
data/matrices/README.md
examples/canny/README.md
examples/fluid/README.md
examples/hashcat/README.md
examples/kmeans/README.md
examples/mandelbrot/README.md
examples/pagerank/README.md
examples/ray/README.md
-- Flags that control features of the benchmark programs
--
flag gui
description: Enable gloss-based GUIs, where applicable. If not
enabled, the application always runs in benchmark mode.
default: True
flag ekg
description: Enable EKG remote monitoring server at <http://localhost:8000>
default: True
flag codespeed
description: Enable upload of results to benchmark server
default: False
-- Flags that control which Accelerate backends that are linked against
--
flag llvm-cpu
description: Enable the LLVM backend for multicore CPUs
default: True
flag llvm-ptx
description: Enable the LLVM PTX backend for NVIDIA GPUs
default: True
-- Flags to specify which programs to build
--
flag smvm
description: Sparse-matrix vector multiplication benchmark
default: True
flag crystal
description: A visualisation of a sum of waves in a plane
default: True
flag tunnel
description: The slit-scan effect creating a Doctor Who time vortex
default: True
flag canny
description: Canny edge detection benchmark
default: True
flag mandelbrot
description: A Mandelbrot fractal benchmark
default: True
flag julia
description: An interactive julia-set simulator
default: True
flag fluid
description: An interactive particle-based fluid simulation
default: True
flag nbody
description: Simulation of gravitational attraction between solid particles
default: True
flag smoothlife
description: A cellular automata simulation
default: True
flag hashcat
description: A "password recovery" application for MD5 cracking
default: True
flag fft
description: Simple FFT-based high/low-pass image filtering
default: True
flag pagerank
description: Implementation of the PageRank algorithm
default: True
flag quicksort
description: Implementation of the QuickSort algorithm
default: True
flag ray
description: A simple real-time ray tracer
default: True
flag kmeans
description: An implementation of k-means clustering in a plane
default: True
-- Test harness
-- ------------
library
default-language: Haskell2010
hs-source-dirs: lib
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, ansi-wl-pprint >= 0.6
, containers >= 0.5
, criterion >= 1.0
, directory >= 1.1
, fclabels >= 2.0
, HUnit >= 1.2
, QuickCheck >= 2.7
, test-framework >= 0.5
, test-framework-hunit >= 0.3
, test-framework-quickcheck2 >= 0.2
exposed-modules:
Data.Array.Accelerate.Examples.Internal
Other-modules:
Data.Array.Accelerate.Examples.Internal.Backend
Data.Array.Accelerate.Examples.Internal.Criterion
Data.Array.Accelerate.Examples.Internal.Criterion.Config
Data.Array.Accelerate.Examples.Internal.Interactive
Data.Array.Accelerate.Examples.Internal.Monitoring
Data.Array.Accelerate.Examples.Internal.ParseArgs
Data.Array.Accelerate.Examples.Internal.Report
Data.Array.Accelerate.Examples.Internal.TestFramework
Data.Array.Accelerate.Examples.Internal.TestFramework.Config
Data.Array.Accelerate.Examples.Internal.Util
ghc-options: -O2 -Wall
ghc-prof-options: -caf-all -auto-all
if flag(gui)
CPP-options: -DACCELERATE_ENABLE_GUI
if flag(llvm-cpu)
CPP-options: -DACCELERATE_LLVM_NATIVE_BACKEND
build-depends:
accelerate-llvm-native >= 1.3
if flag(llvm-ptx)
CPP-options: -DACCELERATE_LLVM_PTX_BACKEND
build-depends:
accelerate-llvm-ptx >= 1.3
if flag(ekg)
CPP-options: -DACCELERATE_ENABLE_EKG
if flag(codespeed)
CPP-options: -DACCELERATE_ENABLE_CODESPEED
build-depends:
aeson >= 0.8
, bytestring >= 0.10
, HTTP >= 4000.2
, http-types >= 0.8
, network >= 2.5
, process >= 1.0
, statistics >= 0.13
, template-haskell >= 2.2
, text >= 0.11
, time >= 1.4
other-modules:
Data.Array.Accelerate.Examples.Internal.Codespeed
Data.Array.Accelerate.Examples.Internal.TH
-- Sparse matrix vector multiplication
-- -----------------------------------
executable accelerate-smvm
default-language: Haskell2010
hs-source-dirs: examples/smvm
main-is: Main.hs
other-modules: Config Matrix SMVM
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if impl(ghc >= 7.6)
ghc-options: -fsimpl-tick-factor=130
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(smvm)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-io-vector >= 0.1
, fclabels >= 2.0
, matrix-market-attoparsec >= 0.1
, mwc-random >= 0.8
, scientific >= 0.3
, vector >= 0.7
, vector-algorithms >= 0.4
-- A quasicrystal demo as the sum of waves in a plane
-- --------------------------------------------------
executable accelerate-crystal
default-language: Haskell2010
hs-source-dirs: examples/crystal
main-is: Main.hs
other-modules: Config
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(crystal)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, colour-accelerate >= 0.1
, fclabels >= 2.0
, gloss-raster-accelerate >= 2.0
-- The slit-scan effect creating a Doctor Who time vortex
-- ------------------------------------------------------
executable accelerate-tunnel
default-language: Haskell2010
hs-source-dirs: examples/tunnel
main-is: Main.hs
other-modules: Config
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(tunnel)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, fclabels >= 2.0
, gloss-raster-accelerate >= 2.0
, lens-accelerate >= 0.1
, linear-accelerate >= 0.3
-- Image edge detection
-- --------------------
executable accelerate-canny
default-language: Haskell2010
hs-source-dirs: examples/canny/src-acc
main-is: Main.hs
other-modules: Config Canny Wildfire
ghc-options:
-Wall
-threaded
-O2
-fmax-simplifier-iterations=20
-fsimplifier-phases=3
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(canny)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-io-bmp >= 0.1
, accelerate-io-repa >= 0.1
, colour-accelerate >= 0.1
, fclabels >= 2.0
, repa >= 3.1
, repa-io >= 3.1
, vector >= 0.7
-- A simple mandelbrot generator
-- -----------------------------
executable accelerate-mandelbrot
default-language: Haskell2010
hs-source-dirs: examples/mandelbrot
main-is: Main.hs
other-modules: Config Mandel World
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(mandelbrot)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-io-bmp >= 0.1
, colour-accelerate >= 0.1
, fclabels >= 2.0
, gloss >= 1.7
, gloss-accelerate >= 2.0
-- A julia set generator
-- ---------------------
executable accelerate-julia
default-language: Haskell2010
hs-source-dirs: examples/julia
main-is: Main.hs
other-modules: Config Julia Palette World
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(julia)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, colour-accelerate >= 0.1
, fclabels >= 2.0
, gloss >= 1.7
, gloss-accelerate >= 2.0
-- A stable fluid simulation
-- -------------------------
executable accelerate-fluid
default-language: Haskell2010
hs-source-dirs: examples/fluid/src-acc
main-is: Main.hs
other-modules: Config Event Fluid Type World
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(fluid)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-io >= 1.3
, accelerate-io-bmp >= 0.1
, bmp >= 1.2
, colour-accelerate >= 0.1
, fclabels >= 2.0
, gloss >= 1.9
, gloss-rendering >= 1.9
-- Simulation of gravitational attraction between solid particles
-- --------------------------------------------------------------
executable accelerate-nbody
default-language: Haskell2010
hs-source-dirs: examples/n-body
main-is: Main.hs
other-modules:
Common.Body
Common.Tree
Common.Type
Common.World
Config
Gloss.Draw
Gloss.Event
Gloss.Simulate
Random.Position
Solver.BarnsHut
Solver.Naive1
Solver.Naive2
Test
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(nbody)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, fclabels >= 2.0
, gloss >= 1.7
, lens-accelerate >= 0.1
, linear-accelerate >= 0.3
, mwc-random >= 0.8
, mwc-random-accelerate >= 0.1
-- A celular automata
-- ------------------
executable accelerate-smoothlife
default-language: Haskell2010
hs-source-dirs: examples/smoothlife
main-is: Main.hs
other-modules:
Config
Gloss.Draw
Gloss.Event
Gloss.Simulate
Random.Splat
SmoothLife
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(smoothlife)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-fft >= 1.3
, colour-accelerate >= 0.1
, fclabels >= 2.0
, gloss >= 1.7
, gloss-accelerate >= 2.0
, mwc-random >= 0.8
, mwc-random-accelerate >= 0.1
-- A "password recovery" tool
-- --------------------------
executable accelerate-hashcat
default-language: Haskell2010
hs-source-dirs: examples/hashcat
main-is: Main.hs
other-modules: Config Digest MD5
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(hashcat)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, bytestring >= 0.9
, bytestring-lexing >= 0.5
, cereal >= 0.3
, criterion >= 1.0
, criterion-measurement >= 0.1
, fclabels >= 2.0
, mwc-random >= 0.8
-- FFT examples
-- ------------
executable accelerate-fft
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: examples/fft/src-acc
other-modules: Config HighPass FFT
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(fft)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-fft >= 1.3
, accelerate-io-bmp >= 0.1
, colour-accelerate >= 0.1
, fclabels >= 2.0
, filepath >= 1.0
-- PageRank
-- --------
executable accelerate-pagerank
default-language: Haskell2010
hs-source-dirs: examples/pagerank
main-is: Main.hs
other-modules:
Config
Count
Load
Page
Progress
Rank
Step
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(pagerank)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, accelerate-io-vector >= 0.1
, bytestring >= 0.9.2
, containers >= 0.4.2
, directory >= 1.1
, fclabels >= 1.0
, vector >= 0.9
, vector-algorithms >= 0.5.4
-- QuickSort
-- ---------
executable accelerate-quicksort
default-language: Haskell2010
hs-source-dirs: examples/quicksort
main-is: Main.hs
other-modules:
Config
QuickSort
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(quicksort)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, array >= 0.5.2
, fclabels >= 1.0
, random
-- Ray tracer
-- ----------
executable accelerate-ray
default-language: Haskell2010
hs-source-dirs: examples/ray
main-is: Main.hs
other-modules:
Common.Type
Config
Gloss.Draw
Gloss.Event
Ray.Intersect
Ray.Trace
Scene.Light
Scene.Object
Scene.State
Scene.World
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(ray)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, colour-accelerate >= 0.1
, fclabels >= 1.0
, gloss >= 1.8
, gloss-accelerate >= 2.0
, gloss-raster-accelerate >= 2.0
, lens-accelerate >= 0.1
, linear-accelerate >= 0.3
-- K-means
-- -------
executable accelerate-kmeans
default-language: Haskell2010
hs-source-dirs: examples/kmeans
main-is: Main.hs
other-modules: Config Kmeans
ghc-options:
-Wall
-threaded
-eventlog
-rtsopts
-with-rtsopts=-n2M
-with-rtsopts=-A64M
-with-rtsopts=-qg
ghc-prof-options:
-auto-all
if flag(ekg)
ghc-options: -with-rtsopts=-T
if !flag(kmeans)
buildable: False
else
build-depends:
base >= 4.7 && < 5
, accelerate == 1.3.*
, accelerate-examples
, binary >= 0.7
, directory >= 1.1
, fclabels >= 1.0
, normaldistribution
, random
source-repository head
type: git
location: https://github.com/AccelerateHS/accelerate-examples
source-repository this
type: git
tag: v1.3.0.0
location: https://github.com/AccelerateHS/accelerate-examples
-- vim: nospell