-
Notifications
You must be signed in to change notification settings - Fork 173
/
Copy pathpackage.yaml
119 lines (108 loc) · 2.8 KB
/
package.yaml
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
name: futhark
version: "0.13.2"
synopsis: An optimising compiler for a functional, array-oriented language.
description: |
Futhark is a small programming language designed to be compiled to
efficient parallel code. It is a statically typed, data-parallel,
and purely functional array language in the ML family, and comes
with a heavily optimising ahead-of-time compiler that presently
generates GPU code via CUDA and OpenCL, although the language itself
is hardware-agnostic.
For more information, see the website at https://futhark-lang.org
homepage: https://futhark-lang.org
maintainer: Troels Henriksen [email protected]
license: ISC
github: diku-dk/futhark
category: Language
ghc-options: -Wall -Wcompat -Wredundant-constraints -Wincomplete-record-updates -Wmissing-export-lists
extra-source-files:
- rts/python/*.py
- rts/c/*.h
- rts/csharp/*.cs
- rts/futhark-doc/*.css
- futlib/*.fut
- docs/Makefile
- docs/conf.py
- docs/index.rst
- docs/man/*.rst
- package.yaml
library:
dependencies:
- base >= 4.13 && < 5
- array >= 0.4
- binary >= 0.8.3
- data-binary-ieee754 >= 0.1
- vector >= 0.12
- vector-binary-instances >= 0.2.2.0
- containers >= 0.6.2.1
- mtl >= 2.2.1
- transformers >= 0.3
- srcloc >= 0.4
- language-c-quote >= 0.12
- mainland-pretty >= 0.6.1
- megaparsec >= 7.0.1
- parser-combinators >= 1.0.0
- regex-tdfa >= 1.2
- filepath >= 1.4.1.1
- dlist >= 0.6.0.1
- bytestring >= 0.10.8
- text >= 1.2.2.2
- neat-interpolation >= 0.3
- file-embed >= 0.0.9
- directory >= 1.3.0.0
- directory-tree >= 0.12.1
- gitrev >= 1.2.0
- parallel >= 3.2.1.0
- blaze-html >= 0.9.0.1
- template-haskell >= 2.11.1
- process >= 1.4.3.0
- markdown >= 0.1.16
- zlib >= 0.6.1.2
- versions >= 3.3.1
- http-client >= 0.5.7.0
- http-client-tls >= 0.3.5.1
- http-conduit >= 2.2.4
- process-extras >= 0.7.2
- free >= 4.12.4
- zip-archive >= 0.3.1.1
- time >= 1.6.0.1
- ansi-terminal >= 0.6.3.1
- random
- temporary
- aeson >= 1.0.0.0
- haskeline
- utf8-string >= 1
- terminal-size >= 0.3
- unordered-containers >= 0.2.7
build-tools:
- alex
- happy
source-dirs: src
other-modules:
- Language.Futhark.Parser.Parser
- Language.Futhark.Parser.Lexer
- Paths_futhark
executables:
futhark: &futhark
main: src/futhark.hs
dependencies:
- base
- futhark
- text
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -qg"
tests:
unit:
source-dirs: unittests
main: futhark_tests.hs
dependencies:
- base
- futhark
- containers
- mtl
- text
- QuickCheck >= 2.8
- tasty
- tasty-quickcheck
- tasty-hunit
- megaparsec
- parser-combinators