view config/bm/Pygar/null/null-connected-app.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 ## --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);