Mercurial > pygar
view config/bm/Pygar/sim.cfx @ 75:a15cc186e07d pygar svn.76
[svn r76] should be fully parameterized for however many cores we want (not fully tested)
author | punk |
---|---|
date | Wed, 12 May 2010 03:14:53 -0400 |
parents | bbd58fb592c9 |
children |
line wrap: on
line source
1 : # -*-Perl-*-2 eval 'exec perl -w "$0" ${1+"$@"}'3 if 0;5 ##6 ## Directory of hasim benchmarks7 ## Remember to set this file as executable9 use Asim;10 use strict;12 my $gcfg = Asim::GenCFG->new();14 my @networks = (15 "net0",16 "net1"17 );19 my @music = (20 "train",21 "blah"22 );31 foreach my $net (@networks) {32 foreach my $mus (@music){34 $gcfg->add(name => "$net-$mus",35 tree => [ "tests-sim" ],36 setup => "pygar-benchmarks/setup/sim-benchmark-setup.pl --network=$net --music=$mus",37 feeder => "",38 feedflags => "",39 ccount => 800000,40 );41 }}44 $gcfg->action(@ARGV);