├── .ghci ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Setup.hs ├── arrayfire.cabal ├── cabal.project ├── cbits └── wrapper.c ├── default.nix ├── doctests └── Main.hs ├── exe └── Main.hs ├── flake.lock ├── flake.nix ├── gen ├── Lex.hs ├── Main.hs ├── Parse.hs ├── Print.hs └── Types.hs ├── include ├── algorithm.h ├── arith.h ├── array.h ├── backend.h ├── blas.h ├── cuda.h ├── data.h ├── defines.h ├── device.h ├── exception.h ├── features.h ├── graphics.h ├── image.h ├── index.h ├── internal.h ├── lapack.h ├── openCL.h ├── random.h ├── seq.h ├── signal.h ├── sparse.h ├── statistics.h ├── util.h └── vision.h ├── nix ├── default.nix └── no-download.patch ├── pkg.nix ├── shell.nix ├── src ├── ArrayFire.hs └── ArrayFire │ ├── Algorithm.hs │ ├── Arith.hs │ ├── Array.hs │ ├── BLAS.hs │ ├── Backend.hs │ ├── Data.hs │ ├── Device.hs │ ├── Exception.hs │ ├── FFI.hs │ ├── Features.hs │ ├── Graphics.hs │ ├── Image.hs │ ├── Index.hs │ ├── Internal │ ├── Algorithm.hsc │ ├── Arith.hsc │ ├── Array.hsc │ ├── BLAS.hsc │ ├── Backend.hsc │ ├── CUDA.hsc │ ├── Data.hsc │ ├── Defines.hsc │ ├── Device.hsc │ ├── Exception.hsc │ ├── Features.hsc │ ├── Graphics.hsc │ ├── Image.hsc │ ├── Index.hsc │ ├── Internal.hsc │ ├── LAPACK.hsc │ ├── OpenCL.hsc │ ├── Random.hsc │ ├── Seq.hsc │ ├── Signal.hsc │ ├── Sparse.hsc │ ├── Statistics.hsc │ ├── Types.hsc │ ├── Util.hsc │ └── Vision.hsc │ ├── LAPACK.hs │ ├── Orphans.hs │ ├── Random.hs │ ├── Signal.hs │ ├── Sparse.hs │ ├── Statistics.hs │ ├── Types.hs │ ├── Util.hs │ └── Vision.hs ├── stack.yaml ├── stack.yaml.lock └── test ├── ArrayFire ├── AlgorithmSpec.hs ├── ArithSpec.hs ├── ArraySpec.hs ├── BLASSpec.hs ├── BackendSpec.hs ├── DataSpec.hs ├── DeviceSpec.hs ├── FeaturesSpec.hs ├── GraphicsSpec.hs ├── ImageSpec.hs ├── IndexSpec.hs ├── LAPACKSpec.hs ├── RandomSpec.hs ├── SignalSpec.hs ├── SparseSpec.hs ├── StatisticsSpec.hs ├── UtilSpec.hs └── VisionSpec.hs ├── Main.hs ├── Spec.hs └── Test └── Hspec └── ApproxExpect.hs /.ghci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/.ghci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/Setup.hs -------------------------------------------------------------------------------- /arrayfire.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/arrayfire.cabal -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/cabal.project -------------------------------------------------------------------------------- /cbits/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/cbits/wrapper.c -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/default.nix -------------------------------------------------------------------------------- /doctests/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/doctests/Main.hs -------------------------------------------------------------------------------- /exe/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/exe/Main.hs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/flake.nix -------------------------------------------------------------------------------- /gen/Lex.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/gen/Lex.hs -------------------------------------------------------------------------------- /gen/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/gen/Main.hs -------------------------------------------------------------------------------- /gen/Parse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/gen/Parse.hs -------------------------------------------------------------------------------- /gen/Print.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/gen/Print.hs -------------------------------------------------------------------------------- /gen/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/gen/Types.hs -------------------------------------------------------------------------------- /include/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/algorithm.h -------------------------------------------------------------------------------- /include/arith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/arith.h -------------------------------------------------------------------------------- /include/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/array.h -------------------------------------------------------------------------------- /include/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/backend.h -------------------------------------------------------------------------------- /include/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/blas.h -------------------------------------------------------------------------------- /include/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/cuda.h -------------------------------------------------------------------------------- /include/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/data.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/device.h -------------------------------------------------------------------------------- /include/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/exception.h -------------------------------------------------------------------------------- /include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/features.h -------------------------------------------------------------------------------- /include/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/graphics.h -------------------------------------------------------------------------------- /include/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/image.h -------------------------------------------------------------------------------- /include/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/index.h -------------------------------------------------------------------------------- /include/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/internal.h -------------------------------------------------------------------------------- /include/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/lapack.h -------------------------------------------------------------------------------- /include/openCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/openCL.h -------------------------------------------------------------------------------- /include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/random.h -------------------------------------------------------------------------------- /include/seq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/seq.h -------------------------------------------------------------------------------- /include/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/signal.h -------------------------------------------------------------------------------- /include/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/sparse.h -------------------------------------------------------------------------------- /include/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/statistics.h -------------------------------------------------------------------------------- /include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/util.h -------------------------------------------------------------------------------- /include/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/include/vision.h -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/no-download.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/nix/no-download.patch -------------------------------------------------------------------------------- /pkg.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/pkg.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/shell.nix -------------------------------------------------------------------------------- /src/ArrayFire.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire.hs -------------------------------------------------------------------------------- /src/ArrayFire/Algorithm.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Algorithm.hs -------------------------------------------------------------------------------- /src/ArrayFire/Arith.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Arith.hs -------------------------------------------------------------------------------- /src/ArrayFire/Array.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Array.hs -------------------------------------------------------------------------------- /src/ArrayFire/BLAS.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/BLAS.hs -------------------------------------------------------------------------------- /src/ArrayFire/Backend.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Backend.hs -------------------------------------------------------------------------------- /src/ArrayFire/Data.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Data.hs -------------------------------------------------------------------------------- /src/ArrayFire/Device.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Device.hs -------------------------------------------------------------------------------- /src/ArrayFire/Exception.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Exception.hs -------------------------------------------------------------------------------- /src/ArrayFire/FFI.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/FFI.hs -------------------------------------------------------------------------------- /src/ArrayFire/Features.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Features.hs -------------------------------------------------------------------------------- /src/ArrayFire/Graphics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Graphics.hs -------------------------------------------------------------------------------- /src/ArrayFire/Image.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Image.hs -------------------------------------------------------------------------------- /src/ArrayFire/Index.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Index.hs -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Algorithm.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Algorithm.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Arith.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Arith.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Array.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Array.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/BLAS.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/BLAS.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Backend.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Backend.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/CUDA.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/CUDA.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Data.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Data.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Defines.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Defines.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Device.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Device.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Exception.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Exception.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Features.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Features.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Graphics.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Graphics.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Image.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Image.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Index.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Index.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Internal.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Internal.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/LAPACK.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/LAPACK.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/OpenCL.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/OpenCL.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Random.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Random.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Seq.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Seq.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Signal.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Signal.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Sparse.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Sparse.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Statistics.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Statistics.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Types.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Types.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Util.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Util.hsc -------------------------------------------------------------------------------- /src/ArrayFire/Internal/Vision.hsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Internal/Vision.hsc -------------------------------------------------------------------------------- /src/ArrayFire/LAPACK.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/LAPACK.hs -------------------------------------------------------------------------------- /src/ArrayFire/Orphans.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Orphans.hs -------------------------------------------------------------------------------- /src/ArrayFire/Random.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Random.hs -------------------------------------------------------------------------------- /src/ArrayFire/Signal.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Signal.hs -------------------------------------------------------------------------------- /src/ArrayFire/Sparse.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Sparse.hs -------------------------------------------------------------------------------- /src/ArrayFire/Statistics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Statistics.hs -------------------------------------------------------------------------------- /src/ArrayFire/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Types.hs -------------------------------------------------------------------------------- /src/ArrayFire/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Util.hs -------------------------------------------------------------------------------- /src/ArrayFire/Vision.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/src/ArrayFire/Vision.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/stack.yaml -------------------------------------------------------------------------------- /stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/stack.yaml.lock -------------------------------------------------------------------------------- /test/ArrayFire/AlgorithmSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/AlgorithmSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/ArithSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/ArithSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/ArraySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/ArraySpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/BLASSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/BLASSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/BackendSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/BackendSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/DataSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/DataSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/DeviceSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/DeviceSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/FeaturesSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/FeaturesSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/GraphicsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/GraphicsSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/ImageSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/ImageSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/IndexSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/IndexSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/LAPACKSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/LAPACKSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/RandomSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/RandomSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/SignalSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/SignalSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/SparseSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/SparseSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/StatisticsSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/StatisticsSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/UtilSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/UtilSpec.hs -------------------------------------------------------------------------------- /test/ArrayFire/VisionSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/ArrayFire/VisionSpec.hs -------------------------------------------------------------------------------- /test/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/Main.hs -------------------------------------------------------------------------------- /test/Spec.hs: -------------------------------------------------------------------------------- 1 | {-# OPTIONS_GHC -F -pgmF hspec-discover -optF --module-name=Spec #-} 2 | -------------------------------------------------------------------------------- /test/Test/Hspec/ApproxExpect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrayfire/arrayfire-haskell/HEAD/test/Test/Hspec/ApproxExpect.hs --------------------------------------------------------------------------------