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