0

我无法让内核在两个不同的 OpenCL 平台上运行。平台的唯一区别是一个是 OpenCL 1.1,另一个是 1.2:

代码适用于此设备(OS X 10.8):

===============================================================
('Platform name:', 'Apple')
('Platform profile:', 'FULL_PROFILE')
('Platform vendor:', 'Apple')
('Platform version:', 'OpenCL 1.2 (Sep 20 2012 17:42:28)')
---------------------------------------------------------------
('Device name:', 'Intel(R) Core(TM) i5-3427U CPU @ 1.80GHz')
('Device type:', 'CPU')
('Device memory: ', 8192L, 'MB')
('Device max clock speed:', 1800, 'MHz')
('Device compute units:', 4)

目标设备(Ubuntu 11.04):

===============================================================
('Platform name:', 'NVIDIA CUDA')
('Platform profile:', 'FULL_PROFILE')
('Platform vendor:', 'NVIDIA Corporation')
('Platform version:', 'OpenCL 1.1 CUDA 4.2.1')
---------------------------------------------------------------
('Device name:', 'Tesla M2050')
('Device type:', 'GPU')
('Device memory: ', 3071, 'MB')
('Device max clock speed:', 1147, 'MHz')
('Device compute units:', 14)
===============================================================
('Platform name:', 'NVIDIA CUDA')
('Platform profile:', 'FULL_PROFILE')
('Platform vendor:', 'NVIDIA Corporation')
('Platform version:', 'OpenCL 1.1 CUDA 4.2.1')
---------------------------------------------------------------
('Device name:', 'Tesla M2050')
('Device type:', 'GPU')
('Device memory: ', 3071, 'MB')
('Device max clock speed:', 1147, 'MHz')
('Device compute units:', 14)

我已经将我认为的挂起源追溯到以下代码:

# set up 
host_array = numpy.array(arr)
device_buffer = pyopencl.Buffer(context, pyopencl.mem_flags.WRITE_ONLY, host_array.nbytes)

# run the kernel
program.run(queue, host_array.shape, None, device_buffer)

# copy the results back --- this call causes the code to hang ----
pyopencl.enqueue_copy(queue, host_array, device_buffer)

两个设备之间没有代码更改,并且两个设备都运行 PyOpenCL 2013.1。我错过了什么吗?任何建议都非常感谢。

4

2 回答 2

2

尝试.wait()program.run. 这将确定它是否实际上是挂起的程序。

于 2013-02-05T03:34:35.940 回答
0

原来问题是线程问题。我正在使用线程模块生成的第二个线程来进行我的 pyopencl 调用。我认为问题在于我用来调用 pyopencl 的上下文是在主线程上创建的,我认为这导致了某种问题。

为了解决这个问题,我只是确保在第二个线程而不是主线程上声明我的上下文、队列和创建的程序。

于 2013-02-06T22:08:14.533 回答