Mercurial > pygar
view config/bm/Pygar/processor_test/mips_nonblocking.cfx @ 42:ced2ebd41347 pygar svn.43
[svn r43] bunch of updates that almost work...
author | punk |
---|---|
date | Wed, 05 May 2010 01:09:09 -0400 |
parents | 90197e3375e2 |
children |
line wrap: on
line source
1 : # -*-Perl-*-2 eval 'exec perl -w "$0" ${1+"$@"}'3 if 0;5 use Asim;6 use strict;8 ##9 ## Generate cfg files for 6.375 tests and benchmarks.10 ##12 my $gcfg = Asim::GenCFG->new();15 my @bmarks = ("median_noprealloc",16 "multiply_noprealloc",17 "towers_noprealloc",18 "qsort_noprealloc",19 "vvadd_noprealloc");21 foreach my $bmark (@bmarks) {22 $gcfg->add(name => $bmark,23 tree => [ "benchmarks" ],24 setup => "scripts/setup-mit-6.375-bmark-processor --isa smips $bmark",25 feeder => "vcs",26 feedflags => "program.0/${bmark}.smips.vmh",27 );28 }30 $gcfg->action(@ARGV);