view config/bm/Pygar/audio_processor_test/shift_up_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 benchmarks
7 ## Remember to set this file as executable
9 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/shift_up/checker",
21 feeder => "none",
22 ccount => 800000, #Hmmm.... may need to edit
23 );
24 }
26 $gcfg->action(@ARGV);