-
Notifications
You must be signed in to change notification settings - Fork 0
/
HsOpenCL.cabal
61 lines (58 loc) · 2.51 KB
/
HsOpenCL.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
cabal-version: >= 1.6
name: HsOpenCL
version: 0.0.1
synopsis: A binding to the OpenCL parallel computing framework.
description: HsOpenCL is a \"middle-level\" API which improves type
safety, convenience and abstraction over the OpenCL C interface
while providing essentially the same programming model.
The library can be used to copy data to and from an OpenCL device;
to load kernels written in
OpenCL's C-like language; and to build and run those kernels.
.
The library currently supports a significant chunk of the OpenCL
standard. The major omissions are:
.
* Images
.
* Mapped buffers and images
.
* Fine-tuned control of out-of-order queue execution
.
Additionally, the library has only been tested with Mac OS X Snow
Leopard; patches are welcome to get it working on other
platforms.
category: System
license: BSD3
license-file: LICENSE
author: Judah Jacobson
maintainer: [email protected]
build-type: Simple
Library
build-tools: c2hs
build-depends: base>=4.3 && < 5, bytestring==0.9.*, array>=0.2 && < 0.4,
mtl==2.*,
-- For OpenCL.TH:
template-haskell>=2.5 && < 2.7, parsec==3.*,
-- For OpenCL.Instances:
vector==0.9.*
exposed-modules:
System.HsOpenCL.Error
System.HsOpenCL.Platform
System.HsOpenCL.Program
System.HsOpenCL.CommandQueue
System.HsOpenCL.Kernel
System.HsOpenCL.Memory
System.HsOpenCL
System.HsOpenCL.TH
other-modules:
System.HsOpenCL.Internal.C2HS
System.HsOpenCL.Internal.Types
System.HsOpenCL.Platform.Foreign
extensions: ForeignFunctionInterface, DeriveDataTypeable, EmptyDataDecls,
ScopedTypeVariables, GADTs, MultiParamTypeClasses
TypeSynonymInstances, FlexibleInstances, FlexibleContexts,
OverlappingInstances
Rank2Types, TemplateHaskell
frameworks: OpenCL
ghc-options: -Wall -fno-warn-orphans -fno-warn-unused-do-bind
cc-options: -U__BLOCKS__