diff config/bm/Pygar/processor_test/mips_nonblocking.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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/config/bm/Pygar/processor_test/mips_nonblocking.cfx	Wed Apr 28 08:19:09 2010 -0400
     1.3 @@ -0,0 +1,30 @@
     1.4 +: # -*-Perl-*-
     1.5 +eval 'exec perl -w "$0" ${1+"$@"}'
     1.6 +   if 0;
     1.7 +
     1.8 +use Asim;
     1.9 +use strict;
    1.10 +
    1.11 +##
    1.12 +## Generate cfg files for 6.375 tests and benchmarks.
    1.13 +##
    1.14 +
    1.15 +my $gcfg = Asim::GenCFG->new();
    1.16 +
    1.17 +
    1.18 +my @bmarks = ("median_noprealloc",
    1.19 +              "multiply_noprealloc",
    1.20 +	      "towers_noprealloc",
    1.21 +	      "qsort_noprealloc",
    1.22 +	      "vvadd_noprealloc");
    1.23 +	      
    1.24 +foreach my $bmark (@bmarks) {
    1.25 +    $gcfg->add(name => $bmark,
    1.26 +               tree => [ "benchmarks" ],
    1.27 +               setup => "scripts/setup-mit-6.375-bmark-processor --isa smips $bmark",
    1.28 +               feeder => "vcs",
    1.29 +               feedflags => "program.0/${bmark}.smips.vmh",
    1.30 +              );
    1.31 +}
    1.32 +
    1.33 +$gcfg->action(@ARGV);