码迷,mamicode.com
首页 > 编程语言 > 详细

[CLPR] Python中的循环速度测试

时间:2014-10-20 16:57:53      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   使用   for   strong   

本人测试配置: i5 3210M 2.9GHz DDR3 8GB.

使用图片为 1000 * 750 的BMP图片, 操作均为浮点乘法 -> 复制, 重复10次:

第一次测试, numpy的array循环:

def iterOrigin(imgDir):
    img = Image.open(imgDir)
    img = numpy.asarray(img)
    new_img = numpy.zeros_like(img)
    for r in xrange(img.shape[0]):
        for c in xrange(img.shape[1]):
            new_img[r][c] = img[r][c] * 1.2

测试结果:   288 function calls (284 primitive calls) in 33.217 seconds 

 

[CLPR] Python中的循环速度测试

标签:style   blog   color   io   os   ar   使用   for   strong   

原文地址:http://www.cnblogs.com/lancelod/p/4037239.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!