4

我希望优化一些由两个嵌套循环组成的 python 代码。我对 numpy 不是很熟悉,但我知道它应该使我能够提高此类任务的效率。下面是我编写的测试代码,它反映了实际代码中发生的情况。目前使用 numpy 范围和迭代器比通常的 python 慢。我究竟做错了什么?这个问题的最佳解决方案是什么?

谢谢你的帮助!

import numpy
import time

# setup a problem analagous to that in the real code
npoints_per_plane = 1000
nplanes = 64
naxis = 1000
npoints3d = naxis + npoints_per_plane * nplanes
npoints = naxis + npoints_per_plane
specres = 1000

# this is where the data is being mapped to
sol = dict()
sol["ems"] = numpy.zeros(npoints3d)
sol["abs"] = numpy.zeros(npoints3d)

# this would normally be non-random input data
data = dict()
data["ems"] = numpy.zeros((npoints,specres))
data["abs"] = numpy.zeros((npoints,specres))
for ip in range(npoints):
    data["ems"][ip,:] = numpy.random.random(specres)[:]
    data["abs"][ip,:] = numpy.random.random(specres)[:]
ems_mod = numpy.random.random(1)[0]
abs_mod = numpy.random.random(1)[0]
ispec = numpy.random.randint(specres)

# this the code I want to optimize

t0 = time.time()

# usual python range and iterator
for ip in range(npoints_per_plane):
    jp = naxis + ip
    for ipl in range(nplanes):
        ip3d = jp + npoints_per_plane * ipl
        sol["ems"][ip3d] = data["ems"][jp,ispec] * ems_mod
        sol["abs"][ip3d] = data["abs"][jp,ispec] * abs_mod

t1 = time.time()

# numpy ranges and iterator
ip_vals = numpy.arange(npoints_per_plane)
ipl_vals = numpy.arange(nplanes)
for ip in numpy.nditer(ip_vals):
    jp = naxis + ip
    for ipl in numpy.nditer(ipl_vals):
        ip3d = jp + npoints_per_plane * ipl
        sol["ems"][ip3d] = data["ems"][jp,ispec] * ems_mod
        sol["abs"][ip3d] = data["abs"][jp,ispec] * abs_mod


t2 = time.time()

print "plain python: %0.3f seconds" % ( t1 - t0 )
print "numpy: %0.3f seconds" % ( t2 - t1 )

编辑:仅将“jp = naxis + ip”放在第一个 for 循环中

附加说明:

我想出了如何让 numpy 快速执行内部循环,而不是外部循环:

# numpy vectorization
for ip in xrange(npoints_per_plane):
    jp = naxis + ip
    sol["ems"][jp:jp+npoints_per_plane*nplanes:npoints_per_plane] = data["ems"][jp,ispec] * ems_mod
    sol["abs"][jp:jp+npoints_per_plane*nplanes:npoints_per_plane] = data["abs"][jp,ispec] * abs_mod

下面乔的解决方案显示了如何同时做这两个,谢谢!

4

1 回答 1

6

在 numpy 中编写循环的最佳方法不是编写循环,而是使用向量化操作。例如:

c = 0
for i in range(len(a)):
    c += a[i] + b[i]

变成

c = np.sum(a + b, axis=0)

对于这种形状,a第一个变体需要 0.344 秒,第二个变体需要 0.062 秒。b(100000, 100)

在您的问题中提出的情况下,以下是您想要的:

sol['ems'][naxis:] = numpy.ravel(
    numpy.repeat(
        data['ems'][naxis:,ispec,numpy.newaxis] * ems_mod,
        nplanes,
        axis=1
    ),
    order='F'
)

这可以通过一些技巧进一步优化,但这会降低清晰度并且可能是过早的优化,因为:

普通蟒蛇:0.064 秒

numpy:0.002 秒

该解决方案的工作原理如下:

您的原始版本包含jp = naxis + ip仅跳过第一个naxis元素[naxis:]选择除第一个 naxis 元素之外的所有元素。您的内部循环重复data[jp,ispec]fornplanes次的值并将其写入多个位置ip3d = jp + npoints_per_plane * ipl,这相当于一个扁平的 2D 数组偏移naxis. 因此,第二个维度 via 被添加numpy.newaxis到 (previously 1D)data['ems'][naxis:, ispec]中,这些值nplanes沿着这个新维度 via 重复多次numpy.repeatnumpy.ravel然后通过(按 Fortran 顺序,即最低轴具有最小步幅)再次展平生成的 2D 数组并写入 的适当子数组sol['ems']。如果目标数组实际上是二维的,则可以通过使用自动数组广播来跳过重复。

如果遇到无法避免使用循环的情况,可以使用Cython(它支持numpy 数组上的高效缓冲区视图)。

于 2013-07-18T15:23:53.790 回答