-
Notifications
You must be signed in to change notification settings - Fork 23
/
massiv.cabal
134 lines (126 loc) · 5.16 KB
/
massiv.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
name: massiv
version: 1.0.4.0
synopsis: Massiv (Массив) is an Array Library.
description: Multi-dimensional Arrays with fusion, stencils and parallel computation.
homepage: https://github.com/lehins/massiv
license: BSD3
license-file: LICENSE
author: Alexey Kuleshevich
maintainer: [email protected]
copyright: 2018-2022 Alexey Kuleshevich
category: Array, Data, Data Structures, Parallelism
build-type: Simple
extra-source-files: README.md
, CHANGELOG.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.4
, GHC == 8.6.5
, GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.2
, GHC == 9.2.8
, GHC == 9.4.8
, GHC == 9.6.5
, GHC == 9.8.2
flag unsafe-checks
description: Enable all the bounds checks for unsafe functions at the cost of
performance penalty
default: False
manual: True
library
hs-source-dirs: src
exposed-modules: Data.Massiv.Array
, Data.Massiv.Array.Delayed
, Data.Massiv.Array.Manifest
, Data.Massiv.Array.Manifest.Vector
, Data.Massiv.Array.Mutable
, Data.Massiv.Array.Mutable.Algorithms
, Data.Massiv.Array.Mutable.Atomic
, Data.Massiv.Array.Numeric
, Data.Massiv.Array.Numeric.Integral
, Data.Massiv.Array.Stencil
, Data.Massiv.Array.Unsafe
, Data.Massiv.Core
, Data.Massiv.Core.Index
, Data.Massiv.Core.List
, Data.Massiv.Core.Operations
, Data.Massiv.Vector
, Data.Massiv.Vector.Stream
other-modules: Data.Massiv.Array.Delayed.Interleaved
, Data.Massiv.Array.Delayed.Pull
, Data.Massiv.Array.Delayed.Push
, Data.Massiv.Array.Delayed.Stream
, Data.Massiv.Array.Delayed.Windowed
, Data.Massiv.Array.Manifest.Boxed
, Data.Massiv.Array.Manifest.Internal
, Data.Massiv.Array.Manifest.List
, Data.Massiv.Array.Manifest.Primitive
, Data.Massiv.Array.Manifest.Storable
, Data.Massiv.Array.Manifest.Unboxed
, Data.Massiv.Array.Mutable.Internal
, Data.Massiv.Array.Ops.Construct
, Data.Massiv.Array.Ops.Fold
, Data.Massiv.Array.Ops.Fold.Internal
, Data.Massiv.Array.Ops.Map
, Data.Massiv.Array.Ops.Slice
, Data.Massiv.Array.Ops.Sort
, Data.Massiv.Array.Ops.Transform
, Data.Massiv.Array.Stencil.Convolution
, Data.Massiv.Array.Stencil.Internal
, Data.Massiv.Array.Stencil.Unsafe
, Data.Massiv.Core.Common
, Data.Massiv.Core.Exception
, Data.Massiv.Core.Index.Internal
, Data.Massiv.Core.Index.Ix
, Data.Massiv.Core.Index.Stride
, Data.Massiv.Core.Index.Tuple
, Data.Massiv.Core.Index.Iterator
, Data.Massiv.Core.Loop
, Data.Massiv.Vector.Unsafe
build-depends: base >= 4.9 && < 5
, bytestring
, deepseq
, exceptions
, scheduler >= 2.0.0 && < 3
, primitive >= 0.7.1.0
, random >= 1.2.0
, unliftio-core
, vector >= 0.12
, vector-stream
include-dirs: include
install-includes: massiv.h
if flag(unsafe-checks)
cpp-options: -DMASSIV_UNSAFE_CHECKS
default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-record-updates
-Wredundant-constraints
if impl(ghc >= 8.2)
ghc-options:
-Wno-simplifiable-class-constraints
-Wincomplete-uni-patterns
else
ghc-options:
-Wno-incomplete-patterns
-Wno-unused-imports
-Wno-unrecognised-pragmas
test-suite doctests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: doctests.hs
build-depends: base
, doctest >=0.15
if impl(ghc >= 8.2) && impl(ghc < 8.10)
build-depends: QuickCheck
, massiv
, mersenne-random-pure64
, random >= 1.2.0
, mwc-random >= 0.15.0.1
, splitmix >= 0.0.1
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/lehins/massiv
subdir: massiv