Python使用pytest-benchmark做基准测试

安装pytest-benchmark

pip install pytest-benchmark

代码编写

导入pytest

import pytest

我们以“在120以内的正整数中找出和120互质的正整数,并统计个数和求和”为例,比较穷举和使用数学技巧完成该任务的性能。

def coprime_120_1():
    count = 0
    sum = 0
    for i in range(1, 121):
        if i % 2 != 0 and i % 3 != 0 and i % 5 != 0:
            count += 1
            sum += i
    return count, sum   

结果返回(32, 1920)。

def coprime_120_2():
    num_1 = (1 + 120) * 120 / 2
    num_2 = (2 + 120) * 60 / 2
    num_3 = (3 + 120) * 40 / 2
    num_5 = (5 + 120) * 24 / 2
    num_2_3 = (6 + 120) * 20 / 2
    num_2_5 = (10 + 120) * 12 / 2
    num_3_5 = (15 + 120) * 8 / 2
    num_2_3_5 = (30 + 120) * 4 / 2
    count = 120 - 60 - 40 - 24 + 20 + 12 + 8 - 4
    sum = num_1 - num_2 - num_3 - num_5 + num_2_3 + num_2_5 + num_3_5 - num_2_3_5
    return count, sum
def test_coprime_120_1(benchmark):
    result = benchmark(coprime_120_1)
    assert (32, 1920) == result

def test_coprime_120_2(benchmark):
    result = benchmark(coprime_120_2)
    assert (32, 1920) == result   

Benchmark测试

执行ptest命令,可以运行基准测试。假定包含benchmark的文件名称为coprime120.py,那么命令如下:

ptest coprime120.py

运行效果如下图:
运行效果图
可见,数学在程序开发中起到很大的作用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Humbunklung

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值