Mercurial > mplayer.hg
view TOOLS/perlbench.pl @ 17920:a781bc070922
1.1243: 10l
1.1242: sync to x264 r476 (subq=7)
1.1241: Support libavcodec vrc_strategy=1 (XviD ratecontrol).
1.1240: [applied by diego, commit #1.209]
1.1239: mpegopts example
1.1238: adapter doesn't require vm anymore
author | kraymer |
---|---|
date | Wed, 22 Mar 2006 18:11:44 +0000 |
parents | 5cbbf47cae1e |
children |
line wrap: on
line source
#!/usr/bin/perl -w use strict; use constant CMD => "./fastmem2-k7"; sub dobench { my $i; my ($runs, $sleep, $command) = @_; for($i = 0; $i < $runs; $i++) { sleep $sleep; system $command; } } print "Single run of sse bench with 1sec sleep:\n"; &dobench(1,1,CMD); print "Sleeping 10seconds before starting next bench!\n"; sleep 10; print "10 runs of sse bench with 0sec sleep:\n"; &dobench(10,0,CMD); print "Sleeping 10seconds before starting next bench!\n"; sleep 10; print "10 runs of sse bench with 1sec sleep:\n"; &dobench(10,1,CMD); print "Sleeping 10seconds before starting next bench!\n"; sleep 10; print "10 runs of sse bench with 2sec sleep:\n"; &dobench(10,2,CMD); print "Sleeping 10seconds before starting next bench!\n"; sleep 10; print "10 runs of sse bench with 3sec sleep:\n"; &dobench(10,3,CMD); print "Bench finished!\n";