我需要实现一个函数来对具有可变节长度的数组的元素求和。所以,
a = np.arange(10)
section_lengths = np.array([3, 2, 4])
out = accumulate(a, section_lengths)
print out
array([ 3., 7., 35.])
我在这里尝试了一个实现cython
:
https://gist.github.com/2784725
对于性能,我将numpy
在 section_lengths 都相同的情况下与纯解决方案进行比较:
LEN = 10000
b = np.ones(LEN, dtype=np.int) * 2000
a = np.arange(np.sum(b), dtype=np.double)
out = np.zeros(LEN, dtype=np.double)
%timeit np.sum(a.reshape(-1,2000), axis=1)
10 loops, best of 3: 25.1 ms per loop
%timeit accumulate.accumulate(a, b, out)
10 loops, best of 3: 64.6 ms per loop
您对提高性能有什么建议吗?