Mercurial > pygar
view config/bm/Pygar/audio_processor_test/null_benchmark.cfx @ 42:ced2ebd41347 pygar svn.43
[svn r43] bunch of updates that almost work...
author | punk |
---|---|
date | Wed, 05 May 2010 01:09:09 -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);