Mercurial > pygar
view config/bm/Pygar/audio_processor_test/null_benchmark.cfx @ 76:8bd0e4d37ad2 pygar svn.77 tip
[svn r77] I don't know why my last change didn't go through grumble grumble....
author | rlm |
---|---|
date | Wed, 12 May 2010 08:58:23 -0400 |
parents | 90197e3375e2 |
children |
line wrap: on
line source
1 : # -*-Perl-*-2 eval 'exec perl -w "$0" ${1+"$@"}'3 if 0;5 ##6 ## Directory of hasim benchmarks7 ## Remember to set this file as executable9 use Asim;10 use strict;12 my $gcfg = Asim::GenCFG->new();14 my @bmark_tests = ("null.wav", "reuben_james_1sec.wav");16 foreach my $bmark (@bmark_tests) {17 $gcfg->add(name => $bmark,18 tree => [ "benchmarks" ],19 setup => "scripts/setup-mit-6.375-bmark --silent=1 --compare=1 --data=../benchmarks/audio_processor_test/$bmark $bmark --linkto=../tools/audio_processor_test/null/checker",20 feeder => "none",21 ccount => 800000, #Hmmm.... may need to edit22 );23 }25 $gcfg->action(@ARGV);