  
- 帖子
- 1023
- 积分
- 3120
- 技术
- 230
- 捐助
- 160
- 注册时间
- 2010-12-22
|
本帖最后由 tmplinshi 于 2011-7-29 14:47 编辑
timeit 不能直接计算 cmd 的内部命令,但可以用以下方法:
- timeit cmd /c 内部命令
- 将内部命令保存到文件中,例如命名为 test.bat,然后 timeit test.bat
先贴一个示例:
e:\我的文档\桌面>timeit cmd /c "dir /b *.pl | pren.exe -n s/p/[p]/g"
reading filenames from STDIN
r.pl renamed as r.[p]l
pren.pl renamed as [p]ren.[p]l
rrr.pl renamed as rrr.[p]l
Version Number: Windows NT 5.1 (Build 2600)
Exit Time: 11:57 am, Friday, July 29 2011
Elapsed Time: 0:00:00.375
Process Time: 0:00:00.062
System Calls: 7225
Context Switches: 626
Page Faults: 2659
Bytes Read: 187558
Bytes Written: 23
Bytes Other: 8114
e:\我的文档\桌面>timeit cmd /c sren.bat -n s/p/[p]/g *.pl
"r.pl" -> "r.[p]l"
"pren.pl" -> "[p]ren.[p]l"
"rrr.pl" -> "rrr.[p]l"
Version Number: Windows NT 5.1 (Build 2600)
Exit Time: 11:57 am, Friday, July 29 2011
Elapsed Time: 0:00:00.281
Process Time: 0:00:00.046
System Calls: 9698
Context Switches: 747
Page Faults: 2742
Bytes Read: 186954
Bytes Written: 71
Bytes Other: 12572 |
(注: timeit cmd /c sren.bat -n s/p/[p]/g *.pl 是可以直接写成 timeit sren.bat -n s/p/[p]/g *.pl 的,这里是为了跟 pren.exe 做对比而使用相同的测试环境。)
- 可以看到的是 timeit 比较专业,除了计算了运行时间,还有其他的信息。
- 另一个较好的功能是,计算同一个程序多次后,可以得出平均值。
8 次的平均值:
e:\我的文档\桌面\test>timeit
Average for sren key over 8 runs
Version Number: Windows NT 5.1 (Build 2600)
Exit Time: 8:00 am, Monday, January 1 1601
Elapsed Time: 0:00:00.289
Process Time: 0:00:00.089
System Calls: 10490
Context Switches: 1053
Page Faults: 2732
Bytes Read: 73880
Bytes Written: 602
Bytes Other: 15897 |
-f 指定 timeit 的数据记录文件。默认保存在 .\timeit.dat。
-k 指定所运行的程序保存在 timeit.dat 中的名称。
例如:
- timeit cmd /c "dir /b *.pl | pren -n s/p/[p]/g" 记录在 timeit.dat 中的名称是 cmd。
- timeit cmd /c sren -n s/p/[p]/g *.pl 记录的名称也是 cmd。
指定名称就能区分了:
- timeit -k pren cmd /c "dir /b *.pl | pren -n s/p/[p]/g"
- timeit -k sren cmd /c sren -n s/p/[p]/g *.pl
-r 删除指定的记录名称。
可在名称后跟“逗号数字”。例如:
- timeit -r sren,1 删除第一次记录
- timeit -r sren,-2 删除最后两次记录
-d 详细输出
-s 只计算运行时间,不统计其他信息
-t tab 输出
e:\我的文档\桌面\test>timeit -t
Runs Name Elapsed Time Process Time System Context Page Total I/O
Calls Switches Faults
8 pren 0:00:00.388 0:00:00.085 8145 632 2768 198327
8 sren 0:00:00.281 0:00:00.091 10573 894 2860 90262 |
|
|