view config/bm/Pygar/null/null-connected-app.cfx @ 44:9b0dfce52c29 pygar svn.45

[svn r45] adding mixer
author punk
date Wed, 05 May 2010 12:30:18 -0400
parents 90197e3375e2
children
line wrap: on
line source
1 : # -*-Perl-*-
2 eval 'exec perl -w "$0" ${1+"$@"}'
3 if 0;
5 ## --linkto=../tools/audio_processor_test/fft/checker
7 ##
8 ## Directory of hasim benchmarks
9 ## Remember to set this file as executable
11 use Asim;
12 use strict;
14 my $gcfg = Asim::GenCFG->new();
17 my @bmark_tests = ("null");
19 foreach my $bmark (@bmark_tests) {
20 $gcfg->add(name => $bmark,
21 tree => [ "benchmarks" ],
22 setup => "scripts/setup-null-bmark --silent=1 --compare=1 --data=../benchmarks/sort_array/$bmark $bmark",
23 feeder => "none",
24 ccount => 800000, #Hmmm.... may need to edit
25 );
26 }
28 $gcfg->action(@ARGV);