-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimd-vector-spaces.cabal
48 lines (44 loc) · 1.41 KB
/
simd-vector-spaces.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
-- Initial simd-vector-spaces.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: simd-vector-spaces
version: 0.1.0.0
synopsis: Optimised fixed small size vector spaces
-- description:
license: GPL-3
license-file: LICENSE
author: Justus Sagemüller
maintainer: (@) jsagemue $ uni-koeln.de
-- copyright:
category: Math
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Data.VectorSpace.SIMD
, Math.DivisionAlgebra.SIMD
-- other-modules:
other-extensions: TypeFamilies, FlexibleInstances, FlexibleContexts, ScopedTypeVariables, UnicodeSyntax
build-depends: base >=4.8 && <4.9
, vector-space >=0.10 && <0.11
, primitive-simd >=0.1 && <0.2
, vector
, QuickCheck >= 2.8 && < 2.10
-- hs-source-dirs:
ghc-options: -fllvm -mavx2
default-language: Haskell2010
test-suite test
default-language:
Haskell2010
type:
exitcode-stdio-1.0
hs-source-dirs:
test/tasty
main-is:
test.hs
ghc-options: -fllvm -mavx2
build-depends:
base >= 4 && < 5
, tasty >= 0.7
, tasty-quickcheck
, vector-space
, simd-vector-spaces