-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtensorflow-deptyped.cabal
104 lines (97 loc) · 2.78 KB
/
tensorflow-deptyped.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
name: tensorflow-deptyped
version: 0.0.1
synopsis: Reexporting TensorFlow Haskell with dependent typed functions
description: Securing tensorflow code using dependent types.
category: Machine Learning
homepage: https://github.com/helq/tensorflow-haskell-deptyped#readme
bug-reports: https://github.com/helq/tensorflow-haskell-deptyped/issues
maintainer: Elkin Cruz
-- It's sad that I cannot put a dual license in here :/
license: BSD3
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
LICENSE.BSD.txt
LICENSE.Apache.txt
README.md
stack.yaml
source-repository head
type: git
location: https://github.com/helq/tensorflow-haskell-deptyped
library
hs-source-dirs:
library
ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wmissing-import-lists
build-depends:
base >= 4.9 && < 5
, tensorflow >= 0.2.0.0 && < 0.3
, tensorflow-ops >= 0.2.0.0 && < 0.3
, tensorflow-core-ops >= 0.2.0.0 && < 0.3
, singletons >= 2.5 && < 2.6
, vector
, vector-sized
, bytestring
exposed-modules:
TensorFlow.DepTyped
, TensorFlow.DepTyped.Base
, TensorFlow.DepTyped.Tensor
, TensorFlow.DepTyped.Types
, TensorFlow.DepTyped.Session
, TensorFlow.DepTyped.NN
, TensorFlow.DepTyped.Ops
, TensorFlow.DepTyped.Output
, TensorFlow.DepTyped.Variable
, TensorFlow.DepTyped.Minimize
default-language: Haskell2010
executable tensorflow-haskell-deptyped
main-is: Main.hs
hs-source-dirs:
executable
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends:
base >= 4.9 && < 5
, tensorflow-deptyped
, bytestring
, vector
, vector-sized
, singletons >= 2.5 && < 2.6
, tensorflow
, tensorflow-ops
default-language: Haskell2010
executable tf-example
main-is: tf-haskell-example.hs
hs-source-dirs: executable
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends:
base >= 4.9 && < 5
, tensorflow-deptyped
, random
, HUnit
, tensorflow
, tensorflow-core-ops
, tensorflow-ops
, vector-sized
--test-suite tensorflow-haskell-deptyped-test-suite
-- type: exitcode-stdio-1.0
-- main-is: Main.hs
-- hs-source-dirs:
-- test-suite
-- ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
-- build-depends:
-- base
-- , tensorflow-haskell-deptyped
-- , tasty
-- , tasty-hspec
-- default-language: Haskell2010
--benchmark tensorflow-haskell-deptyped-benchmarks
-- type: exitcode-stdio-1.0
-- main-is: Main.hs
-- hs-source-dirs:
-- benchmark
-- ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
-- build-depends:
-- base
-- , tensorflow-haskell-deptyped
-- , criterion
-- default-language: Haskell2010