gpt4 book ai didi

python - 快速(呃)numpy 花哨的索引和减少?

转载 作者:太空狗 更新时间:2023-10-29 18:31:44 24 4
gpt4 key购买 nike

我正在尝试使用并加速花式索引来“连接”两个数组并在其中一个结果轴上求和。

像这样:

$ ipython
In [1]: import numpy as np
In [2]: ne, ds = 12, 6
In [3]: i = np.random.randn(ne, ds).astype('float32')
In [4]: t = np.random.randint(0, ds, size=(1e5, ne)).astype('uint8')

In [5]: %timeit i[np.arange(ne), t].sum(-1)
10 loops, best of 3: 44 ms per loop

有没有一种简单的方法可以加速 In [5] 中的语句?我应该使用 OpenMP 和类似 scipy.weaveCythonprange 吗?

最佳答案

numpy.take 由于某种原因比花哨的索引快得多。唯一的技巧是它将数组视为平面数组。

In [1]: a = np.random.randn(12,6).astype(np.float32)

In [2]: c = np.random.randint(0,6,size=(1e5,12)).astype(np.uint8)

In [3]: r = np.arange(12)

In [4]: %timeit a[r,c].sum(-1)
10 loops, best of 3: 46.7 ms per loop

In [5]: rr, cc = np.broadcast_arrays(r,c)

In [6]: flat_index = rr*a.shape[1] + cc

In [7]: %timeit a.take(flat_index).sum(-1)
100 loops, best of 3: 5.5 ms per loop

In [8]: (a.take(flat_index).sum(-1) == a[r,c].sum(-1)).all()
Out[8]: True

我认为除此之外您将看到速度大幅提升的唯一其他方法是使用类似 PyCUDA 的东西为 GPU 编写自定义内核。 .

关于python - 快速(呃)numpy 花哨的索引和减少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11800075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com