ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/eg/bench
Revision: 1.3
Committed: Sat Jul 14 22:14:21 2001 UTC (22 years, 11 months ago) by root
Branch: MAIN
Changes since 1.2: +8 -10 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #!/usr/bin/perl
2    
3     # ->resume is not exactly cheap (it saves/restores a LOT
4     # of global variables), but shouldn't be slow. just to show
5     # how fast it is, this little proggie compares a normal subroutine
6     # call with two calls of transfer in a loop.
7    
8     use Coro;
9     use Benchmark;
10    
11     $a = bless {}, main::;
12    
13    
14     sub a {
15 root 1.3 $n++; # do something to taint the benchmark results ;)
16 root 1.1 }
17    
18     $b = new Coro sub {
19     # do a little unrolling...
20     while() {
21 root 1.3 yield; yield; yield; yield; yield;
22 root 1.1 }
23     };
24    
25 root 1.3 yield;
26 root 1.1
27     $main = $Coro::main;
28    
29 root 1.3 *transfer = \&Coro::State::transfer;
30 root 1.1
31 root 1.3 $c = Coro::State::newprocess {
32 root 1.1 while() {
33 root 1.3 transfer($c, $main); transfer($c, $main);
34     transfer($c, $main); transfer($c, $main);
35 root 1.1 }
36     };
37    
38     transfer($main, $c);
39    
40     timethese 100000, {
41     method => '$a->a; $a->a; $a->a; $a->a',
42 root 1.3 resume => 'yield; yield',
43 root 1.1 transfer => 'transfer($main, $c); transfer($main, $c)',
44     };