免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2722 | 回复: 3
打印 上一主题 下一主题

如何用python解决这个问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-11-15 14:48 |只看该作者 |倒序浏览
运行一个程序,会打印出如下结果:
  1. STREAM version $Revision: 5.9 $
  2. -------------------------------------------------------------
  3. This system uses 8 bytes per DOUBLE PRECISION word.
  4. -------------------------------------------------------------
  5. Array size = 2097152, Offset = 0
  6. Total memory required = 48.0 MB.
  7. Each test is run 10 times, but only
  8. the *best* time for each is used.
  9. -------------------------------------------------------------
  10. Printing one line per active thread....
  11. -------------------------------------------------------------
  12. Your clock granularity/precision appears to be 3 microseconds.
  13. Each test below will take on the order of 319658 microseconds.
  14.    (= 106552 clock ticks)
  15. Increase the size of the arrays if this shows that
  16. you are not getting at least 20 clock ticks per test.
  17. -------------------------------------------------------------
  18. WARNING -- The above is only a rough guideline.
  19. For best results, please be sure you know the
  20. precision of your system timer.
  21. -------------------------------------------------------------
  22. Function      Rate (MB/s)   Avg time     Min time     Max time
  23. Copy:         268.7902       0.1252       0.1248       0.1258
  24. Scale:         87.0483       0.3866       0.3855       0.3882
  25. Add:          109.6098       0.4727       0.4592       0.4977
  26. Triad:         62.7243       0.8045       0.8024       0.8069
  27. -------------------------------------------------------------
复制代码
我想把这个程序运行 100遍, 然后统计 Copy/Scale/Add/Triad 的平均值,
刚用python 两天,如果问题弱智,请大家理解。

论坛徽章:
0
2 [报告]
发表于 2011-11-16 10:09 |只看该作者
首先把你需要的字段通过python抓出来,累加再求平均,看看python基础的文件读写,re模块,你就知道了

论坛徽章:
0
3 [报告]
发表于 2011-11-16 13:40 |只看该作者

  1. >>> import re
  2. >>> f = open('a')
  3. >>> a=f.read()
  4. >>> copy = re.findall('Copy:.*',a)

  5. >>> Rate = 0
  6. >>> Avg_time = 0
  7. >>> Min_time = 0
  8. >>> Max_time = 0

  9. >>> for line in copy:
  10. ...     line = line.split(':')
  11. ...     value = re.findall('\S+',line[1].strip())
  12. ...     Rate += float(value[0])
  13. ...     Avg_time += float(value[1])
  14. ...     Min_time += float(value[2])
  15. ...     Max_time += float(value[3])

  16. >>> print Rate/len(copy), Avg_time/len(copy), Min_time/len(copy), Max_time/len(copy),                 
  17. 268.7902 0.1252 0.1248 0.1258
复制代码

论坛徽章:
0
4 [报告]
发表于 2011-11-21 16:56 |只看该作者
回复 3# BangBull


    谢谢这位大哥,我用了一个笨办法,cat file | grep Copy | awk `{print $2}` > newfile
    对python确实不熟,惭愧了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP