This repository was archived by the owner on Jun 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathOpenCL.cabal
90 lines (81 loc) · 2.56 KB
/
OpenCL.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
Name: OpenCL
Version: 1.0.3.4
License: BSD3
License-File: LICENSE
Author: Luis Cabellos
Copyright: (c) 2011 Luis Cabellos, at The Institute of Physics of Cantabria (IFCA)
Category: GPU, FFI, Graphics
Build-Type: Simple
Stability: Experimental
Maintainer: Luis Cabellos
Homepage: https://github.com/IFCA/opencl
Synopsis: Haskell high-level wrapper for OpenCL
bug-reports: https://github.com/IFCA/opencl/issues
Cabal-Version: >=1.8
Tested-With: GHC
Description:
Haskell FFI binding to OpenCL library. It includes high-level wrappers to
help development. Based on the OpenCLRaw package.
.
Most of the functions can throw a 'CLError' exception. Using the module
'Control.Exception' helps to work with this package's exceptions.
Extra-source-files:
README.org
examples/example01.hs
examples/example02.hs
examples/example03.hs
examples/example04.hs
include/CL/*.h
include/CL/*.hpp
src/test/*.hs
Library
Build-tools: c2hs
hs-Source-Dirs: src
ghc-options: -Wall
Build-Depends: base >=4.0 && < 5, bytestring -any, mtl>=2
Exposed-Modules:
Control.Parallel.OpenCL
Control.Parallel.OpenCL.Query
Control.Parallel.OpenCL.Context
Control.Parallel.OpenCL.CommandQueue
Control.Parallel.OpenCL.Memory
Control.Parallel.OpenCL.Event
Control.Parallel.OpenCL.Program
Other-Modules:
Control.Parallel.OpenCL.Types
if os(linux)
cpp-options: -DCALLCONV=ccall
include-dirs: include
Frameworks: OpenCL
-- this is needed for linking executables, but not for ghci -lOpenCL:
extra-libraries: OpenCL
if os(darwin)
cpp-options: -DCALLCONV=ccall -D__nullable= -D__nonnull=
cc-options: "-U__BLOCKS__"
Frameworks: OpenCL
if os(windows)
cpp-options: -DCALLCONV=stdcall
include-dirs: include
-- NOTE: extra-libraries: OpenCL seems to fail without finding library!
-- NOTE: include-dirs without -Iinclude seems to fail too with GHC 7.4.1!
-- switch commented blocks to compile in Window
extra-libraries: OpenCL
-- ghc-options: -lOpenCL
-- ld-options: -lOpenCL
Test-suite tests
type: exitcode-stdio-1.0
main-is: test-opencl.hs
hs-Source-Dirs: src/test
ghc-options: -Wall
-- Uncomment the following line to build tests on Linux or Windows:
-- extra-libraries: OpenCL
build-depends: base >=4.0 && < 5, QuickCheck==2.4.*, OpenCL
source-repository this
type: git
location: https://[email protected]/IFCA/opencl.git
tag: 1.0.3.3
branch: master
source-repository head
type: git
location: https://[email protected]/IFCA/opencl.git
branch: develop