-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconvoluted.cabal
87 lines (83 loc) · 3.05 KB
/
convoluted.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
name: convoluted
version: 0.1.0.0
synopsis: Initial project template from stack
description: Please see README.md
homepage: https://github.com/jonascarpay/convoluted#readme
license: BSD3
license-file: LICENSE
author: Jonas Carpay
maintainer: [email protected]
copyright: MIT
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
default-extensions: StrictData
, TypeOperators
, TypeFamilies
exposed-modules: Util
, Network
, Network.Runners
, Network.Label
, Network.Conduits
, Static
, Static.Array
, Static.Measure
, Static.Image
, Layers
, Layers.MultiSoftMax
, Layers.Convolution
, Layers.Flatten
, Layers.Pool
, Layers.ReLU
, Layers.Logit
, Layers.FC
, Layers.Id
default-language: Haskell2010
ghc-options: -Wall
-fno-warn-name-shadowing
-fno-warn-unticked-promoted-constructors
-fno-warn-redundant-constraints
-Odph -fno-liberate-case -fllvm -optlo-O3
-funfolding-use-threshold1000 -funfolding-keeness-factor1000
build-depends: base >= 4.7 && < 5
, singletons
, mtl
, repa
, repa-algorithms
, repa-io
, containers
, vector
, cereal
, cereal-vector
, conduit-combinators
test-suite convoluted-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-extensions: Strict
other-modules: VolumeSpec
ghc-options: -threaded -rtsopts -with-rtsopts=-N -fno-warn-missing-signatures
-Odph -rtsopts -threaded -fno-liberate-case -fllvm -optlo-O3
-funfolding-use-threshold1000 -funfolding-keeness-factor1000
default-language: Haskell2010
build-depends: base
, convoluted
, QuickCheck
, vector
, repa
benchmark convoluted-bench
type: exitcode-stdio-1.0
hs-source-dirs: bench
main-is: Bench.hs
default-extensions: Strict
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
build-depends: base
, convoluted
, criterion
source-repository head
type: git
location: https://github.com/jonascarpay/convoluted