comparison 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
comparison
equal deleted inserted replaced
22:0cfbb1e2de22 23:90197e3375e2
1 : # -*-Perl-*-
2 eval 'exec perl -w "$0" ${1+"$@"}'
3 if 0;
4
5 ##
6 ## Directory of hasim benchmarks
7 ## Remember to set this file as executable
8
9 use Asim;
10 use strict;
11
12 my $gcfg = Asim::GenCFG->new();
13
14
15 my @bmark_tests = ("null.wav", "shift.wav");
16
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 }
25
26 $gcfg->action(@ARGV);