Mercurial > pygar
view config/bm/Pygar/audio_processor_test/cosine_window_benchmark.cfx @ 29:9830ff8fb0bd pygar svn.30
[svn r30] Forgot a file
author | punk |
---|---|
date | Fri, 30 Apr 2010 09:13:38 -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();15 my @bmark_tests = ("null.wav", "shift.wav");17 foreach my $bmark (@bmark_tests) {18 $gcfg->add(name => $bmark,19 tree => [ "benchmarks" ],20 setup => "scripts/setup-mit-6.375-bmark-freq --silent=1 --compare=1 --data=../benchmarks/audio_processor_test/$bmark $bmark --linkto=../tools/audio_processor_test/cosine_window/checker",21 feeder => "none",22 ccount => 800000, #Hmmm.... may need to edit23 );24 }26 $gcfg->action(@ARGV);