name: mxnet version: 0.2.0.0 synopsis: MXNet interface in Haskell. description: MXNet interface in Haskell via CFFI. homepage: http://github.com/sighingnow/mxnet-haskell#readme license: MIT license-file: LICENSE author: Tao He maintainer: sighingnow@gmail.com copyright: Copyright: (c) 2016-2017 Tao He category: Machine Learning build-type: Custom cabal-version: >= 1.10 Library exposed-modules: MXNet.Core.Base MXNet.Core.Base.DType MXNet.Core.Base.HMap MXNet.Core.Base.Executor MXNet.Core.Base.NDArray MXNet.Core.Base.Symbol MXNet.Core.Base.Internal MXNet.Core.Types.Internal MXNet.Core.Predict.Internal MXNet.Core.NNVM.Internal MXNet.Core.Base.Internal.TH.NDArray MXNet.Core.Base.Internal.TH.Symbol other-modules: MXNet.Core.Types.Internal.Raw MXNet.Core.Base.Internal.Raw MXNet.Core.Predict.Internal.Raw MXNet.Core.NNVM.Internal.Raw MXNet.Core.Base.Internal.TH hs-source-dirs: src build-tools: c2hs ghc-options: -Wall default-language: Haskell2010 build-depends: base >= 4.7 && < 5.0 , c2hs-extra >= 0.1 , pretty >= 1.1 , template-haskell >= 2.10.0.0 , unordered-containers >= 0.2.7.0 , vector >= 0.10.0.0 extra-libraries: mxnet Test-Suite mxnet-test type: exitcode-stdio-1.0 main-is: mxnet-test.hs hs-source-dirs: tests ghc-options: -Wall default-language: Haskell2010 build-depends: base >= 4.7 && < 5.0 , mxnet , vector >= 0.10.0.0 , tasty >= 0.11.0.3 , tasty-hunit >= 0.9.2