AttributeError: у объекта 'CommandQueue' нет атрибута 'dtype'

Я пытаюсь вычислить БПФ с pyFFT. Но следующий код приводит к ошибке.

self.ctx = cl.create_some_context(interactive=False)            
self.queue = cl.CommandQueue(self.ctx)   
self.plan = Plan(fft_size, self.queue)   
gpu_data0 = cl_array.to_device(self.ctx, self.queue, ref_input)   

ref_input имеет тип:

< type 'numpy.ndarray' >

отладочный вывод:

< pyopencl._cl.CommandQueue object at 0x7f0686c10628 >    
['__class__', '__delattr__', '__dict__', '__doc__', '__enter__', '__eq__', 
 '__exit__','__format__', '__getattribute__', '__hash__', '__init__', 
 '__instance_size__', '__module__', '__ne__', '__new__', '__reduce__', 
 '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', 
 '__subclasshook__', '__weakref__', '_get_cl_version', 'context', 'device', 
 'finish', 'flush', 'from_int_ptr', 'get_info', 'int_ptr', 'properties',    
 'reference_count']   

Traceback (most recent call last):
   File "../dsp.py", line 200, in gpu_fft
     gpu_data0 = cl_array.to_device(self.ctx, self.queue, ref_data)
   File "/usr/lib/python2.7/dist-packages/pyopencl/array.py", line 1446, in to_device
     if ary.dtype == object:
 AttributeError: 'CommandQueue' object has no attribute 'dtype'

На самом деле я не могу найти "dtype". Но почему?

1 ответ

Решение

Функция pyopencl.array.to_device не принимает контекст в качестве параметра в соответствии с документацией. Используйте это вместо:

gpu_data0 = cl_array.to_device(self.queue, ref_input)
Другие вопросы по тегам