Mercurial > pygar
view config/bm/Pygar/processor_test/mips_nonblocking.cfx @ 76:8bd0e4d37ad2 pygar svn.77 tip
[svn r77] I don't know why my last change didn't go through grumble grumble....
author | rlm |
---|---|
date | Wed, 12 May 2010 08:58:23 -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);