home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _c072d4fe82e838b4ea95b76c095562ac < prev    next >
Text File  |  2000-03-23  |  14KB  |  358 lines

  1.  
  2. <HTML>
  3. <HEAD>
  4. <TITLE>Benchmark - benchmark running times of Perl code</TITLE>
  5. <LINK REL="stylesheet" HREF="../Active.css" TYPE="text/css">
  6. <LINK REV="made" HREF="mailto:">
  7. </HEAD>
  8.  
  9. <BODY>
  10. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  11. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  12. <STRONG><P CLASS=block> Benchmark - benchmark running times of Perl code</P></STRONG>
  13. </TD></TR>
  14. </TABLE>
  15.  
  16. <A NAME="__index__"></A>
  17. <!-- INDEX BEGIN -->
  18.  
  19. <UL>
  20.  
  21.     <LI><A HREF="#name">NAME</A></LI><LI><A HREF="#supportedplatforms">SUPPORTED PLATFORMS</A></LI>
  22.  
  23.     <LI><A HREF="#synopsis">SYNOPSIS</A></LI>
  24.     <LI><A HREF="#description">DESCRIPTION</A></LI>
  25.     <UL>
  26.  
  27.         <LI><A HREF="#methods">Methods</A></LI>
  28.         <LI><A HREF="#standard exports">Standard Exports</A></LI>
  29.         <LI><A HREF="#optional exports">Optional Exports</A></LI>
  30.     </UL>
  31.  
  32.     <LI><A HREF="#notes">NOTES</A></LI>
  33.     <LI><A HREF="#examples">EXAMPLES</A></LI>
  34.     <LI><A HREF="#inheritance">INHERITANCE</A></LI>
  35.     <LI><A HREF="#caveats">CAVEATS</A></LI>
  36.     <LI><A HREF="#see also">SEE ALSO</A></LI>
  37.     <LI><A HREF="#authors">AUTHORS</A></LI>
  38.     <LI><A HREF="#modification history">MODIFICATION HISTORY</A></LI>
  39. </UL>
  40. <!-- INDEX END -->
  41.  
  42. <HR>
  43. <P>
  44. <H1><A NAME="name">NAME</A></H1>
  45. <P>Benchmark - benchmark running times of Perl code</P>
  46. <P>
  47. <HR>
  48. <H1><A NAME="supportedplatforms">SUPPORTED PLATFORMS</A></H1>
  49. <UL>
  50. <LI>Linux</LI>
  51. <LI>Solaris</LI>
  52. <LI>Windows</LI>
  53. </UL>
  54. <HR>
  55. <H1><A NAME="synopsis">SYNOPSIS</A></H1>
  56. <PRE>
  57.     timethis ($count, "code");</PRE>
  58. <PRE>
  59.     # Use Perl code in strings...
  60.     timethese($count, {
  61.         'Name1' => '...code1...',
  62.         'Name2' => '...code2...',
  63.     });</PRE>
  64. <PRE>
  65.     # ... or use subroutine references.
  66.     timethese($count, {
  67.         'Name1' => sub { ...code1... },
  68.         'Name2' => sub { ...code2... },
  69.     });</PRE>
  70. <PRE>
  71.     # cmpthese can be used both ways as well
  72.     cmpthese($count, {
  73.         'Name1' => '...code1...',
  74.         'Name2' => '...code2...',
  75.     });</PRE>
  76. <PRE>
  77.     cmpthese($count, {
  78.         'Name1' => sub { ...code1... },
  79.         'Name2' => sub { ...code2... },
  80.     });</PRE>
  81. <PRE>
  82.     # ...or in two stages
  83.     $results = timethese($count, 
  84.         {
  85.             'Name1' => sub { ...code1... },
  86.             'Name2' => sub { ...code2... },
  87.         },
  88.         'none'
  89.     );
  90.     cmpthese( $results ) ;</PRE>
  91. <PRE>
  92.     $t = timeit($count, '...other code...')
  93.     print "$count loops of other code took:",timestr($t),"\n";</PRE>
  94. <PRE>
  95.     $t = countit($time, '...other code...')
  96.     $count = $t->iters ;
  97.     print "$count loops of other code took:",timestr($t),"\n";</PRE>
  98. <P>
  99. <HR>
  100. <H1><A NAME="description">DESCRIPTION</A></H1>
  101. <P>The Benchmark module encapsulates a number of routines to help you
  102. figure out how long it takes to execute some code.</P>
  103. <P>timethis - run a chunk of code several times</P>
  104. <P>timethese - run several chunks of code several times</P>
  105. <P>cmpthese - print results of timethese as a comparison chart</P>
  106. <P>timeit - run a chunk of code and see how long it goes</P>
  107. <P>countit - see how many times a chunk of code runs in a given time</P>
  108. <P>
  109. <H2><A NAME="methods">Methods</A></H2>
  110. <DL>
  111. <DT><STRONG><A NAME="item_new">new</A></STRONG><BR>
  112. <DD>
  113. Returns the current time.   Example:
  114. <PRE>
  115.     use Benchmark;
  116.     $t0 = new Benchmark;
  117.     # ... your code here ...
  118.     $t1 = new Benchmark;
  119.     $td = timediff($t1, $t0);
  120.     print "the code took:",timestr($td),"\n";</PRE>
  121. <P></P>
  122. <DT><STRONG><A NAME="item_debug">debug</A></STRONG><BR>
  123. <DD>
  124. Enables or disable debugging by setting the <CODE>$Benchmark::Debug</CODE> flag:
  125. <PRE>
  126.     debug Benchmark 1;
  127.     $t = timeit(10, ' 5 ** $Global ');
  128.     debug Benchmark 0;</PRE>
  129. <P></P>
  130. <DT><STRONG><A NAME="item_iters">iters</A></STRONG><BR>
  131. <DD>
  132. Returns the number of iterations.
  133. <P></P></DL>
  134. <P>
  135. <H2><A NAME="standard exports">Standard Exports</A></H2>
  136. <P>The following routines will be exported into your namespace
  137. if you use the Benchmark module:</P>
  138. <DL>
  139. <DT><STRONG><A NAME="item_timeit">timeit(COUNT, CODE)</A></STRONG><BR>
  140. <DD>
  141. Arguments: COUNT is the number of times to run the loop, and CODE is
  142. the code to run.  CODE may be either a code reference or a string to
  143. be eval'd; either way it will be run in the caller's package.
  144. <P>Returns: a Benchmark object.</P>
  145. <P></P>
  146. <DT><STRONG><A NAME="item_timethis">timethis ( COUNT, CODE, [ TITLE, [ STYLE ]] )</A></STRONG><BR>
  147. <DD>
  148. Time COUNT iterations of CODE. CODE may be a string to eval or a
  149. code reference; either way the CODE will run in the caller's package.
  150. Results will be printed to STDOUT as TITLE followed by the times.
  151. TITLE defaults to ``timethis COUNT'' if none is provided. STYLE
  152. determines the format of the output, as described for <A HREF="#item_timestr"><CODE>timestr()</CODE></A> below.
  153. <P>The COUNT can be zero or negative: this means the <EM>minimum number of
  154. CPU seconds</EM> to run.  A zero signifies the default of 3 seconds.  For
  155. example to run at least for 10 seconds:</P>
  156. <PRE>
  157.         timethis(-10, $code)</PRE>
  158. <P>or to run two pieces of code tests for at least 3 seconds:</P>
  159. <PRE>
  160.         timethese(0, { test1 => '...', test2 => '...'})</PRE>
  161. <P>CPU seconds is, in UNIX terms, the user time plus the system time of
  162. the process itself, as opposed to the real (wallclock) time and the
  163. time spent by the child processes.  Less than 0.1 seconds is not
  164. accepted (-0.01 as the count, for example, will cause a fatal runtime
  165. exception).</P>
  166. <P>Note that the CPU seconds is the <STRONG>minimum</STRONG> time: CPU scheduling and
  167. other operating system factors may complicate the attempt so that a
  168. little bit more time is spent.  The benchmark output will, however,
  169. also tell the number of <CODE>$code</CODE> runs/second, which should be a more
  170. interesting number than the actually spent seconds.</P>
  171. <P>Returns a Benchmark object.</P>
  172. <P></P>
  173. <DT><STRONG><A NAME="item_timethese">timethese ( COUNT, CODEHASHREF, [ STYLE ] )</A></STRONG><BR>
  174. <DD>
  175. The CODEHASHREF is a reference to a hash containing names as keys
  176. and either a string to eval or a code reference for each value.
  177. For each (KEY, VALUE) pair in the CODEHASHREF, this routine will
  178. call
  179. <PRE>
  180.         timethis(COUNT, VALUE, KEY, STYLE)</PRE>
  181. <P>The routines are called in string comparison order of KEY.</P>
  182. <P>The COUNT can be zero or negative, see timethis().</P>
  183. <P>Returns a hash of Benchmark objects, keyed by name.</P>
  184. <P></P>
  185. <DT><STRONG><A NAME="item_timediff">timediff ( T1, T2 )</A></STRONG><BR>
  186. <DD>
  187. Returns the difference between two Benchmark times as a Benchmark
  188. object suitable for passing to timestr().
  189. <P></P>
  190. <DT><STRONG><A NAME="item_timestr">timestr ( TIMEDIFF, [ STYLE, [ FORMAT ] ] )</A></STRONG><BR>
  191. <DD>
  192. Returns a string that formats the times in the TIMEDIFF object in
  193. the requested STYLE. TIMEDIFF is expected to be a Benchmark object
  194. similar to that returned by timediff().
  195. <P>STYLE can be any of 'all', 'none', 'noc', 'nop' or 'auto'. 'all' shows
  196. each of the 5 times available ('wallclock' time, user time, system time,
  197. user time of children, and system time of children). 'noc' shows all
  198. except the two children times. 'nop' shows only wallclock and the
  199. two children times. 'auto' (the default) will act as 'all' unless
  200. the children times are both zero, in which case it acts as 'noc'.
  201. 'none' prevents output.</P>
  202. <P>FORMAT is the <A HREF="../lib/Pod/perlfunc.html#item_printf">printf(3)</A>-style format specifier (without the
  203. leading '%') to use to print the times. It defaults to '5.2f'.</P>
  204. <P></P></DL>
  205. <P>
  206. <H2><A NAME="optional exports">Optional Exports</A></H2>
  207. <P>The following routines will be exported into your namespace
  208. if you specifically ask that they be imported:</P>
  209. <DL>
  210. <DT><STRONG><A NAME="item_clearcache">clearcache ( COUNT )</A></STRONG><BR>
  211. <DD>
  212. Clear the cached time for COUNT rounds of the null loop.
  213. <P></P>
  214. <DT><STRONG><A NAME="item_clearallcache">clearallcache ( )</A></STRONG><BR>
  215. <DD>
  216. Clear all cached times.
  217. <P></P>
  218. <DT><STRONG><A NAME="item_cmpthese">cmpthese ( COUT, CODEHASHREF, [ STYLE ] )</A></STRONG><BR>
  219. <DD>
  220. <DT><STRONG>cmpthese ( RESULTSHASHREF )</STRONG><BR>
  221. <DD>
  222. Optionally calls timethese(), then outputs comparison chart.  This 
  223. chart is sorted from slowest to fastest, and shows the percent 
  224. speed difference between each pair of tests.  Can also be passed 
  225. the data structure that <A HREF="#item_timethese"><CODE>timethese()</CODE></A> returns:
  226. <PRE>
  227.     $results = timethese( .... );
  228.     cmpthese( $results );</PRE>
  229. <P>Returns the data structure returned by <A HREF="#item_timethese"><CODE>timethese()</CODE></A> (or passed in).</P>
  230. <P></P>
  231. <DT><STRONG><A NAME="item_countit">countit(TIME, CODE)</A></STRONG><BR>
  232. <DD>
  233. Arguments: TIME is the minimum length of time to run CODE for, and CODE is
  234. the code to run.  CODE may be either a code reference or a string to
  235. be eval'd; either way it will be run in the caller's package.
  236. <P>TIME is <EM>not</EM> negative.  <A HREF="#item_countit"><CODE>countit()</CODE></A> will run the loop many times to
  237. calculate the speed of CODE before running it for TIME.  The actual
  238. time run for will usually be greater than TIME due to system clock
  239. resolution, so it's best to look at the number of iterations divided
  240. by the times that you are concerned with, not just the iterations.</P>
  241. <P>Returns: a Benchmark object.</P>
  242. <P></P>
  243. <DT><STRONG><A NAME="item_disablecache">disablecache ( )</A></STRONG><BR>
  244. <DD>
  245. Disable caching of timings for the null loop. This will force Benchmark
  246. to recalculate these timings for each new piece of code timed.
  247. <P></P>
  248. <DT><STRONG><A NAME="item_enablecache">enablecache ( )</A></STRONG><BR>
  249. <DD>
  250. Enable caching of timings for the null loop. The time taken for COUNT
  251. rounds of the null loop will be calculated only once for each
  252. different COUNT used.
  253. <P></P>
  254. <DT><STRONG><A NAME="item_timesum">timesum ( T1, T2 )</A></STRONG><BR>
  255. <DD>
  256. Returns the sum of two Benchmark times as a Benchmark object suitable
  257. for passing to timestr().
  258. <P></P></DL>
  259. <P>
  260. <HR>
  261. <H1><A NAME="notes">NOTES</A></H1>
  262. <P>The data is stored as a list of values from the time and times
  263. functions:</P>
  264. <PRE>
  265.       ($real, $user, $system, $children_user, $children_system, $iters)</PRE>
  266. <P>in seconds for the whole loop (not divided by the number of rounds).</P>
  267. <P>The timing is done using <A HREF="../lib/Pod/perlfunc.html#item_time"><CODE>time(3)</CODE></A> and times(3).</P>
  268. <P>Code is executed in the caller's package.</P>
  269. <P>The time of the null loop (a loop with the same
  270. number of rounds but empty loop body) is subtracted
  271. from the time of the real loop.</P>
  272. <P>The null loop times can be cached, the key being the
  273. number of rounds. The caching can be controlled using
  274. calls like these:</P>
  275. <PRE>
  276.     clearcache($key);
  277.     clearallcache();</PRE>
  278. <PRE>
  279.     disablecache();
  280.     enablecache();</PRE>
  281. <P>Caching is off by default, as it can (usually slightly) decrease
  282. accuracy and does not usually noticably affect runtimes.</P>
  283. <P>
  284. <HR>
  285. <H1><A NAME="examples">EXAMPLES</A></H1>
  286. <P>For example,</P>
  287. <PRE>
  288.    use Benchmark;$x=3;cmpthese(-5,{a=>sub{$x*$x},b=>sub{$x**2}})</PRE>
  289. <P>outputs something like this:</P>
  290. <PRE>
  291.    Benchmark: running a, b, each for at least 5 CPU seconds...
  292.             a: 10 wallclock secs ( 5.14 usr +  0.13 sys =  5.27 CPU) @ 3835055.60/s (n=20210743)
  293.             b:  5 wallclock secs ( 5.41 usr +  0.00 sys =  5.41 CPU) @ 1574944.92/s (n=8520452)
  294.           Rate    b    a
  295.    b 1574945/s   -- -59%
  296.    a 3835056/s 144%   --</PRE>
  297. <P>while</P>
  298. <PRE>
  299.    use Benchmark;
  300.    $x=3;
  301.    $r=timethese(-5,{a=>sub{$x*$x},b=>sub{$x**2}},'none');
  302.    cmpthese($r);</PRE>
  303. <P>outputs something like this:</P>
  304. <PRE>
  305.           Rate    b    a
  306.    b 1559428/s   -- -62%
  307.    a 4152037/s 166%   --</PRE>
  308. <P>
  309. <HR>
  310. <H1><A NAME="inheritance">INHERITANCE</A></H1>
  311. <P>Benchmark inherits from no other class, except of course
  312. for Exporter.</P>
  313. <P>
  314. <HR>
  315. <H1><A NAME="caveats">CAVEATS</A></H1>
  316. <P>Comparing eval'd strings with code references will give you
  317. inaccurate results: a code reference will show a slightly slower
  318. execution time than the equivalent eval'd string.</P>
  319. <P>The real time timing is done using <A HREF="../lib/Pod/perlfunc.html#item_time"><CODE>time(2)</CODE></A> and
  320. the granularity is therefore only one second.</P>
  321. <P>Short tests may produce negative figures because perl
  322. can appear to take longer to execute the empty loop
  323. than a short test; try:</P>
  324. <PRE>
  325.     timethis(100,'1');</PRE>
  326. <P>The system time of the null loop might be slightly
  327. more than the system time of the loop with the actual
  328. code and therefore the difference might end up being < 0.</P>
  329. <P>
  330. <HR>
  331. <H1><A NAME="see also">SEE ALSO</A></H1>
  332. <P><A HREF="../lib/Devel/DProf.html">the Devel::DProf manpage</A> - a Perl code profiler</P>
  333. <P>
  334. <HR>
  335. <H1><A NAME="authors">AUTHORS</A></H1>
  336. <P>Jarkko Hietaniemi <<EM><A HREF="mailto:jhi@iki.fi">jhi@iki.fi</A></EM>>, Tim Bunce <<EM><A HREF="mailto:Tim.Bunce@ig.co.uk">Tim.Bunce@ig.co.uk</A></EM>></P>
  337. <P>
  338. <HR>
  339. <H1><A NAME="modification history">MODIFICATION HISTORY</A></H1>
  340. <P>September 8th, 1994; by Tim Bunce.</P>
  341. <P>March 28th, 1997; by Hugo van der Sanden: added support for code
  342. references and the already documented 'debug' method; revamped
  343. documentation.</P>
  344. <P>April 04-07th, 1997: by Jarkko Hietaniemi, added the run-for-some-time
  345. functionality.</P>
  346. <P>September, 1999; by Barrie Slaymaker: math fixes and accuracy and 
  347. efficiency tweaks.  Added cmpthese().  A result is now returned from 
  348. timethese().  Exposed <A HREF="#item_countit"><CODE>countit()</CODE></A> (was runfor()).</P>
  349. <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%>
  350. <TR><TD CLASS=block VALIGN=MIDDLE WIDTH=100% BGCOLOR="#cccccc">
  351. <STRONG><P CLASS=block> Benchmark - benchmark running times of Perl code</P></STRONG>
  352. </TD></TR>
  353. </TABLE>
  354.  
  355. </BODY>
  356.  
  357. </HTML>
  358.