gpt4 book ai didi

python - 如何在 python 中有效地使用 JIT 和 mpmath/gmpy?

转载 作者:行者123 更新时间:2023-11-28 18:40:39 24 4
gpt4 key购买 nike

这是我第一次尝试将 JIT 用于 python,这是我想要加速的用例。我读了一些关于 numba 的文章,它看起来很简单,但下面的代码没有提供任何加速。请原谅我可能犯的任何明显错误。

我也尝试按照 cython 的基本教程的建议进行操作,但同样没有时间差异。 http://docs.cython.org/src/tutorial/cython_tutorial.html

我猜我必须做一些像声明变量这样的事情?使用其他库?只对所有内容使用 for 循环?如果我能引用任何指导或示例,我将不胜感激。

例如我从之前的问题中知道Elementwise operations in mpmath slow compared to numpy and its solution使用 gmpy 而不是 mpmath 明显更快。

import numpy as np
from scipy.special import eval_genlaguerre
from sympy import mpmath as mp
from sympy.mpmath import laguerre as genlag2
import collections

from numba import jit

import time

def len2(x):
return len(x) if isinstance(x, collections.Sized) else 1

@jit # <-- removing this doesn't change the output time if anything it's slower with this
def laguerre(a, b, x):
fun = np.vectorize(genlag2)
return fun(a, b, x)

def f1( a, b, c ):

t = time.time()
M = np.ones( [ len2(a), len2(b), len2(c) ] )
A, B, C = np.meshgrid( a, b, c, indexing = 'ij' )
temp = laguerre(A, B, C)
M *= temp
print 'part1: ', time.time() - t
t = time.time()

A, B = np.meshgrid( a, b, indexing= 'ij' )
temp = np.array( [[ mp.fac(x1)/mp.fac(y1) for x1,y1 in zip(x2,y2)] for x2,y2 in zip(A, B)] )
temp = np.reshape( temp, [ len(a), len(b), 1 ] )
temp = np.repeat( temp, len(c), axis = 2 )
print 'part2 so far:', time.time() - t
M *= temp
print 'part2 finally', time.time() - t
t = time.time()

a = mp.arange( 30 )
b = mp.arange( 10 )
c = mp.linspace( 0, 100, 100 )

M = f1( a, b, c)

最佳答案

最好将 numba 与带有自定义装饰器的 vectorize 一起使用,如果没有定义惰性操作将执行,这可能会导致进程变慢。在我看来,Jit 比 vectorize 慢。

关于python - 如何在 python 中有效地使用 JIT 和 mpmath/gmpy?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26565579/

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