view config/bm/Pygar/audio_processor_test/shift_up_benchmark.cfx @ 23:90197e3375e2 pygar svn.24

[svn r24] added testing, but something is wrong with our c++ file.
author rlm
date Wed, 28 Apr 2010 08:19:09 -0400
parents
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);