【发布时间】:2015-04-30 09:33:15
【问题描述】:
我最近问a question on the optimization of a mask function in Matlab。我得到了两个对我有很大帮助的答案,但根据我的时间,所有 Matlab 解决方案似乎都比其中一个 Numpy 解决方案慢得多。不同功能的代码可以在我之前的问题中找到,但为了了解我在做什么,我给出了 Numpy“循环”解决方案,这当然不是最快的,但可能是最容易阅读的:
def dealiasing2d(where, data):
nk, n0, n1 = data.shape
for i0 in xrange(n0):
for i1 in xrange(n1):
if where[i0, i1]:
data[:, i0, i1] = 0.
我获得(使用 Matlab R2014b 和与 Blas 和 Lapack 链接的“基本”Numpy 1.9.1)(n0 = n1 = N):
N = 500 ; nk = 500:
Method | time (s) | normalized
----------------|----------|------------
Numpy | 0.05 | 1.0
Numpy loop | 0.05 | 1.0
Matlab find | 0.74 | 14.8
Matlab bsxfun2 | 0.76 | 15.2
Matlab bsxfun | 0.78 | 15.6
Matlab loop | 0.78 | 15.6
Matlab repmat | 0.89 | 17.8
N = 500 ; nk = 100:
Method | time (s) | normalized
----------------|----------|------------
Numpy | 0.01 | 1.0
Numpy loop | 0.03 | 3.0
Matlab find | 0.15 | 13.6
Matlab bsxfun2 | 0.15 | 13.6
Matlab bsxfun | 0.16 | 14.5
Matlab loop | 0.16 | 14.5
Matlab repmat | 0.18 | 16.4
N = 2000 ; nk = 10:
Method | time (s) | normalized
----------------|----------|------------
Numpy | 0.02 | 1.0
Matlab find | 0.23 | 13.8
Matlab bsxfun2 | 0.23 | 13.8
Matlab bsxfun | 0.26 | 15.6
Matlab repmat | 0.28 | 16.8
Matlab loop | 0.34 | 20.4
Numpy loop | 0.42 | 25.1
在我看来,这些结果很奇怪。对我来说,Numpy 和 Matlab 在科学计算方面非常相似,所以性能应该相似,而这里有超过 10 倍!所以我的第一个猜测是我比较这两种语言的方式有问题。另一种可能性可能是我的 Matlab 设置有问题,但我不明白为什么。还是 Matlab 和 Numpy 之间真正的深刻区别?
任何人都可以对这些函数计时以验证这些结果吗?你知道为什么在这个简单的例子中,Matlab 似乎比 Python 慢得多吗?
为了给 Matlab 函数计时,我使用了一个文件:
N = 500;
n0 = N;
n1 = N;
nk = 500;
disp(['N = ', num2str(N), ' ; nk = ', num2str(nk)])
where = false([n1, n0]);
where(1:100, 1:100) = 1;
data = (5.+1i)*ones([n1, n0, nk]);
disp('time dealiasing2d_loops:')
time = timeit(@() dealiasing2d_loops(where, data));
disp([' ', num2str(time), ' s'])
disp('time dealiasing2d_find:')
time = timeit(@() dealiasing2d_find(where, data));
disp([' ', num2str(time), ' s'])
disp('time dealiasing2d_bsxfun:')
time = timeit(@() dealiasing2d_bsxfun(where, data));
disp([' ', num2str(time), ' s'])
disp('time dealiasing2d_bsxfun2:')
time = timeit(@() dealiasing2d_bsxfun2(where, data));
disp([' ', num2str(time), ' s'])
disp('time dealiasing2d_repmat:')
time = timeit(@() dealiasing2d_repmat(where, data));
disp([' ', num2str(time), ' s'])
我用
来衡量 Python 函数的性能from __future__ import print_function
import numpy as np
from timeit import timeit, repeat
import_lines = {
'numpy_bad': 'from dealiasing_numpy_bad import dealiasing2d as dealiasing',
'numpy': 'from dealiasing_numpy import dealiasing'}
tools = import_lines.keys()
time_approx_one_bench = 5.
setup = """
import numpy as np
N = 500
n0, n1 = N, N
nk = 500
where = np.zeros((n0, n1), dtype=np.uint8)
where[0:100, 0:100] = 1
data = (5.+1j)*np.ones((nk, n0, n1), dtype=np.complex128)
"""
exec(setup)
print('n0 = n1 = {}, nk = {}'.format(N, nk))
print(13*' ' + 'min mean')
durations = np.empty([len(tools)])
for it, tool in enumerate(tools):
setup_tool = import_lines[tool] + setup
duration = timeit(setup_tool + 'dealiasing(where, data)', number=1)
nb_repeat = int(round((time_approx_one_bench - duration)/duration))
nb_repeat = max(1, nb_repeat)
ds = np.array(repeat('dealiasing(where, data)',
setup=setup_tool, number=1, repeat=nb_repeat))
duration = ds.min()
print('{:11s} {:8.2e} s ; {:8.2e} s'.format(
tool.capitalize() + ':', duration, ds.mean()))
durations[it] = duration
fastest = tools[durations.argmin()].capitalize()
durations = durations / durations.min()
print('Durations normalized by the fastest method (' + fastest + '):')
for it, tool in enumerate(tools):
print('{:11s} {:8.3f}'.format(tool.capitalize() + ':', durations[it]))
【问题讨论】:
-
不确定这是否有帮助,但是...可能会影响您的测试的一件事是,在 MATLAB 中调用匿名函数非常慢。匿名函数实际上是最慢的,部分原因是它们需要重新创建调用它们的工作区的一部分。其次(但这是个人喜好)——我不喜欢 timeit(),因为它计算的是执行时间的中位数,而不是最小值。这意味着在为函数计时时开销非常大。
-
这里有一个语言比较:julialang.org/benchmarks --- 在大多数没有数组向量化的基准上。在这个基准测试中,Python 解释器的速度似乎相当一致。
标签: python performance matlab numpy benchmarking