Cabal revisions of accelerate-typelits-0.1.0.0
Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.
revision 1
------------------------------------------------------------------------------------- -- --------------------------- -- ----- -- --- Accelerate TypeLits --- -- ----- -- --------------------------- -- --------------------------------------------------------------------------------------name: accelerate-typelits-version: 0.1.0.0-synopsis: a typesafe way encode accelerate matrices and vectors-description: a small wrapper plus convenience functions on top of- accelerate to represent matrices with their dimensions-stability: experimental-license: ISC-license-file: LICENSE-author: Martin Heuschober-maintainer: Martin Heuschober <epsilonhalbe [at] gmail [dot] com>-bug-reports: http://github.com/epsilonhalbe/accelerate-typelit/issues-copyright: (c) 2016 Martin Heuschober-category: Math-build-type: Simple-extra-source-files: ChangeLog.md- , Readme.md- , stack-7.10.yaml-cabal-version: >=1.22-tested-with: GHC == 7.10.3--source-repository head- type: git- location: git://github.com/epsilonhalbe/accelerate-typelit-------------------------------------------------------------------------------------- Library --------------------------------------------------------------------------------------library- exposed-modules: Data.Array.Accelerate.TypeLits- , Data.Array.Accelerate.TypeLits.System.Random.MWC- other-modules: Data.Array.Accelerate.TypeLits.Internal- build-depends: base >=4.8 && <4.9- , accelerate- , accelerate-random- , mwc-random- , smallcheck- , QuickCheck-- hs-source-dirs: src- default-language: Haskell2010- ghc-options: -Wall-------------------------------------------------------------------------------------- Tests --------------------------------------------------------------------------------------test-suite tests- type: exitcode-stdio-1.0- main-is: Test.hs- --exposed-modules:- other-modules: Test.Data.Array.Accelerate.TypeLits- build-depends: base >=4.8 && <4.9- , accelerate- , accelerate-random- , accelerate-typelits- , HUnit-Plus- , mwc-random- , QuickCheck- , smallcheck- , tasty- , tasty-hunit- , tasty-quickcheck- , tasty-smallcheck-- hs-source-dirs: test- default-language: Haskell2010-+--------------------------------------------------------------------------------- +-- -- --------------------------- -- -- +-- -- --- Accelerate TypeLits --- -- -- +-- -- --------------------------- -- -- +--------------------------------------------------------------------------------- + +name: accelerate-typelits +version: 0.1.0.0 +x-revision: 1 +synopsis: a typesafe way encode accelerate matrices and vectors +description: a small wrapper plus convenience functions on top of + accelerate to represent matrices with their dimensions +stability: experimental +license: ISC +license-file: LICENSE +author: Martin Heuschober +maintainer: Martin Heuschober <epsilonhalbe [at] gmail [dot] com> +bug-reports: http://github.com/epsilonhalbe/accelerate-typelit/issues +copyright: (c) 2016 Martin Heuschober +category: Math +build-type: Simple +extra-source-files: ChangeLog.md + , Readme.md + , stack-7.10.yaml +cabal-version: >=1.22 +tested-with: GHC == 7.10.3 + +source-repository head + type: git + location: git://github.com/epsilonhalbe/accelerate-typelit + +--------------------------------------------------------------------------------- +-- Library -- +--------------------------------------------------------------------------------- + +library + exposed-modules: Data.Array.Accelerate.TypeLits + , Data.Array.Accelerate.TypeLits.System.Random.MWC + other-modules: Data.Array.Accelerate.TypeLits.Internal + build-depends: base >=4.8 && <5 + , accelerate >= 0.15 && < 0.16 + , accelerate-random >= 0.15 && < 0.16 + , mwc-random >= 0.13 && < 0.14 + , smallcheck >= 1.1 && < 1.2 + , QuickCheck >= 2.8 && < 2.9 + + hs-source-dirs: src + default-language: Haskell2010 + ghc-options: -Wall + +--------------------------------------------------------------------------------- +-- Tests -- +--------------------------------------------------------------------------------- + +test-suite tests + type: exitcode-stdio-1.0 + main-is: Test.hs + --exposed-modules: + other-modules: Test.Data.Array.Accelerate.TypeLits + build-depends: base >= 4.8 && <5 + , accelerate >= 0.15 && < 0.16 + , accelerate-random >= 0.15 && < 0.16 + , accelerate-typelits >= 0.1 && < 0.2 + , HUnit-Plus >= 1.1 && < 1.2 + , mwc-random >= 0.13 && < 0.14 + , QuickCheck >= 2.8 && < 2.9 + , smallcheck >= 1.1 && < 1.2 + , tasty >= 0.11 && < 0.12 + , tasty-hunit >= 0.9 && < 0.10 + , tasty-quickcheck >= 0.8 && < 0.9 + , tasty-smallcheck >= 0.8 && < 0.9 + + hs-source-dirs: test + default-language: Haskell2010 +
revision 2
name: accelerate-typelits version: 0.1.0.0 -x-revision: 1 +x-revision: 2 synopsis: a typesafe way encode accelerate matrices and vectors description: a small wrapper plus convenience functions on top of accelerate to represent matrices with their dimensions license-file: LICENSE author: Martin Heuschober maintainer: Martin Heuschober <epsilonhalbe [at] gmail [dot] com> -bug-reports: http://github.com/epsilonhalbe/accelerate-typelit/issues +bug-reports: http://github.com/epsilonhalbe/accelerate-typelits/issues copyright: (c) 2016 Martin Heuschober category: Math build-type: Simple source-repository head type: git - location: git://github.com/epsilonhalbe/accelerate-typelit + location: git://github.com/epsilonhalbe/accelerate-typelits --------------------------------------------------------------------------------- -- Library --