Skip to content

Commit

Permalink
Update from Hackage at 2018-08-06T23:58:47Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Aug 7, 2018
1 parent 483d5a5 commit e35bfea
Show file tree
Hide file tree
Showing 4 changed files with 153 additions and 0 deletions.
101 changes: 101 additions & 0 deletions backprop/0.2.6.0/backprop.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 5fe92f47f037a2d14b0df727ed7cb1213b58e39938cf6b691b376d5caa565d5d

name: backprop
version: 0.2.6.0
synopsis: Heterogeneous automatic differentation
description: Write your functions to compute your result, and the library will
automatically generate functions to compute your gradient.
.
Implements heterogeneous reverse-mode automatic differentiation, commonly
known as "backpropagation".
.
See <https://backprop.jle.im> for official introduction and documentation.
category: Math
homepage: https://backprop.jle.im
bug-reports: https://github.com/mstksg/backprop/issues
author: Justin Le
maintainer: justin@jle.im
copyright: (c) Justin Le 2018
license: BSD3
license-file: LICENSE
tested-with: GHC >= 8.0
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
Build.hs
CHANGELOG.md
doc/01-getting-started.md
doc/02-a-detailed-look.md
doc/03-manipulating-bvars.md
doc/04-the-backprop-typeclass.md
doc/05-applications.md
doc/06-manual-gradients.md
doc/07-performance.md
doc/08-equipping-your-library.md
doc/09-comparisons.md
doc/index.md
README.md
renders/backprop-mnist.md
renders/backprop-mnist.pdf
renders/extensible-neural.md
renders/extensible-neural.pdf
samples/backprop-mnist.lhs
samples/extensible-neural.lhs

source-repository head
type: git
location: https://github.com/mstksg/backprop

library
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wredundant-constraints
build-depends:
base >=4.7 && <5
, containers
, deepseq
, microlens
, primitive
, reflection
, transformers
, vector
, vinyl >=0.9
exposed-modules:
Numeric.Backprop
Numeric.Backprop.Class
Numeric.Backprop.Explicit
Numeric.Backprop.Num
Numeric.Backprop.Op
Prelude.Backprop
Prelude.Backprop.Explicit
Prelude.Backprop.Num
other-modules:
Numeric.Backprop.Internal
Data.Type.Util
default-language: Haskell2010

benchmark backprop-mnist-bench
type: exitcode-stdio-1.0
main-is: bench.hs
hs-source-dirs:
bench
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N -O2
build-depends:
backprop
, base >=4.7 && <5
, criterion
, deepseq
, directory
, hmatrix >=0.18
, microlens
, microlens-th
, mwc-random
, time
, vector
other-modules:
Paths_backprop
default-language: Haskell2010
1 change: 1 addition & 0 deletions backprop/0.2.6.0/backprop.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"24584c4e1f8bf8b80b08ca5927a566f3","Skein512_512":"1b92839316c2ac177569ae4461f514a71b08d1a5a1f1feb52e98b0e43b65a3a13d828fffd068712a64a32a692d836263bc40213594c07644298a5813c7afa9b9","SHA1":"223c6603fecd2468861dab58f3d07637ed82b2ec","SHA512":"94c4187f8571a799c50aabbadb53508b8edcea6da0e51fa9b63e0ff2d451069c4681df7ce1841e6b5e5f78bad26240ff5a688e5e749292206ed996c2dd99b02d","SHA256":"d18fc89144e18de4f0171c18dfecab96c8e2b687aab4547522bf162039c95648"},"package-locations":["https://hackage.haskell.org/package/backprop-0.2.6.0/backprop-0.2.6.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/backprop-0.2.6.0.tar.gz"],"package-size":342095}
50 changes: 50 additions & 0 deletions hedgehog-fn/0.6/hedgehog-fn.cabal
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
-- Initial hedgehog-fn.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/

name: hedgehog-fn
version: 0.6
synopsis: Function generation for `hedgehog`
description: Generating shrinkable, showable functions with `hedgehog`. See
`Hedgehog.Function` for example usages.
license: BSD3
-- Must be spelled with a 'C' for nix
license-file: LICENCE
author: Isaac Elliott
maintainer: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
homepage: https://github.com/qfpl/hedgehog-fn
bug-reports: https://github.com/qfpl/hedgehog-fn/issues
category: Testing
build-type: Simple
cabal-version: >=1.10
extra-source-files: ChangeLog.md
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3

source-repository head
type: git
location: git@github.com:qfpl/hedgehog-fn.git

flag build-examples
description: Build the example executables
default: False

library
exposed-modules: Hedgehog.Function
, Hedgehog.Function.Internal
build-depends: base >=4.8 && <5
, contravariant >=1.4 && <1.6
, hedgehog >=0.6 && <0.7
, transformers >=0.5 && <0.6
hs-source-dirs: src
default-language: Haskell2010

executable example
main-is: Example.hs
if flag(build-examples) && impl(ghc>=8.0)
buildable: True
else
buildable: False
hs-source-dirs: example
build-depends: base >=4.8 && <5
, hedgehog >=0.5 && <0.7
, hedgehog-fn
default-language: Haskell2010
1 change: 1 addition & 0 deletions hedgehog-fn/0.6/hedgehog-fn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"4f3066f01e6bd92f8bd2f0fd33eeaca7","Skein512_512":"4ccdb871650a692e665d244a4cfe19378f6d9ce36f637dde907993320a2ecad8afb11982fe73e8ef48ec11e7b109b87843968b734ff80eedfa51f57564734b11","SHA1":"d6b4317b950de0f971bef10af6e02bb74d27baec","SHA512":"42157fc1a8926924e3a3f8a5cc6a1693794a11178274af20adef2ac258d9099fa47c0c74461bb5d2cee4eb2e84d7d55bb56bb74aaf2d17d7902c5ed660ce0f9e","SHA256":"fb02b67fba97e24c226feba010d2b308934c54e20a0723b6ea7e4eb199f02176"},"package-locations":["https://hackage.haskell.org/package/hedgehog-fn-0.6/hedgehog-fn-0.6.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/hedgehog-fn-0.6.tar.gz"],"package-size":6532}

0 comments on commit e35bfea

Please sign in to comment.