Python时间性能测量 time.clock() time.time() timeit.timeit()

Python时间性能测量 time.clock() time.time() timeit.timeit()


主要有以下三种方式:

一,CPU时间

time.clock()

测量CPU时间,比较精准,通过比较程序运行前后的CPU时间差,得出程序运行的CPU时间。

二, 时钟时间

time.time()

测量时钟时间,也就是通常的类似掐表计时。

三,基准时间

timeit.timeit(stmt='pass', setup='pass', timer=<default timer>, number=1000000)

简短示例:

timeit(“math.sqrt(2.0)”, “import math”)

timeit(“sqrt(2.0)”, “from ,math import sqrt”)

timeit(“test()”, “from __main__ import test”, number = 10000)

测试一行代码的运行时间,在Python中比较方便,可以直接使用timeit:

Timer 类:

__init__(stmt="pass", setup="pass", timer=default_timer)
     stmt 是执行语句,setup 是导入执行语句环境
print_exc(file=None)
timeit(number=default_number)
     返回测试所用秒数,number 是每个测试中调用被计时语句的次数
repeat(repeat=default_repeat, number=default_number)
     返回测试所用秒数列表,repeat 是重复整个测试的次数,number 是每个测试中执行语句的次数
快捷方法:
timeit(stmt="pass", setup="pass", timer=default_timer, number=default_number)
    = Timer(stmt, setup, timer).timeit(number)
repeat(stmt="pass", setup="pass", timer=default_timer, repeat=default_repeat, number=default_number)
    = Timer(stmt, setup, timer).repeat(repeat, number)
default_timer 在 win32 下是 time.clock(),在 linux 下是 time.time()
default_number = 1000000
default_repeat = 3


实例:

import timeit

def func1(x):
    pow(x, 2)

def func2(x):
    return x * x

v = 10000

func1_test = 'func1(' + str(v) + ')'
func2_test = 'func2(' + str(v) + ')'

print timeit.timeit(func1_test, 'from __main__ import func1')
print timeit.timeit(func2_test, 'from __main__ import func2')

print timeit.repeat(func1_test, 'from __main__ import func1')
print timeit.repeat(func2_test, 'from __main__ import func2')

 

三种方法比较示例(示例中的三个方法都是求解一个数的因子数的个数)

CPU时间的示例:

import time

def countDiv(n):
    "Return the count number of divisors of n."
    count = 1
    for i in range(1, n):
        if n%i == 0:
            count += 1
    return count

def countDiv2(n):
    return len([x for x in range(1, n+1) if n%x == 0])

def countDiv3(n):
    s = set()
    for i in range(1, n):
        if i in s:
            break
        else:
            if n%i == 0:
                s.update({i, n/i})
    return len(s)

start_CPU = time.clock()
a = countDiv(73920)
end_CPU = time.clock()
print("Method 1: %f CPU seconds" % (end_CPU - start_CPU))

start_CPU = time.clock()
a = countDiv2(73920)
end_CPU = time.clock()
print("Method 2: %f CPU seconds" % (end_CPU - start_CPU))

start_CPU = time.clock()
a = countDiv3(73920)
end_CPU = time.clock()
print("Method 3: %f CPU seconds" % (end_CPU - start_CPU))


 

结果:最快的是方法三,方法二和方法一,其实不相上下.

Method 1: 0.022805 CPU seconds
Method 2: 0.015988 CPU seconds
Method 3: 0.000141 CPU seconds


 

时钟时间示例:

import time

start_Real = time.time()
a = countDiv(73920)
end_End = time.time()
print("Method 1: %f real seconds" % (end_End - start_Real))

start_Real = time.time()
a = countDiv2(73920)
end_End = time.time()
print("Method 2: %f real seconds" % (end_End - start_Real))

start_Real = time.time()
a = countDiv3(73920)
end_End = time.time()
print("Method 3: %f real seconds" % (end_End - start_Real))


 

结果:

Method 1: 0.016001 real seconds
Method 2: 0.016001 real seconds
Method 3: 0.000000 real seconds


 

在精度不够的情况下,都无法得知,方法三真正的运行时间.

 

真的想知道,方法三比方法一或者二快多少倍,还是要使用timeit。timeit可以重复执行代码一定次数,这样更加稳定的反应程序的执行时间,不会因为一次的执行而产生较大的误差。

if __name__ == '__main__':
    import timeit
    print(timeit.timeit("countDiv(73920)", setup = "from __main__ import countDiv", number=100))
    print(timeit.timeit("countDiv2(73920)", setup = "from __main__ import countDiv2", number=100))
    print(timeit.timeit("countDiv3(73920)", setup = "from __main__ import countDiv3", number=100))


 

结果:

1.6992941682537246
1.69091280670973
0.013773491283526784


 

通过timeit可以看出,方法二基本和方法一的性能是相同的。timeit返回是时钟时间。方法二,基本是方法三耗时的130倍左右。

猜你喜欢

转载自blog.csdn.net/cvaidl/article/details/79470399