In CUDA, you can create a struct with pointers to pass into kernels if you
too many arguments and you hit a limit. Is there any way to do this in
(Py)OpenCL? It appears OpenCL really wants to abstract away a "buffer" from
an underlying "pointer" on the device, presumably so the device is free to
move buffers around as long as it maintains the buffer abstraction.
Given that, how does one get over the kernel argument limitation? Do you
have to try to manage a big chunk of memory manually and offset into that?
That's very fragile if you allocate and deallocate memory frequently, of
varying sizes and so on.
Should I just run a kernel to grab the address of buffers and assume it
won't change?
Also is there any way to see how much register spillage into global memory a
particular kernel will have if run with a particular global/local size, at
least if using an nvidia device, the way you can with CUDA? I'm seeing
strange disparities in performance between CUDA and OpenCL on the same
kernel and I'm trying to get to the bottom of it.
Thanks,
Cyrus
On Donnerstag 22 April 2010, Michael Rule wrote:
> NV Tesla T10,
> I assume its something I am doing wrong...
If you're using NV hardware, it helps to know the CUDA literature. You
must supply a local_size to partition your work into NV's thread
blocks. If you don't you're only submitting one thread block, which has
hardware size limits.
Andreas
PS: Please keep replies on the list. Thanks.
and is there some way to test and prevent this from happening ?
It seems, invariably, there is an upper limit for the number of
threads I can request for kernel call in PyOpenCl.
This upper limit is different for each kernel.
Is there some way to predict this threshold and prevent it ?
What is it caused by ?
On Mittwoch 14 April 2010, Nihad Sinanovic wrote:
> Hey!
>
> Thanks for the reply!
>
> You were right, I was using the Enthought distro of Python. For some reason
> that made setup.py use gcc to compile. I removed Enthought and installed
> Python and Numpy from the usual sources and it worked!
>
> Thanks again!
> Nihad
Happy to hear that.
Dear all--please make sure your replies stay on-list.
Thanks,
Andreas
From what I've seen during the installation, pyopencl-0.91.5 has been
installed without problems (no errors or warning during make...).
Most examples seems to run without any troubles.
However sometimes goes into "Abort trap" and terminate.
For example, matrix-multiply works fine with all the GPUs, but return
Abort trap when launched on the CPU.
python matrix-multiply.py
Choose device(s) from these choices:
[0] <pyopencl.Device 'GeForce GT 120' at 0x1022600>
[1] <pyopencl.Device 'GeForce GT 120' at 0x2022600>
[2] <pyopencl.Device 'GeForce GT 120' at 0x3022600>
[3] <pyopencl.Device 'GeForce GT 120' at 0x4022600>
[4] <pyopencl.Device 'Intel(R) Xeon(R) CPU E5520 @ 2.27GHz'
at 0x1020400>
Choice, comma-separated [0]:4
Abort trap
My main question is : can I brush this error aside? Or did my
installation gone horribly wrong somewhere ?
Mac OS X 10.6.3
Python 2.6.5 (r265:79063, Apr 14 2010, 14:25:50)
[GCC 4.2.1 (Apple Inc. build 5646) (dot 1)] on darwin
numpy-1.3.0
boost_1_42_0
pyopencl-0.91.5
everything has been made for a x86_64 architecture
Hi!
I'm having troubles compiling pyopencl in Windows 7
I'm following the guide on:
http://wiki.tiker.net/PyOpenCL/Installation/Windows
I've tried with Boost 1.39 and 1.42, both installed using the automatic
installer provided.
Using python 2.6
The output I get is:
C:\Users\Nihad\Downloads\pyopencl-0.91.5\pyopencl-0.91.5>python setup.py
install
Scanning installed packages
Setuptools installation detected at
c:\users\nihad\downloads\pyopencl-0.91.5\pyo
pencl-0.91.5
Non-egg installation
Removing elements out of the way...
Already patched.
c:\users\nihad\downloads\pyopencl-0.91.5\pyopencl-0.91.5\setuptools-0.6c9-py2.6.
egg-info already patched.
Extracting in c:\users\nihad\appdata\local\temp\tmpfdgaln
Now working in c:\users\nihad\appdata\local\temp\tmpfdgaln\distribute-0.6.4
Building a Distribute egg in
C:\Users\Nihad\Downloads\pyopencl-0.91.5\pyopencl-0
.91.5
warning: no files found matching 'Makefile' under directory 'docs'
C:\Users\Nihad\Downloads\pyopencl-0.91.5\pyopencl-0.91.5\setuptools-0.6c9-py2.6.
egg-info already exists
running install
running bdist_egg
running egg_info
writing requirements to pyopencl.egg-info\requires.txt
writing pyopencl.egg-info\PKG-INFO
writing top-level names to pyopencl.egg-info\top_level.txt
writing dependency_links to pyopencl.egg-info\dependency_links.txt
writing requirements to pyopencl.egg-info\requires.txt
writing pyopencl.egg-info\PKG-INFO
writing top-level names to pyopencl.egg-info\top_level.txt
writing dependency_links to pyopencl.egg-info\dependency_links.txt
reading manifest file 'pyopencl.egg-info\SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'src\cl\*.hpp'
writing manifest file 'pyopencl.egg-info\SOURCES.txt'
installing library code to build\bdist.win32\egg
running install_lib
running build_py
running build_ext
building '_cl' extension
C:\Python26\Scripts\gcc.exe -mno-cygwin -mdll -O -Wall -Isrc/cpp
"-IC:\Program F
iles\boost\boost_1_39" "-IC:\Program Files\ATI Stream\include"
-IC:\Python26\lib
\site-packages\numpy\core\include -IC:\Python26\include -IC:\Python26\PC -c
src/
wrapper/wrap_cl.cpp -o build\temp.win32-2.6\Release\src\wrapper\wrap_cl.o
/EHsc
/DBOOST_PYTHON_NO_PY_SIGNATURES
epd-gcc.exe: /EHsc: No such file or directory
epd-gcc.exe: /DBOOST_PYTHON_NO_PY_SIGNATURES: No such file or directory
In file included from C:/Program Files/ATI Stream/include/CL/cl.h:32,
from src/wrapper/wrap_cl.hpp:23,
from src/wrapper/wrap_cl.cpp:1:
C:/Program Files/ATI Stream/include/CL/cl_platform.h:75: error: `int8_t'
does no
t name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:76: error: `uint8_t'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:77: error: `int16_t'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:78: error: `uint16_t'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:79: error: `int32_t'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:80: error: `uint32_t'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:81: error: `int64_t'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:82: error: `uint64_t'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:83: error: `uint16_t'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:279: error: ISO C++
forbids
declaration of `cl_char' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:279: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:281: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:282: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:283: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:292: error: ISO C++
forbids
declaration of `cl_char' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:292: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:294: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:295: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:308: error: ISO C++
forbids
declaration of `cl_char' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:308: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:310: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:311: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:327: error: ISO C++
forbids
declaration of `cl_char' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:327: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:329: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:330: error: `cl_char'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:351: error: ISO C++
forbids
declaration of `cl_uchar' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:351: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:353: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:354: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:355: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:364: error: ISO C++
forbids
declaration of `cl_uchar' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:364: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:366: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:367: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:380: error: ISO C++
forbids
declaration of `cl_uchar' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:380: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:382: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:383: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:399: error: ISO C++
forbids
declaration of `cl_uchar' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:399: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:401: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:402: error: `cl_uchar'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:423: error: ISO C++
forbids
declaration of `cl_short' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:423: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:425: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:426: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:427: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:436: error: ISO C++
forbids
declaration of `cl_short' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:436: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:438: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:439: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:452: error: ISO C++
forbids
declaration of `cl_short' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:452: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:454: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:455: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:471: error: ISO C++
forbids
declaration of `cl_short' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:471: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:473: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:474: error: `cl_short'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:495: error: ISO C++
forbids
declaration of `cl_ushort' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:495: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:497: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:498: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:499: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:508: error: ISO C++
forbids
declaration of `cl_ushort' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:508: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:510: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:511: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:524: error: ISO C++
forbids
declaration of `cl_ushort' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:524: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:526: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:527: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:543: error: ISO C++
forbids
declaration of `cl_ushort' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:543: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:545: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:546: error: `cl_ushort'
doe
s not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:566: error: ISO C++
forbids
declaration of `cl_int' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:566: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:568: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:569: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:570: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:579: error: ISO C++
forbids
declaration of `cl_int' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:579: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:581: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:582: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:595: error: ISO C++
forbids
declaration of `cl_int' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:595: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:597: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:598: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:614: error: ISO C++
forbids
declaration of `cl_int' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:614: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:616: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:617: error: `cl_int'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:638: error: ISO C++
forbids
declaration of `cl_uint' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:638: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:640: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:641: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:642: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:651: error: ISO C++
forbids
declaration of `cl_uint' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:651: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:653: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:654: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:667: error: ISO C++
forbids
declaration of `cl_uint' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:667: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:669: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:670: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:686: error: ISO C++
forbids
declaration of `cl_uint' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:686: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:688: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:689: error: `cl_uint'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:709: error: ISO C++
forbids
declaration of `cl_long' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:709: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:711: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:712: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:713: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:722: error: ISO C++
forbids
declaration of `cl_long' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:722: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:724: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:725: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:738: error: ISO C++
forbids
declaration of `cl_long' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:738: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:740: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:741: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:757: error: ISO C++
forbids
declaration of `cl_long' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:757: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:759: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:760: error: `cl_long'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:781: error: ISO C++
forbids
declaration of `cl_ulong' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:781: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:783: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:784: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:785: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:794: error: ISO C++
forbids
declaration of `cl_ulong' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:794: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:796: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:797: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:810: error: ISO C++
forbids
declaration of `cl_ulong' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:810: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:812: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:813: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:829: error: ISO C++
forbids
declaration of `cl_ulong' with no type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:829: error: expected
`;' be
fore "s"
C:/Program Files/ATI Stream/include/CL/cl_platform.h:831: error: `cl_ulong'
does
not name a type
C:/Program Files/ATI Stream/include/CL/cl_platform.h:832: error: `cl_ulong'
does
not name a type
In file included from src/wrapper/wrap_cl.hpp:23,
from src/wrapper/wrap_cl.cpp:1:
C:/Program Files/ATI Stream/include/CL/cl.h:51: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:52: error: `cl_ulong' does not
name
a type
C:/Program Files/ATI Stream/include/CL/cl.h:53: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:54: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:55: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:56: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:57: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:58: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:59: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:60: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:61: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:63: error: `intptr_t' does not
name
a type
C:/Program Files/ATI Stream/include/CL/cl.h:64: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:65: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:66: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:67: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:68: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:69: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:70: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:71: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:72: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:73: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:74: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:75: error: `cl_bitfield' does
not na
me a type
C:/Program Files/ATI Stream/include/CL/cl.h:76: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:77: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:78: error: `cl_int' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:79: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:80: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:81: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:82: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:83: error: `cl_uint' does not
name a
type
C:/Program Files/ATI Stream/include/CL/cl.h:86: error: `cl_channel_order'
does n
ot name a type
C:/Program Files/ATI Stream/include/CL/cl.h:87: error: `cl_channel_type'
does no
t name a type
C:/Program Files/ATI Stream/include/CL/cl.h:413: error: expected initializer
bef
ore "clGetPlatformIDs"
C:/Program Files/ATI Stream/include/CL/cl.h:418: error: expected initializer
bef
ore "clGetPlatformInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:426: error: expected initializer
bef
ore "clGetDeviceIDs"
C:/Program Files/ATI Stream/include/CL/cl.h:433: error: expected initializer
bef
ore "clGetDeviceInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:441: error: expected `,' or
`...' be
fore '*' token
C:/Program Files/ATI Stream/include/CL/cl.h:446: error: ISO C++ forbids
declarat
ion of `cl_context_properties' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:449: error: expected `,' or
`...' be
fore '*' token
C:/Program Files/ATI Stream/include/CL/cl.h:453: error: ISO C++ forbids
declarat
ion of `cl_context_properties' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:456: error: expected initializer
bef
ore "clRetainContext"
C:/Program Files/ATI Stream/include/CL/cl.h:459: error: expected initializer
bef
ore "clReleaseContext"
C:/Program Files/ATI Stream/include/CL/cl.h:462: error: expected initializer
bef
ore "clGetContextInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:472: error:
`cl_command_queue_proper
ties' has not been declared
C:/Program Files/ATI Stream/include/CL/cl.h:473: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:473: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:473: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:476: error: expected initializer
bef
ore "clRetainCommandQueue"
C:/Program Files/ATI Stream/include/CL/cl.h:479: error: expected initializer
bef
ore "clReleaseCommandQueue"
C:/Program Files/ATI Stream/include/CL/cl.h:482: error: expected initializer
bef
ore "clGetCommandQueueInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:489: error: expected initializer
bef
ore "clSetCommandQueueProperty"
C:/Program Files/ATI Stream/include/CL/cl.h:497: error: `cl_mem_flags' has
not b
een declared
C:/Program Files/ATI Stream/include/CL/cl.h:500: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:500: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:500: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:504: error: `cl_mem_flags' has
not b
een declared
C:/Program Files/ATI Stream/include/CL/cl.h:510: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:510: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:510: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:514: error: `cl_mem_flags' has
not b
een declared
C:/Program Files/ATI Stream/include/CL/cl.h:522: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:522: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:522: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:525: error: expected initializer
bef
ore "clRetainMemObject"
C:/Program Files/ATI Stream/include/CL/cl.h:528: error: expected initializer
bef
ore "clReleaseMemObject"
C:/Program Files/ATI Stream/include/CL/cl.h:531: error: expected initializer
bef
ore "clGetSupportedImageFormats"
C:/Program Files/ATI Stream/include/CL/cl.h:539: error: expected initializer
bef
ore "clGetMemObjectInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:546: error: expected initializer
bef
ore "clGetImageInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:555: error: `cl_bool' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:556: error: `cl_addressing_mode'
has
not been declared
C:/Program Files/ATI Stream/include/CL/cl.h:557: error: `cl_filter_mode' has
not
been declared
C:/Program Files/ATI Stream/include/CL/cl.h:558: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:558: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:558: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:558: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:558: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:561: error: expected initializer
bef
ore "clRetainSampler"
C:/Program Files/ATI Stream/include/CL/cl.h:564: error: expected initializer
bef
ore "clReleaseSampler"
C:/Program Files/ATI Stream/include/CL/cl.h:567: error: expected initializer
bef
ore "clGetSamplerInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:576: error: `cl_uint' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:579: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:579: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:579: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:583: error: `cl_uint' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:587: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:588: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:588: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:588: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:588: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:591: error: expected initializer
bef
ore "clRetainProgram"
C:/Program Files/ATI Stream/include/CL/cl.h:594: error: expected initializer
bef
ore "clReleaseProgram"
C:/Program Files/ATI Stream/include/CL/cl.h:597: error: expected initializer
bef
ore "clBuildProgram"
C:/Program Files/ATI Stream/include/CL/cl.h:605: error: expected initializer
bef
ore "clUnloadCompiler"
C:/Program Files/ATI Stream/include/CL/cl.h:608: error: expected initializer
bef
ore "clGetProgramInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:615: error: expected initializer
bef
ore "clGetProgramBuildInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:626: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:626: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:629: error: expected initializer
bef
ore "clCreateKernelsInProgram"
C:/Program Files/ATI Stream/include/CL/cl.h:635: error: expected initializer
bef
ore "clRetainKernel"
C:/Program Files/ATI Stream/include/CL/cl.h:638: error: expected initializer
bef
ore "clReleaseKernel"
C:/Program Files/ATI Stream/include/CL/cl.h:641: error: expected initializer
bef
ore "clSetKernelArg"
C:/Program Files/ATI Stream/include/CL/cl.h:647: error: expected initializer
bef
ore "clGetKernelInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:654: error: expected initializer
bef
ore "clGetKernelWorkGroupInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:663: error: expected initializer
bef
ore "clWaitForEvents"
C:/Program Files/ATI Stream/include/CL/cl.h:667: error: expected initializer
bef
ore "clGetEventInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:674: error: expected initializer
bef
ore "clRetainEvent"
C:/Program Files/ATI Stream/include/CL/cl.h:677: error: expected initializer
bef
ore "clReleaseEvent"
C:/Program Files/ATI Stream/include/CL/cl.h:681: error: expected initializer
bef
ore "clGetEventProfilingInfo"
C:/Program Files/ATI Stream/include/CL/cl.h:689: error: expected initializer
bef
ore "clFlush"
C:/Program Files/ATI Stream/include/CL/cl.h:692: error: expected initializer
bef
ore "clFinish"
C:/Program Files/ATI Stream/include/CL/cl.h:696: error: expected initializer
bef
ore "clEnqueueReadBuffer"
C:/Program Files/ATI Stream/include/CL/cl.h:707: error: expected initializer
bef
ore "clEnqueueWriteBuffer"
C:/Program Files/ATI Stream/include/CL/cl.h:718: error: expected initializer
bef
ore "clEnqueueCopyBuffer"
C:/Program Files/ATI Stream/include/CL/cl.h:729: error: expected initializer
bef
ore "clEnqueueReadImage"
C:/Program Files/ATI Stream/include/CL/cl.h:742: error: expected initializer
bef
ore "clEnqueueWriteImage"
C:/Program Files/ATI Stream/include/CL/cl.h:755: error: expected initializer
bef
ore "clEnqueueCopyImage"
C:/Program Files/ATI Stream/include/CL/cl.h:766: error: expected initializer
bef
ore "clEnqueueCopyImageToBuffer"
C:/Program Files/ATI Stream/include/CL/cl.h:777: error: expected initializer
bef
ore "clEnqueueCopyBufferToImage"
C:/Program Files/ATI Stream/include/CL/cl.h:790: error: `cl_bool' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:791: error: `cl_map_flags' has
not b
een declared
C:/Program Files/ATI Stream/include/CL/cl.h:794: error: `cl_uint' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:797: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:797: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:797: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:797: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:797: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:802: error: `cl_bool' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:803: error: `cl_map_flags' has
not b
een declared
C:/Program Files/ATI Stream/include/CL/cl.h:808: error: `cl_uint' has not
been d
eclared
C:/Program Files/ATI Stream/include/CL/cl.h:811: error: `cl_int' has not
been de
clared
C:/Program Files/ATI Stream/include/CL/cl.h:811: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:811: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:811: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:811: error: ISO C++ forbids
declarat
ion of `parameter' with no type
C:/Program Files/ATI Stream/include/CL/cl.h:814: error: expected initializer
bef
ore "clEnqueueUnmapMemObject"
C:/Program Files/ATI Stream/include/CL/cl.h:822: error: expected initializer
bef
ore "clEnqueueNDRangeKernel"
C:/Program Files/ATI Stream/include/CL/cl.h:833: error: expected initializer
bef
ore "clEnqueueTask"
C:/Program Files/ATI Stream/include/CL/cl.h:840: error: expected initializer
bef
ore "clEnqueueNativeKernel"
C:/Program Files/ATI Stream/include/CL/cl.h:852: error: expected initializer
bef
ore "clEnqueueMarker"
C:/Program Files/ATI Stream/include/CL/cl.h:856: error: expected initializer
bef
ore "clEnqueueWaitForEvents"
C:/Program Files/ATI Stream/include/CL/cl.h:861: error: expected initializer
bef
ore "clEnqueueBarrier"
In file included from src/wrapper/wrap_cl.cpp:1:
src/wrapper/wrap_cl.hpp:235: error: `cl_int' does not name a type
src/wrapper/wrap_cl.hpp:238: error: `cl_int' has not been declared
src/wrapper/wrap_cl.hpp:239: error: ISO C++ forbids declaration of `c' with
no t
ype
src/wrapper/wrap_cl.hpp:251: error: `cl_int' has not been declared
src/wrapper/wrap_cl.hpp:252: error: ISO C++ forbids declaration of `c' with
no t
ype
src/wrapper/wrap_cl.hpp:261: error: `cl_int' does not name a type
src/wrapper/wrap_cl.hpp:266: error: expected `;' before '(' token
src/wrapper/wrap_cl.hpp:323: error: expected `;' before '}' token
src/wrapper/wrap_cl.hpp: In static member function `static std::string
pyopencl:
:error::make_message(const char*, int, const char*)':
src/wrapper/wrap_cl.hpp:242: error: `cl_error_to_str' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:242: warning: unused variable 'cl_error_to_str'
src/wrapper/wrap_cl.hpp: In constructor `pyopencl::error::error(const char*,
int
, const char*)':
src/wrapper/wrap_cl.hpp:253: error: class `pyopencl::error' does not have
any fi
eld named `m_code'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:355: error: `cl_platform_info' has not been declared
src/wrapper/wrap_cl.hpp:356: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp:373: error: `cl_device_type' has not been declared
src/wrapper/wrap_cl.hpp:373: error: ISO C++ forbids declaration of `devtype'
wit
h no type
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::platform::get_info(int) const':
src/wrapper/wrap_cl.hpp:366: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:366: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:366: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:366: error: `clGetPlatformInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:366: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:366: warning: unused variable 'clGetPlatformInfo'
src/wrapper/wrap_cl.hpp:366: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:366: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:366: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:366: error: `clGetPlatformInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:366: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:366: warning: unused variable 'clGetPlatformInfo'
src/wrapper/wrap_cl.hpp: In function `boost::python::list
pyopencl::get_platform
s()':
src/wrapper/wrap_cl.hpp:381: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:381: error: expected `;' before "num_platforms"
src/wrapper/wrap_cl.hpp:382: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:382: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:382: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:382: error: `num_platforms' was not declared in this
sco
pe
src/wrapper/wrap_cl.hpp:382: error: `clGetPlatformIDs' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:382: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:382: warning: unused variable 'num_platforms'
src/wrapper/wrap_cl.hpp:382: warning: unused variable 'clGetPlatformIDs'
src/wrapper/wrap_cl.hpp:384: error: `num_platforms' was not declared in this
sco
pe
src/wrapper/wrap_cl.hpp:385: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:385: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:385: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:385: error: `clGetPlatformIDs' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:385: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:385: warning: unused variable 'clGetPlatformIDs'
src/wrapper/wrap_cl.hpp:381: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:426: error: `cl_device_info' has not been declared
src/wrapper/wrap_cl.hpp:427: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::device::get_info(int) const':
src/wrapper/wrap_cl.hpp:433: error: `cl_device_type' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:433: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:433: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:433: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:433: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:433: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:433: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:433: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:433: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:433: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:433: warning: unused variable 'cl_device_type'
src/wrapper/wrap_cl.hpp:433: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:434: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:434: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:434: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:434: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:434: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:434: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:434: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:434: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:434: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:434: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:434: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:434: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:435: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:435: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:435: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:435: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:435: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:435: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:435: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:435: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:435: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:435: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:435: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:435: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:436: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:436: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:436: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:436: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:436: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:436: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:436: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:436: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:436: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:436: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:436: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:436: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:437: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:437: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:437: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:437: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:437: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:437: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:442: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:442: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:442: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:442: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:442: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:442: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:442: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:442: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:442: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:442: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:442: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:442: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:446: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:446: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:446: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:446: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:446: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:446: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:446: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:446: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:446: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:446: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:446: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:446: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:447: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:447: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:447: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:447: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:447: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:447: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:447: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:447: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:447: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:447: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:447: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:447: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:448: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:448: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:448: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:448: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:448: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:448: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:448: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:448: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:448: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:448: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:448: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:448: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:449: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:449: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:449: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:449: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:449: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:449: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:449: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:449: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:449: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:449: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:449: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:449: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:450: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:450: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:450: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:450: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:450: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:450: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:450: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:450: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:450: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:450: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:450: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:450: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:451: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:451: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:451: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:451: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:451: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:451: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:451: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:451: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:451: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:451: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:451: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:451: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:452: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:452: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:452: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:452: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:452: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:452: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:452: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:452: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:452: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:452: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:452: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:452: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:453: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:453: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:453: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:453: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:453: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:453: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:453: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:453: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:453: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:453: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:453: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:453: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:454: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:454: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:454: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:454: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:454: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:454: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:454: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:454: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:454: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:454: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:454: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:454: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:455: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:455: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:455: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:455: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:455: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:455: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:455: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:455: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:455: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:455: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:455: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:455: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:456: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:456: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:456: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:456: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:456: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:456: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:456: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:456: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:456: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:456: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:456: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:456: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:457: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:457: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:457: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:457: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:457: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:457: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:458: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:458: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:458: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:458: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:458: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:458: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:459: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:459: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:459: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:459: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:459: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:459: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:460: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:460: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:460: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:460: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:460: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:460: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:461: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:461: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:461: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:461: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:461: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:461: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:462: error: `cl_bool' was not declared in this scope
src/wrapper/wrap_cl.hpp:462: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:462: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:462: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:462: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:462: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:462: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:462: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:462: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:462: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:462: warning: unused variable 'cl_bool'
src/wrapper/wrap_cl.hpp:462: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:463: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:463: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:463: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:463: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:463: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:463: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:464: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:464: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:464: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:464: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:464: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:464: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:464: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:464: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:464: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:464: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:464: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:464: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:465: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:465: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:465: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:465: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:465: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:465: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:465: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:465: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:465: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:465: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:465: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:465: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:466: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:466: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:466: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:466: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:466: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:466: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:466: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:466: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:466: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:466: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:466: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:466: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:467: error: `cl_device_fp_config' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:467: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:467: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:467: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:467: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:467: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:467: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:467: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:467: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:467: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:467: warning: unused variable 'cl_device_fp_config'
src/wrapper/wrap_cl.hpp:467: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:469: error: `cl_device_mem_cache_type' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:469: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:469: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:469: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:469: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:469: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:469: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:469: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:469: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:469: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:469: warning: unused variable
'cl_device_mem_cache_type'
src/wrapper/wrap_cl.hpp:469: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:470: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:470: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:470: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:470: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:470: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:470: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:470: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:470: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:470: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:470: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:470: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:470: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:471: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:471: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:471: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:471: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:471: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:471: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:471: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:471: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:471: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:471: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:471: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:471: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:472: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:472: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:472: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:472: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:472: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:472: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:472: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:472: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:472: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:472: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:472: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:472: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:474: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:474: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:474: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:474: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:474: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:474: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:474: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:474: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:474: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:474: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:474: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:474: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:475: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:475: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:475: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:475: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:475: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:475: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:475: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:475: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:475: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:475: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:475: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:475: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:476: error: `cl_device_local_mem_type' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:476: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:476: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:476: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:476: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:476: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:476: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:476: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:476: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:476: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:476: warning: unused variable
'cl_device_local_mem_type'
src/wrapper/wrap_cl.hpp:476: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:477: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:477: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:477: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:477: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:477: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:477: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:477: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:477: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:477: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:477: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:477: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:477: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:478: error: `cl_bool' was not declared in this scope
src/wrapper/wrap_cl.hpp:478: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:478: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:478: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:478: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:478: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:478: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:478: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:478: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:478: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:478: warning: unused variable 'cl_bool'
src/wrapper/wrap_cl.hpp:478: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:479: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:479: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:479: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:479: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:479: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:479: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:480: error: `cl_bool' was not declared in this scope
src/wrapper/wrap_cl.hpp:480: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:480: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:480: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:480: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:480: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:480: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:480: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:480: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:480: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:480: warning: unused variable 'cl_bool'
src/wrapper/wrap_cl.hpp:480: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:481: error: `cl_bool' was not declared in this scope
src/wrapper/wrap_cl.hpp:481: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:481: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:481: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:481: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:481: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:481: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:481: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:481: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:481: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:481: warning: unused variable 'cl_bool'
src/wrapper/wrap_cl.hpp:481: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:482: error: `cl_bool' was not declared in this scope
src/wrapper/wrap_cl.hpp:482: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:482: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:482: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:482: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:482: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:482: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:482: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:482: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:482: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:482: warning: unused variable 'cl_bool'
src/wrapper/wrap_cl.hpp:482: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:483: error: `cl_device_exec_capabilities' was not
declar
ed in this scope
src/wrapper/wrap_cl.hpp:483: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:483: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:483: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:483: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:483: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:483: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:483: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:483: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:483: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:483: warning: unused variable
'cl_device_exec_capabiliti
es'
src/wrapper/wrap_cl.hpp:483: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:484: error: `cl_command_queue_properties' was not
declar
ed in this scope
src/wrapper/wrap_cl.hpp:484: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:484: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:484: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:484: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:484: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:484: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:484: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:484: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:484: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:484: warning: unused variable
'cl_command_queue_properti
es'
src/wrapper/wrap_cl.hpp:484: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:492: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:492: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:492: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:492: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:492: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:492: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:492: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:492: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:492: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:492: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:492: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:492: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp:495: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:495: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:495: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:495: error: `clGetDeviceInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:495: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:495: warning: unused variable 'clGetDeviceInfo'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:506: error: `pyopencl::platform::get_devices'
declared a
s an `inline' variable
src/wrapper/wrap_cl.hpp:506: error: `boost::python::list
pyopencl::platform::get
_devices' is not a static member of `class pyopencl::platform'
src/wrapper/wrap_cl.hpp:506: error: `cl_device_type' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:507: error: expected `,' or `;' before '{' token
src/wrapper/wrap_cl.hpp:561: error: `cl_context_info' has not been declared
src/wrapper/wrap_cl.hpp:562: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In constructor
`pyopencl::context::context(_cl_context*
, bool)':
src/wrapper/wrap_cl.hpp:539: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:539: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:539: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:539: error: `clRetainContext' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:539: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:539: warning: unused variable 'clRetainContext'
src/wrapper/wrap_cl.hpp: In destructor `pyopencl::context::~context()':
src/wrapper/wrap_cl.hpp:545: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:545: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:545: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:545: error: `clReleaseContext' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:545: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:545: warning: unused variable 'clReleaseContext'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::context::get_info(int) const':
src/wrapper/wrap_cl.hpp:566: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:566: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:566: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:566: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:566: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:566: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:566: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:566: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:566: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:566: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:566: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:566: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:572: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:572: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:572: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:572: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:572: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:572: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:572: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:572: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:572: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:572: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:572: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:572: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:583: error: `cl_context_properties' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:583: error: template argument 1 is invalid
src/wrapper/wrap_cl.hpp:583: error: template argument 2 is invalid
src/wrapper/wrap_cl.hpp:583: error: invalid type in declaration before ';'
token
src/wrapper/wrap_cl.hpp:584: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:584: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:584: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:584: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:584: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:584: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:584: error: request for member `resize' in `result',
whi
ch is of non-class type `int'
src/wrapper/wrap_cl.hpp:584: error: request for member `front' in `result',
whic
h is of non-class type `int'
src/wrapper/wrap_cl.hpp:584: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:584: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:584: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:584: error: request for member `empty' in `result',
whic
h is of non-class type `int'
src/wrapper/wrap_cl.hpp:584: error: request for member `front' in `result',
whic
h is of non-class type `int'
src/wrapper/wrap_cl.hpp:584: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:584: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:584: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:587: error: request for member `size' in `result',
which
is of non-class type `int'
src/wrapper/wrap_cl.hpp:589: error: expected `;' before "key"
src/wrapper/wrap_cl.hpp:591: error: `key' was not declared in this scope
src/wrapper/wrap_cl.hpp:597: error: invalid types `int[unsigned int]' for
array
subscript
src/wrapper/wrap_cl.hpp:591: warning: unused variable 'key'
src/wrapper/wrap_cl.hpp:608: error: invalid types `int[size_t]' for array
subscr
ipt
src/wrapper/wrap_cl.hpp: In function `pyopencl::context*
pyopencl::create_contex
t(boost::python::api::object, boost::python::api::object,
boost::python::api::ob
ject)':
src/wrapper/wrap_cl.hpp:625: error: `cl_context_properties' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:625: error: `props_ptr' was not declared in this
scope
src/wrapper/wrap_cl.hpp:626: error: `cl_context_properties' cannot appear in
a c
onstant-expression
src/wrapper/wrap_cl.hpp:626: error: template argument 1 is invalid
src/wrapper/wrap_cl.hpp:626: error: template argument 2 is invalid
src/wrapper/wrap_cl.hpp:626: error: invalid type in declaration before ';'
token
src/wrapper/wrap_cl.hpp:634: error: expected `;' before "prop"
src/wrapper/wrap_cl.hpp:636: error: request for member `push_back' in
`props', w
hich is of non-class type `int'
src/wrapper/wrap_cl.hpp:636: error: `prop' was not declared in this scope
src/wrapper/wrap_cl.hpp:641: error: request for member `push_back' in
`props', w
hich is of non-class type `int'
src/wrapper/wrap_cl.hpp:642: error: `cl_context_properties' is not a type
src/wrapper/wrap_cl.hpp:647: error: request for member `push_back' in
`props', w
hich is of non-class type `int'
src/wrapper/wrap_cl.hpp:648: error: request for member `empty' in `props',
which
is of non-class type `int'
src/wrapper/wrap_cl.hpp:648: error: request for member `front' in `props',
which
is of non-class type `int'
src/wrapper/wrap_cl.hpp:651: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:651: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:673: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:673: warning: unused variable 'status_code'
src/wrapper/wrap_cl.hpp:680: error: `cl_device_type' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:680: error: expected `;' before "dev_type"
src/wrapper/wrap_cl.hpp:682: error: `dev_type' was not declared in this
scope
src/wrapper/wrap_cl.hpp:682: error: `cl_device_type' cannot appear in a
constant
-expression
src/wrapper/wrap_cl.hpp:682: error: template argument 1 is invalid
src/wrapper/wrap_cl.hpp:682: warning: unused variable 'dev_type'
src/wrapper/wrap_cl.hpp:684: error: `dev_type' was not declared in this
scope
src/wrapper/wrap_cl.hpp:684: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:684: warning: unused variable 'dev_type'
src/wrapper/wrap_cl.hpp:684: warning: unused variable 'status_code'
src/wrapper/wrap_cl.hpp:689: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:698: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:698: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:698: error: `clReleaseContext' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:698: warning: unused variable 'clReleaseContext'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:729: error: `cl_command_queue_properties' has not
been d
eclared
src/wrapper/wrap_cl.hpp:730: error: ISO C++ forbids declaration of `props'
with
no type
src/wrapper/wrap_cl.hpp:769: error: `cl_command_queue_info' has not been
declare
d
src/wrapper/wrap_cl.hpp:770: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp:791: error: `cl_command_queue_properties' does not
name
a type
src/wrapper/wrap_cl.hpp: In constructor
`pyopencl::command_queue::command_queue(
_cl_command_queue*, bool)':
src/wrapper/wrap_cl.hpp:717: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:717: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:717: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:717: error: `clRetainCommandQueue' was not declared
in t
his scope
src/wrapper/wrap_cl.hpp:717: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:717: warning: unused variable 'clRetainCommandQueue'
src/wrapper/wrap_cl.hpp: In copy constructor
`pyopencl::command_queue::command_q
ueue(const pyopencl::command_queue&)':
src/wrapper/wrap_cl.hpp:723: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:723: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:723: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:723: error: `clRetainCommandQueue' was not declared
in t
his scope
src/wrapper/wrap_cl.hpp:723: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:723: warning: unused variable 'clRetainCommandQueue'
src/wrapper/wrap_cl.hpp: In constructor
`pyopencl::command_queue::command_queue(
const pyopencl::context&, const pyopencl::device*, int)':
src/wrapper/wrap_cl.hpp:737: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:737: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:737: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:737: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:737: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:737: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:737: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:737: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:737: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:737: error: `clGetContextInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:737: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:737: warning: unused variable 'clGetContextInfo'
src/wrapper/wrap_cl.hpp:744: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:744: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:746: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:744: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp: In destructor
`pyopencl::command_queue::~command_queue(
)':
src/wrapper/wrap_cl.hpp:755: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:755: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:755: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:755: error: `clReleaseCommandQueue' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:755: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:755: warning: unused variable
'clReleaseCommandQueue'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::command_queue::get_info(int) const':
src/wrapper/wrap_cl.hpp:774: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:774: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:774: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:774: error: `clGetCommandQueueInfo' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:774: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:774: warning: unused variable
'clGetCommandQueueInfo'
src/wrapper/wrap_cl.hpp:777: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:777: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:777: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:777: error: `clGetCommandQueueInfo' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:777: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:777: warning: unused variable
'clGetCommandQueueInfo'
src/wrapper/wrap_cl.hpp:780: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:780: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:780: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:780: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:780: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:780: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:780: error: `clGetCommandQueueInfo' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:780: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:780: warning: unused variable
'clGetCommandQueueInfo'
src/wrapper/wrap_cl.hpp:780: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:780: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:780: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:783: error: `cl_command_queue_properties' was not
declar
ed in this scope
src/wrapper/wrap_cl.hpp:783: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:783: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:783: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:783: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:783: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:783: error: `clGetCommandQueueInfo' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:783: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:783: warning: unused variable
'clGetCommandQueueInfo'
src/wrapper/wrap_cl.hpp:783: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:783: warning: unused variable
'cl_command_queue_properti
es'
src/wrapper/wrap_cl.hpp:783: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::command_queue::flush
()':
src/wrapper/wrap_cl.hpp:802: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:802: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:802: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:802: error: `clFlush' was not declared in this scope
src/wrapper/wrap_cl.hpp:802: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:802: warning: unused variable 'clFlush'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::command_queue::finis
h()':
src/wrapper/wrap_cl.hpp:804: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:804: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:804: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:804: error: `clFlush' was not declared in this scope
src/wrapper/wrap_cl.hpp:804: warning: unused variable 'status_code'
src/wrapper/wrap_cl.hpp:804: warning: unused variable 'clFlush'
src/wrapper/wrap_cl.hpp:804: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:804: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:844: error: `cl_event_info' has not been declared
src/wrapper/wrap_cl.hpp:845: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp:866: error: `cl_profiling_info' has not been
declared
src/wrapper/wrap_cl.hpp:867: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In constructor `pyopencl::event::event(_cl_event*,
bool
)':
src/wrapper/wrap_cl.hpp:821: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:821: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:821: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:821: error: `clRetainEvent' was not declared in this
sco
pe
src/wrapper/wrap_cl.hpp:821: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:821: warning: unused variable 'clRetainEvent'
src/wrapper/wrap_cl.hpp: In copy constructor `pyopencl::event::event(const
pyope
ncl::event&)':
src/wrapper/wrap_cl.hpp:826: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:826: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:826: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:826: error: `clRetainEvent' was not declared in this
sco
pe
src/wrapper/wrap_cl.hpp:826: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:826: warning: unused variable 'clRetainEvent'
src/wrapper/wrap_cl.hpp: In destructor `pyopencl::event::~event()':
src/wrapper/wrap_cl.hpp:830: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:830: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:830: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:830: error: `clReleaseEvent' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:830: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:830: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::event::get_info(int) const':
src/wrapper/wrap_cl.hpp:849: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:849: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:849: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:849: error: `clGetEventInfo' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:849: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:849: warning: unused variable 'clGetEventInfo'
src/wrapper/wrap_cl.hpp:852: error: `cl_command_type' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:852: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:852: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:852: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:852: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:852: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:852: error: `clGetEventInfo' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:852: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:852: warning: unused variable 'clGetEventInfo'
src/wrapper/wrap_cl.hpp:852: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:852: warning: unused variable 'cl_command_type'
src/wrapper/wrap_cl.hpp:852: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:855: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:855: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:855: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:855: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:855: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:855: error: `clGetEventInfo' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:855: warning: unused variable 'clGetEventInfo'
src/wrapper/wrap_cl.hpp:855: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:855: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:858: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:858: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:858: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:858: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:858: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:858: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:858: error: `clGetEventInfo' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:858: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:858: warning: unused variable 'clGetEventInfo'
src/wrapper/wrap_cl.hpp:858: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:858: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:858: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::event::get_profiling_info(int) const':
src/wrapper/wrap_cl.hpp:874: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:874: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:874: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:874: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:874: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:874: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:874: error: `clGetEventProfilingInfo' was not
declared i
n this scope
src/wrapper/wrap_cl.hpp:874: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:874: warning: unused variable
'clGetEventProfilingInfo'
src/wrapper/wrap_cl.hpp:874: error: `param_value' was not declared in this
scope
src/wrapper/wrap_cl.hpp:874: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:874: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp: In function `void
pyopencl::wait_for_events(boost::pyth
on::api::object)':
src/wrapper/wrap_cl.hpp:887: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:887: error: expected `;' before
"num_events_in_wait_list
"
src/wrapper/wrap_cl.hpp:891: error: `num_events_in_wait_list' was not
declared i
n this scope
src/wrapper/wrap_cl.hpp:891: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:894: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:894: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:894: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:894: error: `num_events_in_wait_list' was not
declared i
n this scope
src/wrapper/wrap_cl.hpp:894: error: `clWaitForEvents' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:894: warning: unused variable 'status_code'
src/wrapper/wrap_cl.hpp:894: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:894: warning: unused variable 'clWaitForEvents'
src/wrapper/wrap_cl.hpp:894: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:894: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:887: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_marker(
pyopencl::command_queue&)':
src/wrapper/wrap_cl.hpp:904: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:904: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:904: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:904: error: `clEnqueueMarker' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:904: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:904: warning: unused variable 'clEnqueueMarker'
src/wrapper/wrap_cl.hpp:907: error: `clReleaseEvent' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:907: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp: In function `void
pyopencl::enqueue_wait_for_events(pyo
pencl::command_queue&, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:916: error: `cl_uint' was not declared in this scope
src/wrapper/wrap_cl.hpp:916: error: expected `;' before "num_events"
src/wrapper/wrap_cl.hpp:920: error: `num_events' was not declared in this
scope
src/wrapper/wrap_cl.hpp:920: warning: unused variable 'num_events'
src/wrapper/wrap_cl.hpp:923: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:923: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:923: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:923: error: `num_events' was not declared in this
scope
src/wrapper/wrap_cl.hpp:923: error: `clEnqueueWaitForEvents' was not
declared in
this scope
src/wrapper/wrap_cl.hpp:923: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:923: warning: unused variable 'num_events'
src/wrapper/wrap_cl.hpp:923: warning: unused variable
'clEnqueueWaitForEvents'
src/wrapper/wrap_cl.hpp:916: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `void
pyopencl::enqueue_barrier(pyopencl::c
ommand_queue&)':
src/wrapper/wrap_cl.hpp:932: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:932: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:932: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:932: error: `clEnqueueBarrier' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:932: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:932: warning: unused variable 'clEnqueueBarrier'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:999: error: `cl_mem_info' has not been declared
src/wrapper/wrap_cl.hpp:1000: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In constructor
`pyopencl::memory_object::memory_object(
_cl_mem*, bool, boost::python::api::object*)':
src/wrapper/wrap_cl.hpp:951: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:951: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:951: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:951: error: `clRetainMemObject' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:951: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:951: warning: unused variable 'clRetainMemObject'
src/wrapper/wrap_cl.hpp: In copy constructor
`pyopencl::memory_object::memory_ob
ject(pyopencl::memory_object&)':
src/wrapper/wrap_cl.hpp:960: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:960: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:960: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:960: error: `clRetainMemObject' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:960: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:960: warning: unused variable 'clRetainMemObject'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::memory_object::relea
se()':
src/wrapper/wrap_cl.hpp:968: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:968: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:968: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:968: error: `clReleaseMemObject' was not declared in
thi
s scope
src/wrapper/wrap_cl.hpp:968: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:968: warning: unused variable 'clReleaseMemObject'
src/wrapper/wrap_cl.hpp: In member function `size_t
pyopencl::memory_object::siz
e() const':
src/wrapper/wrap_cl.hpp:994: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:994: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:994: error: `status_code' was not declared in this
scope
src/wrapper/wrap_cl.hpp:994: error: `clGetMemObjectInfo' was not declared in
thi
s scope
src/wrapper/wrap_cl.hpp:994: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:994: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::memory_object::get_info(int) const':
src/wrapper/wrap_cl.hpp:1004: error: `cl_mem_object_type' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1004: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1004: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1004: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1004: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1004: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1004: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1004: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1004: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp:1004: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1004: warning: unused variable 'cl_mem_object_type'
src/wrapper/wrap_cl.hpp:1004: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1007: error: `cl_mem_flags' was not declared in this
sco
pe
src/wrapper/wrap_cl.hpp:1007: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1007: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1007: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1007: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1007: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1007: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1007: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1007: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp:1007: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1007: warning: unused variable 'cl_mem_flags'
src/wrapper/wrap_cl.hpp:1007: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1010: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1010: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1010: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1010: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1010: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1010: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp:1015: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1015: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1015: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1015: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1015: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1015: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1015: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1015: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1015: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp:1015: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1015: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1015: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1018: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1018: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1018: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1018: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1018: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1018: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1018: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1018: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1018: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp:1018: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1018: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1018: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1021: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1021: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1021: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1021: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1021: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1021: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1046: error: `cl_mem_flags' has not been declared
src/wrapper/wrap_cl.hpp:1050: error: ISO C++ forbids declaration of `flags'
with
no type
src/wrapper/wrap_cl.hpp: In function `pyopencl::memory_object*
pyopencl::create_
buffer(pyopencl::context&, int, size_t, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1083: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1083: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1084: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1096: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1096: error: `clReleaseMemObject' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1096: warning: unused variable 'clReleaseMemObject'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_read_bu
ffer(pyopencl::command_queue&, pyopencl::memory_object&,
boost::python::api::obj
ect, size_t, boost::python::api::object, bool, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1120: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1120: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1120: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1120: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1129: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1129: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1129: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1129: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1129: error: `clEnqueueReadBuffer' was not declared
in t
his scope
src/wrapper/wrap_cl.hpp:1129: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1129: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1129: warning: unused variable 'clEnqueueReadBuffer'
src/wrapper/wrap_cl.hpp:1136: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1136: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1120: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_write_b
uffer(pyopencl::command_queue&, pyopencl::memory_object&,
boost::python::api::ob
ject, size_t, boost::python::api::object, bool,
boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1158: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1158: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1158: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1158: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1167: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1167: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1167: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1167: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1167: error: `clEnqueueWriteBuffer' was not declared
in
this scope
src/wrapper/wrap_cl.hpp:1167: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1167: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1167: warning: unused variable
'clEnqueueWriteBuffer'
src/wrapper/wrap_cl.hpp:1174: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1174: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1158: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_copy_bu
ffer(pyopencl::command_queue&, pyopencl::memory_object&,
pyopencl::memory_object
&, size_t, size_t, size_t, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1189: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1189: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1189: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1189: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1193: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1193: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1193: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1193: error: `clGetMemObjectInfo' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1193: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1193: warning: unused variable 'clGetMemObjectInfo'
src/wrapper/wrap_cl.hpp:1198: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1198: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1198: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1198: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1198: error: `clEnqueueCopyBuffer' was not declared
in t
his scope
src/wrapper/wrap_cl.hpp:1198: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1198: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1198: warning: unused variable 'clEnqueueCopyBuffer'
src/wrapper/wrap_cl.hpp:1208: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1208: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1189: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1222: error: `cl_image_info' has not been declared
src/wrapper/wrap_cl.hpp:1223: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::image::get_image_info(int) const':
src/wrapper/wrap_cl.hpp:1227: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1227: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1227: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1227: error: `clGetImageInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1227: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1227: warning: unused variable 'clGetImageInfo'
src/wrapper/wrap_cl.hpp:1235: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1235: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1235: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1235: error: `clGetImageInfo' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1235: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1235: warning: unused variable 'clGetImageInfo'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1246: error: `cl_channel_order' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1246: error: `cl_channel_type' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1247: error: initializer expression list treated as
comp
ound expression
src/wrapper/wrap_cl.hpp:1247: error: expected `,' or `;' before '{' token
src/wrapper/wrap_cl.hpp:1256: error: `cl_mem_flags' has not been declared
src/wrapper/wrap_cl.hpp:1257: error: `cl_mem_object_type' has not been
declared
src/wrapper/wrap_cl.hpp:1258: error: ISO C++ forbids declaration of `flags'
with
no type
src/wrapper/wrap_cl.hpp:1258: error: ISO C++ forbids declaration of
`image_type'
with no type
src/wrapper/wrap_cl.hpp: In function `boost::python::list
pyopencl::get_supporte
d_image_formats(const pyopencl::context&, int, int)':
src/wrapper/wrap_cl.hpp:1259: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1259: error: expected `;' before "num_image_formats"
src/wrapper/wrap_cl.hpp:1260: error: `num_image_formats' was not declared in
thi
s scope
src/wrapper/wrap_cl.hpp:1266: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1266: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1266: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1266: error: `clGetSupportedImageFormats' was not
declar
ed in this scope
src/wrapper/wrap_cl.hpp:1266: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1266: warning: unused variable
'clGetSupportedImageForma
ts'
src/wrapper/wrap_cl.hpp:1259: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1274: error: `cl_uint' does not name a type
src/wrapper/wrap_cl.hpp:1294: error: `cl_uint' does not name a type
src/wrapper/wrap_cl.hpp:1320: error: `cl_uint' does not name a type
src/wrapper/wrap_cl.hpp:1331: error: `cl_mem_flags' has not been declared
src/wrapper/wrap_cl.hpp:1338: error: ISO C++ forbids declaration of `flags'
with
no type
src/wrapper/wrap_cl.hpp: In function `pyopencl::image*
pyopencl::create_image(co
nst pyopencl::context&, int, const cl_image_format&,
boost::python::api::object,
boost::python::api::object, boost::python::api::object,
boost::python::api::obj
ect)':
src/wrapper/wrap_cl.hpp:1382: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1382: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1399: error: expected `;' before "itemsize"
src/wrapper/wrap_cl.hpp:1400: error: `itemsize' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1400: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1400: warning: unused variable 'itemsize'
src/wrapper/wrap_cl.hpp:1400: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1405: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1431: error: expected `;' before "itemsize"
src/wrapper/wrap_cl.hpp:1433: error: `itemsize' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1435: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1433: warning: unused variable 'itemsize'
src/wrapper/wrap_cl.hpp:1435: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1440: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1456: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1456: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1456: error: `clReleaseMemObject' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1456: warning: unused variable 'clReleaseMemObject'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_read_im
age(pyopencl::command_queue&, pyopencl::image&, boost::python::api::object,
boos
t::python::api::object, boost::python::api::object, size_t, size_t,
boost::pytho
n::api::object, bool, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1481: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1481: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1481: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1481: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1492: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1492: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1492: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1492: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1492: error: `clEnqueueReadImage' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1492: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1492: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1492: warning: unused variable 'clEnqueueReadImage'
src/wrapper/wrap_cl.hpp:1499: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1499: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1481: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_write_i
mage(pyopencl::command_queue&, pyopencl::image&, boost::python::api::object,
boo
st::python::api::object, boost::python::api::object, size_t, size_t,
boost::pyth
on::api::object, bool, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1522: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1522: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1522: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1522: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1533: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1533: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1533: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1533: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1533: error: `clEnqueueWriteImage' was not declared
in t
his scope
src/wrapper/wrap_cl.hpp:1533: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1533: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1533: warning: unused variable 'clEnqueueWriteImage'
src/wrapper/wrap_cl.hpp:1540: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1540: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1522: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_copy_im
age(pyopencl::command_queue&, pyopencl::memory_object&,
pyopencl::memory_object&
, boost::python::api::object, boost::python::api::object,
boost::python::api::ob
ject, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1556: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1556: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1556: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1556: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1562: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1562: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1562: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1562: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1562: error: `clEnqueueCopyImage' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1562: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1562: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1562: warning: unused variable 'clEnqueueCopyImage'
src/wrapper/wrap_cl.hpp:1567: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1567: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1556: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_copy_im
age_to_buffer(pyopencl::command_queue&, pyopencl::memory_object&,
pyopencl::memo
ry_object&, boost::python::api::object, boost::python::api::object, size_t,
boos
t::python::api::object)':
src/wrapper/wrap_cl.hpp:1583: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1583: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1583: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1583: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1588: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1588: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1588: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1588: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1588: error: `clEnqueueCopyImageToBuffer' was not
declar
ed in this scope
src/wrapper/wrap_cl.hpp:1588: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1588: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1588: warning: unused variable
'clEnqueueCopyImageToBuff
er'
src/wrapper/wrap_cl.hpp:1593: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1593: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1583: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_copy_bu
ffer_to_image(pyopencl::command_queue&, pyopencl::memory_object&,
pyopencl::memo
ry_object&, size_t, boost::python::api::object, boost::python::api::object,
boos
t::python::api::object)':
src/wrapper/wrap_cl.hpp:1609: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1609: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1609: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1609: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1614: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1614: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1614: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1614: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1614: error: `clEnqueueCopyBufferToImage' was not
declar
ed in this scope
src/wrapper/wrap_cl.hpp:1614: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1614: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1614: warning: unused variable
'clEnqueueCopyBufferToIma
ge'
src/wrapper/wrap_cl.hpp:1619: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1619: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1609: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In member function `pyopencl::event*
pyopencl::memory_m
ap::release(pyopencl::command_queue*, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1648: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1648: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1648: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1648: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1654: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1654: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1654: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1654: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1654: error: `clEnqueueUnmapMemObject' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1654: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1654: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1654: warning: unused variable
'clEnqueueUnmapMemObject'
src/wrapper/wrap_cl.hpp:1661: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1661: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:1648: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1671: error: `cl_map_flags' has not been declared
src/wrapper/wrap_cl.hpp:1677: error: ISO C++ forbids declaration of `flags'
with
no type
src/wrapper/wrap_cl.hpp: In function `boost::python::api::object
pyopencl::enque
ue_map_buffer(pyopencl::command_queue&, pyopencl::memory_object&, int,
size_t, b
oost::python::api::object, boost::python::api::object,
boost::python::api::objec
t, boost::python::api::object, bool)':
src/wrapper/wrap_cl.hpp:1678: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1678: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1678: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1678: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1687: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1687: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1693: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1694: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1707: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1707: error: `clEnqueueUnmapMemObject' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1707: warning: unused variable
'clEnqueueUnmapMemObject'
src/wrapper/wrap_cl.hpp:1678: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1693: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1729: error: `cl_map_flags' has not been declared
src/wrapper/wrap_cl.hpp:1736: error: ISO C++ forbids declaration of `flags'
with
no type
src/wrapper/wrap_cl.hpp: In function `boost::python::api::object
pyopencl::enque
ue_map_image(pyopencl::command_queue&, pyopencl::memory_object&, int,
boost::pyt
hon::api::object, boost::python::api::object, boost::python::api::object,
boost:
:python::api::object, boost::python::api::object,
boost::python::api::object, bo
ol)':
src/wrapper/wrap_cl.hpp:1737: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1737: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:1737: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1737: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:1743: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1743: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1750: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1751: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1764: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1764: error: `clEnqueueUnmapMemObject' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:1764: warning: unused variable
'clEnqueueUnmapMemObject'
src/wrapper/wrap_cl.hpp:1737: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1750: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1795: error: `cl_addressing_mode' has not been
declared
src/wrapper/wrap_cl.hpp:1795: error: `cl_filter_mode' has not been declared
src/wrapper/wrap_cl.hpp:1796: error: ISO C++ forbids declaration of `am'
with no
type
src/wrapper/wrap_cl.hpp:1796: error: ISO C++ forbids declaration of `fm'
with no
type
src/wrapper/wrap_cl.hpp:1825: error: `cl_sampler_info' has not been declared
src/wrapper/wrap_cl.hpp:1826: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In constructor `pyopencl::sampler::sampler(const
pyopen
cl::context&, bool, int, int)':
src/wrapper/wrap_cl.hpp:1797: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1797: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1801: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1797: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp: In destructor `pyopencl::sampler::~sampler()':
src/wrapper/wrap_cl.hpp:1810: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1810: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1810: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1810: error: `clReleaseSampler' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1810: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1810: warning: unused variable 'clReleaseSampler'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::sampler::get_info(int) const':
src/wrapper/wrap_cl.hpp:1830: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1830: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1830: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1830: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1830: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1830: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1830: error: `clGetSamplerInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1830: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1830: warning: unused variable 'clGetSamplerInfo'
src/wrapper/wrap_cl.hpp:1830: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1830: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1830: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1833: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1833: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1833: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1833: error: `clGetSamplerInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1833: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1833: warning: unused variable 'clGetSamplerInfo'
src/wrapper/wrap_cl.hpp:1836: error: `cl_addressing_mode' was not declared
in th
is scope
src/wrapper/wrap_cl.hpp:1836: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1836: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1836: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1836: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1836: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1836: error: `clGetSamplerInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1836: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1836: warning: unused variable 'clGetSamplerInfo'
src/wrapper/wrap_cl.hpp:1836: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1836: warning: unused variable 'cl_addressing_mode'
src/wrapper/wrap_cl.hpp:1836: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1839: error: `cl_filter_mode' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1839: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1839: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1839: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1839: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1839: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1839: error: `clGetSamplerInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1839: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1839: warning: unused variable 'clGetSamplerInfo'
src/wrapper/wrap_cl.hpp:1839: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1839: warning: unused variable 'cl_filter_mode'
src/wrapper/wrap_cl.hpp:1839: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1842: error: `cl_bool' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1842: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1842: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1842: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1842: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1842: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1842: error: `clGetSamplerInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1842: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1842: warning: unused variable 'clGetSamplerInfo'
src/wrapper/wrap_cl.hpp:1842: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1842: warning: unused variable 'cl_bool'
src/wrapper/wrap_cl.hpp:1842: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:1885: error: `cl_program_info' has not been declared
src/wrapper/wrap_cl.hpp:1886: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp:1958: error: `cl_program_build_info' has not been
declar
ed
src/wrapper/wrap_cl.hpp:1959: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In constructor
`pyopencl::program::program(_cl_program*
, bool)':
src/wrapper/wrap_cl.hpp:1865: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1865: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1865: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1865: error: `clRetainProgram' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1865: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1865: warning: unused variable 'clRetainProgram'
src/wrapper/wrap_cl.hpp: In destructor `pyopencl::program::~program()':
src/wrapper/wrap_cl.hpp:1870: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1870: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1870: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1870: error: `clReleaseProgram' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1870: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1870: warning: unused variable 'clReleaseProgram'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::program::get_info(int) const':
src/wrapper/wrap_cl.hpp:1890: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1890: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1890: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1890: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1890: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1890: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1890: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1890: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1890: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1890: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1890: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1890: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1893: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1893: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1893: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1893: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1893: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1893: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1896: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:1896: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1896: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1896: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1896: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1896: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1896: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1896: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1896: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1896: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1896: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:1896: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1901: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1901: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1901: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1901: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1901: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1901: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1901: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1901: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1901: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1901: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1901: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1901: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1910: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1910: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1910: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1910: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1910: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1910: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1910: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1910: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1910: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1910: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1910: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1910: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1914: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1914: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1914: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1914: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1914: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1914: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1914: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1914: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1914: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1914: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1914: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1914: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1920: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1920: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1920: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1920: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1920: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1920: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1920: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1920: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1920: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1920: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1920: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1920: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp:1935: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1935: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1935: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1935: error: `clGetProgramInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1935: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1935: warning: unused variable 'clGetProgramInfo'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::program::get_build_info(const pyopencl::device&, int) const':
src/wrapper/wrap_cl.hpp:1964: error: `cl_build_status' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:1964: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:1964: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1964: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1964: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1964: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1964: error: `clGetProgramBuildInfo' was not
declared in
this scope
src/wrapper/wrap_cl.hpp:1964: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1964: warning: unused variable
'clGetProgramBuildInfo'
src/wrapper/wrap_cl.hpp:1964: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1964: warning: unused variable 'cl_build_status'
src/wrapper/wrap_cl.hpp:1964: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:1969: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1969: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1969: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1969: error: `clGetProgramBuildInfo' was not
declared in
this scope
src/wrapper/wrap_cl.hpp:1969: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1969: warning: unused variable
'clGetProgramBuildInfo'
src/wrapper/wrap_cl.hpp:1969: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1969: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1969: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1969: error: `clGetProgramBuildInfo' was not
declared in
this scope
src/wrapper/wrap_cl.hpp:1969: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1969: warning: unused variable
'clGetProgramBuildInfo'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::program::build(std::
string, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:1982: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1982: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1982: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1982: error: `clBuildProgram' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1982: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1982: warning: unused variable 'clBuildProgram'
src/wrapper/wrap_cl.hpp:1991: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:1991: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:1991: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:1991: error: `clBuildProgram' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:1991: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:1991: warning: unused variable 'clBuildProgram'
src/wrapper/wrap_cl.hpp: In function `pyopencl::program*
pyopencl::create_progra
m_with_source(pyopencl::context&, const std::string&)':
src/wrapper/wrap_cl.hpp:2008: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2008: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2010: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2021: error: `clReleaseProgram' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2021: warning: unused variable 'clReleaseProgram'
src/wrapper/wrap_cl.hpp:2008: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp: In function `pyopencl::program*
pyopencl::create_progra
m_with_binary(pyopencl::context&, boost::python::api::object,
boost::python::api
::object)':
src/wrapper/wrap_cl.hpp:2059: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2059: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2063: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2074: error: `clReleaseProgram' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2074: warning: unused variable 'clReleaseProgram'
src/wrapper/wrap_cl.hpp:2059: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp: In function `void pyopencl::unload_compiler()':
src/wrapper/wrap_cl.hpp:2083: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2083: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2083: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2083: error: `clUnloadCompiler' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2083: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2083: warning: unused variable 'clUnloadCompiler'
src/wrapper/wrap_cl.hpp: At global scope:
src/wrapper/wrap_cl.hpp:2148: error: `cl_uint' has not been declared
src/wrapper/wrap_cl.hpp:2149: error: ISO C++ forbids declaration of
`arg_index'
with no type
src/wrapper/wrap_cl.hpp:2153: error: `cl_uint' has not been declared
src/wrapper/wrap_cl.hpp:2154: error: ISO C++ forbids declaration of
`arg_index'
with no type
src/wrapper/wrap_cl.hpp:2160: error: `cl_uint' has not been declared
src/wrapper/wrap_cl.hpp:2161: error: ISO C++ forbids declaration of
`arg_index'
with no type
src/wrapper/wrap_cl.hpp:2166: error: `cl_uint' has not been declared
src/wrapper/wrap_cl.hpp:2167: error: ISO C++ forbids declaration of
`arg_index'
with no type
src/wrapper/wrap_cl.hpp:2173: error: `cl_uint' has not been declared
src/wrapper/wrap_cl.hpp:2174: error: ISO C++ forbids declaration of
`arg_index'
with no type
src/wrapper/wrap_cl.hpp:2185: error: `cl_uint' has not been declared
src/wrapper/wrap_cl.hpp:2186: error: ISO C++ forbids declaration of
`arg_index'
with no type
src/wrapper/wrap_cl.hpp:2217: error: `cl_kernel_info' has not been declared
src/wrapper/wrap_cl.hpp:2218: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp:2239: error: `cl_kernel_work_group_info' has not
been de
clared
src/wrapper/wrap_cl.hpp:2242: error: ISO C++ forbids declaration of
`param_name'
with no type
src/wrapper/wrap_cl.hpp: In constructor
`pyopencl::kernel::kernel(_cl_kernel*, b
ool)':
src/wrapper/wrap_cl.hpp:2117: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2117: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2117: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2117: error: `clRetainKernel' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2117: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2117: warning: unused variable 'clRetainKernel'
src/wrapper/wrap_cl.hpp: In constructor `pyopencl::kernel::kernel(const
pyopencl
::program&, const std::string&)':
src/wrapper/wrap_cl.hpp:2122: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2122: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2125: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2122: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp: In destructor `pyopencl::kernel::~kernel()':
src/wrapper/wrap_cl.hpp:2133: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2133: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2133: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2133: error: `clReleaseKernel' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2133: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2133: warning: unused variable 'clReleaseKernel'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::kernel::set_arg_null
(int)':
src/wrapper/wrap_cl.hpp:2150: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2150: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2150: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2150: error: `clSetKernelArg' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2150: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2150: warning: unused variable 'clSetKernelArg'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::kernel::set_arg_mem(
int, pyopencl::memory_object&)':
src/wrapper/wrap_cl.hpp:2156: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2156: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2156: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2156: error: `clSetKernelArg' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2156: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2156: warning: unused variable 'clSetKernelArg'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::kernel::set_arg_loca
l(int, const pyopencl::local_memory&)':
src/wrapper/wrap_cl.hpp:2162: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2162: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2162: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2162: error: `clSetKernelArg' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2162: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2162: warning: unused variable 'clSetKernelArg'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::kernel::set_arg_samp
ler(int, const pyopencl::sampler&)':
src/wrapper/wrap_cl.hpp:2169: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2169: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2169: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2169: error: `clSetKernelArg' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2169: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2169: warning: unused variable 'clSetKernelArg'
src/wrapper/wrap_cl.hpp: In member function `void
pyopencl::kernel::set_arg_buf(
int, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:2181: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2181: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2181: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2181: error: `clSetKernelArg' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2181: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2181: warning: unused variable 'clSetKernelArg'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::kernel::get_info(int) const':
src/wrapper/wrap_cl.hpp:2222: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2222: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2222: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2222: error: `clGetKernelInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2222: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2222: warning: unused variable 'clGetKernelInfo'
src/wrapper/wrap_cl.hpp:2222: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2222: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2222: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2222: error: `clGetKernelInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2222: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2222: warning: unused variable 'clGetKernelInfo'
src/wrapper/wrap_cl.hpp:2225: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2225: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:2225: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2225: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2225: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2225: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2225: error: `clGetKernelInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2225: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2225: warning: unused variable 'clGetKernelInfo'
src/wrapper/wrap_cl.hpp:2225: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2225: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp:2225: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp:2228: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2228: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2228: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2228: error: `clGetKernelInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2228: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2228: warning: unused variable 'clGetKernelInfo'
src/wrapper/wrap_cl.hpp:2231: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2231: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2231: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2231: error: `clGetKernelInfo' was not declared in
this
scope
src/wrapper/wrap_cl.hpp:2231: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2231: warning: unused variable 'clGetKernelInfo'
src/wrapper/wrap_cl.hpp: In member function `boost::python::api::object
pyopencl
::kernel::get_work_group_info(int, const pyopencl::device&) const':
src/wrapper/wrap_cl.hpp:2247: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2247: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2247: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2247: error: `clGetKernelWorkGroupInfo' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2247: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2247: warning: unused variable
'clGetKernelWorkGroupInfo
'
src/wrapper/wrap_cl.hpp:2253: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2253: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2253: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2253: error: `clGetKernelWorkGroupInfo' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2253: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2253: warning: unused variable
'clGetKernelWorkGroupInfo
'
src/wrapper/wrap_cl.hpp:2253: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2253: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2253: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2253: error: `clGetKernelWorkGroupInfo' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2253: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2253: warning: unused variable
'clGetKernelWorkGroupInfo
'
src/wrapper/wrap_cl.hpp:2258: error: `cl_ulong' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2258: error: expected `;' before "param_value"
src/wrapper/wrap_cl.hpp:2258: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2258: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2258: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2258: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2258: error: `clGetKernelWorkGroupInfo' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2258: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2258: warning: unused variable
'clGetKernelWorkGroupInfo
'
src/wrapper/wrap_cl.hpp:2258: error: `param_value' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2258: warning: unused variable 'cl_ulong'
src/wrapper/wrap_cl.hpp:2258: warning: unused variable 'param_value'
src/wrapper/wrap_cl.hpp: In function `boost::python::list
pyopencl::create_kerne
ls_in_program(pyopencl::program&)':
src/wrapper/wrap_cl.hpp:2273: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2273: error: expected `;' before "num_kernels"
src/wrapper/wrap_cl.hpp:2274: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2274: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2274: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2274: error: `num_kernels' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2274: error: `clCreateKernelsInProgram' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2274: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2274: warning: unused variable 'num_kernels'
src/wrapper/wrap_cl.hpp:2274: warning: unused variable
'clCreateKernelsInProgram
'
src/wrapper/wrap_cl.hpp:2278: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2278: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2278: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2278: error: `num_kernels' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2278: error: `clCreateKernelsInProgram' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2278: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2278: warning: unused variable
'clCreateKernelsInProgram
'
src/wrapper/wrap_cl.hpp:2273: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_nd_rang
e_kernel(pyopencl::command_queue&, pyopencl::kernel&,
boost::python::api::object
, boost::python::api::object, boost::python::api::object,
boost::python::api::ob
ject)':
src/wrapper/wrap_cl.hpp:2297: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2297: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:2297: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2297: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:2299: error: expected `;' before "work_dim"
src/wrapper/wrap_cl.hpp:2308: error: `work_dim' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2308: warning: unused variable 'work_dim'
src/wrapper/wrap_cl.hpp:2321: error: `work_dim' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2321: warning: unused variable 'work_dim'
src/wrapper/wrap_cl.hpp:2331: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2331: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2331: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2331: error: `work_dim' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2331: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2331: error: `clEnqueueNDRangeKernel' was not
declared i
n this scope
src/wrapper/wrap_cl.hpp:2331: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2331: warning: unused variable 'work_dim'
src/wrapper/wrap_cl.hpp:2331: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:2331: warning: unused variable
'clEnqueueNDRangeKernel'
src/wrapper/wrap_cl.hpp:2341: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2341: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp: In function `pyopencl::event*
pyopencl::enqueue_task(py
opencl::command_queue&, pyopencl::kernel&, boost::python::api::object)':
src/wrapper/wrap_cl.hpp:2354: error: `cl_uint' was not declared in this
scope
src/wrapper/wrap_cl.hpp:2354: error: expected `;' before
"num_events_in_wait_lis
t"
src/wrapper/wrap_cl.hpp:2354: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2354: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:2357: error: `cl_int' was not declared in this scope
src/wrapper/wrap_cl.hpp:2357: error: expected `;' before "status_code"
src/wrapper/wrap_cl.hpp:2357: error: `status_code' was not declared in this
scop
e
src/wrapper/wrap_cl.hpp:2357: error: `num_events_in_wait_list' was not
declared
in this scope
src/wrapper/wrap_cl.hpp:2357: error: `clEnqueueTask' was not declared in
this sc
ope
src/wrapper/wrap_cl.hpp:2357: warning: unused variable 'cl_int'
src/wrapper/wrap_cl.hpp:2357: warning: unused variable
'num_events_in_wait_list'
src/wrapper/wrap_cl.hpp:2357: warning: unused variable 'clEnqueueTask'
src/wrapper/wrap_cl.hpp:2363: error: `clReleaseEvent' was not declared in
this s
cope
src/wrapper/wrap_cl.hpp:2363: warning: unused variable 'clReleaseEvent'
src/wrapper/wrap_cl.hpp:2354: warning: unused variable 'cl_uint'
src/wrapper/wrap_cl.cpp: In function `void
<unnamed>::translate_cl_error(const p
yopencl::error&)':
src/wrapper/wrap_cl.cpp:24: error: 'const class pyopencl::error' has no
member n
amed 'code'
src/wrapper/wrap_cl.cpp:26: error: 'const class pyopencl::error' has no
member n
amed 'code'
src/wrapper/wrap_cl.cpp:28: error: 'const class pyopencl::error' has no
member n
amed 'code'
src/wrapper/wrap_cl.cpp:28: error: 'const class pyopencl::error' has no
member n
amed 'code'
src/wrapper/wrap_cl.cpp: In function `void init_module__cl()':
src/wrapper/wrap_cl.cpp:448: error: `cl_command_queue_properties' was not
declar
ed in this scope
src/wrapper/wrap_cl.cpp:449: error: template argument 3 is invalid
src/wrapper/wrap_cl.cpp:451: error: `set_property' is not a member of
`init_modu
le__cl()::cls'
src/wrapper/wrap_cl.cpp:448: warning: unused variable
'cl_command_queue_properti
es'
src/wrapper/wrap_cl.cpp:549: error: `image_channel_order' is not a member of
`in
it_module__cl()::cls'
src/wrapper/wrap_cl.cpp:550: error: `image_channel_data_type' is not a
member of
`init_module__cl()::cls'
src/wrapper/wrap_cl.cpp:551: error: `get_image_format_channel_count' was not
dec
lared in this scope
src/wrapper/wrap_cl.cpp:552: error: `get_image_format_channel_dtype_size'
was no
t declared in this scope
src/wrapper/wrap_cl.cpp:553: error: `get_image_format_item_size' was not
declare
d in this scope
src/wrapper/wrap_cl.cpp:551: warning: unused variable
'get_image_format_channel_
count'
src/wrapper/wrap_cl.cpp:552: warning: unused variable
'get_image_format_channel_
dtype_size'
src/wrapper/wrap_cl.cpp:553: warning: unused variable
'get_image_format_item_siz
e'
src/wrapper/wrap_cl.cpp:619: error: `cl_addressing_mode' was not declared in
thi
s scope
src/wrapper/wrap_cl.cpp:619: error: `cl_filter_mode' was not declared in
this sc
ope
src/wrapper/wrap_cl.cpp:619: error: template argument 3 is invalid
src/wrapper/wrap_cl.cpp:619: error: template argument 4 is invalid
src/wrapper/wrap_cl.cpp:619: warning: unused variable 'cl_addressing_mode'
src/wrapper/wrap_cl.cpp:619: warning: unused variable 'cl_filter_mode'
C:/Program Files/boost/boost_1_39/boost/python/make_constructor.hpp: In
function
`boost::python::api::object boost::python::make_constructor(F) [with F =
cl_ima
ge_format*]':
src/wrapper/wrap_cl.cpp:548: instantiated from here
C:/Program Files/boost/boost_1_39/boost/python/make_constructor.hpp:240:
error:
no matching function for call to `get_signature(cl_image_format*&)'
error: command 'gcc' failed with exit status 1
Any help much appreciated!
Thx!
Is there a way to determine the datatype stored in a Cl Buffer after
said buffer has been created ? I can't seem to locate any information
that would reveal this.
--mrule
Hi,
I installed pyopencl 0.91.5 for windows following the instruction in
the wiki page.
When trying to import from the shell I get the following:
Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyopencl
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python26\lib\site-packages\pyopencl-0.91.5-py2.6-win32.egg\pyopencl\__init__.py",
line 3, in <module>
import pyopencl._cl as _cl
ImportError: DLL load failed: The specified module could not be found.
I checked and the _cl.pyd is in my
"C:\Python26\Lib\site-packages\pyopencl-0.91.5-py2.6-win32.egg\pyopencl"
directory.
Ideas anyone?
Micha