[Mplayer-cvslog] CVS: main/TOOLS perlbench.pl,NONE,1.1
GEREOFFY
arpi_esp at users.sourceforge.net
Sun Apr 22 18:09:25 CEST 2001
Update of /cvsroot/mplayer/main/TOOLS
In directory usw-pr-cvs1:/tmp/cvs-serv30572
Added Files:
perlbench.pl
Log Message:
fastmemcpy benchmark by Felix Buenemann
--- NEW FILE ---
#!/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";
_______________________________________________
Mplayer-cvslog mailing list
Mplayer-cvslog at lists.sourceforge.net
http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
More information about the MPlayer-cvslog
mailing list