有没有办法通过浮点精度或限制浮点范围来加速Python?

发布于 2025-01-10 21:20:10 字数 69 浏览 0 评论 0原文

在 glsl 中,可以使用低精度浮点数来加快计算速度。有没有办法限制 python 中浮点数的精度或范围以加快数学计算速度?

In glsl one can use low precision floats to speed calculations up. Is there a way to limit the precision or range of floats in python to speed up the math?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゝ杯具 2025-01-17 21:20:10

您可以使用 numba.njit(fastmath=True) 并下载 Intel SVML 来加速计算,当然,它使用不安全的浮点。您可以在此处查看纪录片 Numba Just -及时编译

from numba import njit

# Without njit(fastmath=True)
def math_multiplication_power_loop(x,y):
    number = []
    
    for i in range(40):
        number.append((x*y)**i)
    
    return sum(number)


# With njit(fastmath=True)
@njit(fastmath=True)
def math_multiplication_power_loop_njit(x,y):
    number = []
    
    for i in range(40):
        number.append((x*y)**i)
    
    return sum(number)

x = 12344
y = 5567.8


%timeit math_multiplication_power_loop(x,y)
13.1 µs ± 189 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)

%timeit math_multiplication_power_loop_njit(x,y)
1.29 µs ± 21.7 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

You can use numba.njit(fastmath=True) and download Intel SVML to speed up the calculation, which of course in return, it uses unsafe floating points. You can check the documentaries here Numba Just-In-Time Compilation

from numba import njit

# Without njit(fastmath=True)
def math_multiplication_power_loop(x,y):
    number = []
    
    for i in range(40):
        number.append((x*y)**i)
    
    return sum(number)


# With njit(fastmath=True)
@njit(fastmath=True)
def math_multiplication_power_loop_njit(x,y):
    number = []
    
    for i in range(40):
        number.append((x*y)**i)
    
    return sum(number)

x = 12344
y = 5567.8


%timeit math_multiplication_power_loop(x,y)
13.1 µs ± 189 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)

%timeit math_multiplication_power_loop_njit(x,y)
1.29 µs ± 21.7 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文