-
Notifications
You must be signed in to change notification settings - Fork 3
/
tensors.cabal
89 lines (84 loc) · 2.99 KB
/
tensors.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.3.
--
-- see: https://github.com/sol/hpack
--
-- hash: 94686654d95fba4d1c63e51d5cfbb29a38b18997f620587f1f22c51af4c10109
name: tensors
version: 0.1.5
synopsis: Tensor in Haskell
description: Tensor use type level programming in haskell.
category: Library
homepage: https://github.com/leptonyu/tensors#readme
author: Daniel YU
maintainer: Daniel YU <[email protected]>
copyright: (c) 2018 Daniel YU
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
library
exposed-modules:
Data.Tensor
other-modules:
Data.Tensor.Type
Data.Tensor.Tensor
Data.Tensor.Matrix
Data.Tensor.Space
Data.Tensor.Statistics
hs-source-dirs:
src
default-extensions: AllowAmbiguousTypes DataKinds ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies KindSignatures MultiParamTypeClasses PolyKinds RankNTypes ScopedTypeVariables TypeFamilies TypeOperators TypeSynonymInstances
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -fno-warn-orphans -fno-warn-missing-signatures
build-depends:
base >=4.9 && <5
, deepseq
, vector >=0.12.0.2 && <0.13
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Data.Tensor
Data.Tensor.Matrix
Data.Tensor.Space
Data.Tensor.Statistics
Data.Tensor.Tensor
Data.Tensor.Type
Paths_tensors
hs-source-dirs:
test
src
default-extensions: AllowAmbiguousTypes DataKinds ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies KindSignatures MultiParamTypeClasses PolyKinds RankNTypes ScopedTypeVariables TypeFamilies TypeOperators TypeSynonymInstances
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -fno-warn-orphans -fno-warn-missing-signatures
build-depends:
QuickCheck >=2.11.1
, base >=4.9 && <5
, deepseq
, hspec ==2.*
, reflection >=2.1.4 && <2.2
, vector >=0.12.0.2 && <0.13
default-language: Haskell2010
benchmark bm
type: exitcode-stdio-1.0
main-is: Bench.hs
other-modules:
Data.Tensor
Data.Tensor.Matrix
Data.Tensor.Space
Data.Tensor.Statistics
Data.Tensor.Tensor
Data.Tensor.Type
Paths_tensors
hs-source-dirs:
bench
src
default-extensions: AllowAmbiguousTypes DataKinds ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies KindSignatures MultiParamTypeClasses PolyKinds RankNTypes ScopedTypeVariables TypeFamilies TypeOperators TypeSynonymInstances
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -fno-warn-orphans -fno-warn-missing-signatures
build-depends:
base >=4.9 && <5
, criterion
, deepseq
, vector >=0.12.0.2 && <0.13
default-language: Haskell2010