2016-10-24 21:26:42 +02:00
|
|
|
name: tensorflow
|
2017-05-17 00:18:01 +02:00
|
|
|
version: 0.1.0.2
|
2016-10-24 21:26:42 +02:00
|
|
|
synopsis: TensorFlow bindings.
|
2017-05-10 20:37:00 +02:00
|
|
|
description:
|
|
|
|
This library provides an interface to the TensorFlow
|
|
|
|
bindings. "TensorFlow.Core" contains the base API for
|
|
|
|
building and running computational graphs. Other packages
|
|
|
|
such as @tensorflow-ops@ contain bindings to the actual
|
|
|
|
computational kernels.
|
|
|
|
.
|
|
|
|
For more documentation and examples, see
|
|
|
|
<https://github.com/tensorflow/haskell#readme>
|
2016-10-24 21:26:42 +02:00
|
|
|
homepage: https://github.com/tensorflow/haskell#readme
|
|
|
|
license: Apache
|
2017-05-10 20:37:00 +02:00
|
|
|
license-file: LICENSE
|
2016-10-24 21:26:42 +02:00
|
|
|
author: TensorFlow authors
|
|
|
|
maintainer: tensorflow-haskell@googlegroups.com
|
|
|
|
copyright: Google Inc.
|
|
|
|
category: Machine Learning
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.22
|
2017-05-11 01:50:35 +02:00
|
|
|
extra-source-files: third_party/tensorflow/c/c_api.h
|
2016-10-24 21:26:42 +02:00
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
|
|
|
exposed-modules: TensorFlow.Build
|
|
|
|
, TensorFlow.BuildOp
|
|
|
|
, TensorFlow.ControlFlow
|
2016-11-10 18:47:41 +01:00
|
|
|
, TensorFlow.Core
|
2016-10-24 21:26:42 +02:00
|
|
|
, TensorFlow.Internal.FFI
|
2016-11-10 18:47:41 +01:00
|
|
|
, TensorFlow.Internal.VarInt
|
2016-10-24 21:26:42 +02:00
|
|
|
, TensorFlow.Nodes
|
|
|
|
, TensorFlow.Output
|
|
|
|
, TensorFlow.Session
|
|
|
|
, TensorFlow.Tensor
|
|
|
|
, TensorFlow.Types
|
|
|
|
other-modules: TensorFlow.Internal.Raw
|
|
|
|
build-tools: c2hs
|
2017-04-11 23:09:01 +02:00
|
|
|
build-depends: proto-lens == 0.2.*
|
2016-10-24 21:26:42 +02:00
|
|
|
, tensorflow-proto == 0.1.*
|
|
|
|
, base >= 4.7 && < 5
|
|
|
|
, async
|
|
|
|
, attoparsec
|
|
|
|
, bytestring
|
|
|
|
, containers
|
|
|
|
, data-default
|
2017-02-21 04:16:42 +01:00
|
|
|
, exceptions
|
2016-10-24 21:26:42 +02:00
|
|
|
, fgl
|
|
|
|
, lens-family
|
|
|
|
, mainland-pretty
|
|
|
|
, mtl
|
|
|
|
, semigroups
|
|
|
|
, split
|
|
|
|
, text
|
|
|
|
, temporary
|
|
|
|
, transformers
|
|
|
|
, vector
|
2017-02-09 23:20:43 +01:00
|
|
|
extra-libraries: tensorflow
|
2016-10-24 21:26:42 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
include-dirs: .
|
2017-05-17 00:18:01 +02:00
|
|
|
if os(darwin) {
|
|
|
|
-- The default XCode installation doesn't search this path, so add it
|
|
|
|
-- manually. Alternately, users can run `xcode-select --install` to add
|
|
|
|
-- it permanently to their search path.
|
|
|
|
extra-lib-dirs: /usr/local/lib
|
|
|
|
}
|
2016-10-24 21:26:42 +02:00
|
|
|
|
|
|
|
Test-Suite FFITest
|
|
|
|
default-language: Haskell2010
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: FFITest.hs
|
|
|
|
hs-source-dirs: tests
|
|
|
|
build-depends: HUnit
|
|
|
|
, base
|
|
|
|
, bytestring
|
|
|
|
, lens-family
|
|
|
|
, proto-lens
|
|
|
|
, tensorflow
|
|
|
|
, tensorflow-proto
|
|
|
|
, test-framework
|
|
|
|
, test-framework-hunit
|
|
|
|
|
|
|
|
|
|
|
|
Test-Suite VarIntTest
|
|
|
|
default-language: Haskell2010
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: VarIntTest.hs
|
|
|
|
hs-source-dirs: tests
|
|
|
|
build-depends: base
|
|
|
|
, attoparsec
|
|
|
|
, bytestring
|
|
|
|
, tensorflow
|
|
|
|
, test-framework
|
|
|
|
, test-framework-quickcheck2
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/tensorflow/haskell
|