This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
taco.cabal
83 lines (74 loc) · 3.05 KB
/
taco.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
name: taco
version: 0.4.0.0
synopsis: Tensor Algebra COmpiler
description: Types and a compiler for tensor expressions.
homepage: https://github.com/ocramz/taco-hs#readme
license: BSD3
license-file: LICENSE
author: Marco Zocca
maintainer: ocramz fripost org
copyright: 2017, 2018 Marco Zocca
category: Numeric
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.5
library
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Language.Taco
Data.Tensor.Compiler
Data.Tensor
-- Data.Tensor.Compiler.PHOAS
-- Data.Tensor.Compiler.PHOAS.MultiInterpreter
-- Data.Tensor.Compiler.Free
-- Data.Tensor.Compiler.MultiStage
-- Data.Tensor.Compiler.Edsl2Edsl
-- Data.Tensor.Compiler.LC
Data.Tensor.Exception
Data.Tensor.Internal
Data.Tensor.Internal.Dim
Data.Tensor.Internal.Shape
Data.Tensor.Internal.Shape.Types
Data.Tensor.Internal.Variance
Data.Tensor.Internal.Vector
other-modules: Data.Tensor.Internal.Shape.Static
Data.Tensor.Internal.Shape.Static.Rank
Data.Tensor.Internal.MGraph
build-depends: base >= 4.7 && < 5
, containers >= 0.5.7.1
, exceptions >= 0.8.3
, mtl >= 2.2.1
, parallel >= 3.2.1.1
, primitive >= 0.6.2.0
, transformers >= 0.5.2.0
, vector >= 0.12.0.1
, vector-algorithms >= 0.7.0.1
-- , vector-algorithms
-- , containers
-- -- DEBUG
, hspec
, QuickCheck
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, hspec
, QuickCheck
, vector
, taco
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
-- test-suite test-multicore-2
-- type: exitcode-stdio-1.0
-- hs-source-dirs: test
-- main-is: Spec.hs
-- build-depends: base
-- , taco
-- ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N2
-- default-language: Haskell2010
source-repository head
type: git
location: https://github.com/ocramz/taco-hs