-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolid-cuda.cabal
53 lines (47 loc) · 1.08 KB
/
solid-cuda.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
name: solid-cuda
version: 0.1
homepage: https://github.com/xc-jp/greenia
license: BSD3
author: Cross Compass
maintainer: [email protected]
category: Machine Learning
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
hs-source-dirs: src
exposed-modules:
Data.Solid.Cuda
Data.Solid.Cuda.Device
Data.Solid.Cuda.Internal
Data.Solid.Cuda.Memory
extra-libraries: cudart
default-language: Haskell2010
build-depends:
base
, exceptions
, inline-c
, mtl
, solid
, transformers
, vector
ghc-options: -Wall
test-suite tasty
type: exitcode-stdio-1.0
main-is: tasty.hs
hs-source-dirs: test/tasty
other-modules:
Data.Solid.Cuda.MemoryTest
Data.Solid.Cuda.TestUtils
build-depends:
base
, exceptions
, inline-c
, QuickCheck
, solid
, solid-cuda
, tasty
, tasty-quickcheck
, vector
ghc-options: -Wall -threaded
default-language: Haskell2010