我有一个不包含数据值的 numpy 数组。我屏蔽了那些没有数据的值,这样它们就不会影响我的计算:
array = numpy.ma.masked_values(array, options['ndv'], copy=False)
然后我使用 memmove 将 numpy 数组放入共享的 ctypes 数组中:
def ndarray_to_shmem(array):
""" Converts a numpy.ndarray to a multiprocessing.Array object.
The memory is copied, and the array is flattened.
"""
arr = array.reshape((-1, ))
data = RawArray(_numpy_to_ctypes[array.dtype.type],
arr.size)
ctypes.memmove(data, array.data[:], len(array.data))
return data
它返回以下堆栈跟踪:
ctypes.memmove(data, array.data[:], len(array.data))
ctypes.ArgumentError: argument 2: <type 'exceptions.TypeError'>: wrong type
是否可以使用 memmove 将屏蔽数组移动到共享的 ctypes 数组中?