OpenCores
URL https://opencores.org/ocsvn/socgen/socgen/trunk

Subversion Repositories socgen

[/] [socgen/] [trunk/] [tools/] [simulation/] [run_sims] - Blame information for rev 133

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 119 jt_eaton
eval 'exec `which perl` -S $0 ${1+"$@"}'
2
   if 0;
3
 
4
#/**********************************************************************/
5
#/*                                                                    */
6
#/*             -------                                                */
7
#/*            /   SOC  \                                              */
8
#/*           /    GEN   \                                             */
9
#/*          /    TOOL    \                                            */
10
#/*          ==============                                            */
11
#/*          |            |                                            */
12
#/*          |____________|                                            */
13
#/*                                                                    */
14
#/*                                                                    */
15
#/*                                                                    */
16
#/*  Author(s):                                                        */
17
#/*      - John Eaton, jt_eaton@opencores.org                          */
18
#/*                                                                    */
19
#/**********************************************************************/
20
#/*                                                                    */
21
#/*    Copyright (C) <2010-2011>                */
22
#/*                                                                    */
23
#/*  This source file may be used and distributed without              */
24
#/*  restriction provided that this copyright statement is not         */
25
#/*  removed from the file and that any derivative work contains       */
26
#/*  the original copyright notice and the associated disclaimer.      */
27
#/*                                                                    */
28
#/*  This source file is free software; you can redistribute it        */
29
#/*  and/or modify it under the terms of the GNU Lesser General        */
30
#/*  Public License as published by the Free Software Foundation;      */
31
#/*  either version 2.1 of the License, or (at your option) any        */
32
#/*  later version.                                                    */
33
#/*                                                                    */
34
#/*  This source is distributed in the hope that it will be            */
35
#/*  useful, but WITHOUT ANY WARRANTY; without even the implied        */
36
#/*  warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR           */
37
#/*  PURPOSE.  See the GNU Lesser General Public License for more      */
38
#/*  details.                                                          */
39
#/*                                                                    */
40
#/*  You should have received a copy of the GNU Lesser General         */
41
#/*  Public License along with this source; if not, download it        */
42
#/*  from http://www.opencores.org/lgpl.shtml                          */
43
#/*                                                                    */
44
#/**********************************************************************/
45
 
46
 
47
############################################################################
48
# General PERL config
49
############################################################################
50
use Getopt::Long;
51
use English;
52
use File::Basename;
53
use Cwd;
54
use XML::LibXML;
55
use lib './tools';
56
use sys::lib;
57
use yp::lib;
58 131 jt_eaton
use Parallel::ForkManager;
59 119 jt_eaton
 
60
$OUTPUT_AUTOFLUSH = 1; # set autoflush of stdout to TRUE.
61
 
62
 
63
############################################################################
64
### Process the options
65
############################################################################
66
Getopt::Long::config("require_order", "prefix=-");
67
GetOptions("h","help",
68
) || die "(use '$program_name -h' for help)";
69
 
70
 
71
 
72
 
73
##############################################################################
74
## Help option
75
##############################################################################
76
if ( $opt_h or $opt_help  )
77 131 jt_eaton
  { print "\n run_sims vendor  library";
78 119 jt_eaton
    print "\n";
79
    exit 1;
80
  }
81
 
82
 
83
#/**********************************************************************/
84 131 jt_eaton
#/*  Process each library by finding any ip-xact file in any component */
85 119 jt_eaton
#/*                                                                    */
86
#/*  Each ip-xact file is parsed and it's filename and the names of any*/
87
#/*  modules that it uses are saved.                                   */
88
#/*                                                                    */
89
#/*                                                                    */
90
#/**********************************************************************/
91
 
92
 
93
my $home              = cwd();
94
my $vendor ;
95 131 jt_eaton
my $library  ;
96 119 jt_eaton
 
97
 
98 131 jt_eaton
my $prefix = yp::lib::get_workspace();
99 133 jt_eaton
my $number_of_cpus = yp::lib::get_number_of_cpus();
100 119 jt_eaton
 
101
$_               = $ARGV[0];
102
 
103
 
104 131 jt_eaton
 
105 119 jt_eaton
if(/(\S+)__(\S+)/)
106
     {
107
     $vendor           = $1;
108 131 jt_eaton
     $library         = $2;
109 119 jt_eaton
     }
110
 
111
my $parser = XML::LibXML->new();
112
 
113
 
114
 
115 131 jt_eaton
my @components   = yp::lib::find_components($vendor,$library);
116 119 jt_eaton
 
117
foreach my $component (@components)
118
   {
119 131 jt_eaton
   my $socgen_filename     = yp::lib::find_componentConfiguration($vendor,$library,$component);
120
 
121
   if($socgen_filename)
122
   {
123
   my $socgen_file     = $parser->parse_file($socgen_filename);
124 130 jt_eaton
   my $sim_library_path ;
125 131 jt_eaton
   my $lib_comp_sep             = yp::lib::find_lib_comp_sep($vendor,$library,$component);
126 130 jt_eaton
   my $sim_comp_path            = $socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:comp_path/text()")->to_literal;
127 119 jt_eaton
 
128 130 jt_eaton
   if ($sim_comp_path)
129
      {
130
      $sim_library_path            ="${lib_comp_sep}${sim_comp_path}";
131
      }
132
   else
133
      {
134
      $sim_library_path            = $socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:library_path/text()")->to_literal;
135
      }
136 128 jt_eaton
 
137
 
138 130 jt_eaton
 
139
 
140 119 jt_eaton
   #/*********************************************************************************************/
141
   #/   files for simulation                                                                     */
142
   #/                                                                                            */
143
   #/*********************************************************************************************/
144 131 jt_eaton
my $cmd;
145
my @cmds = ();
146 133 jt_eaton
my $manager = new Parallel::ForkManager( $number_of_cpus );
147 119 jt_eaton
 
148 131 jt_eaton
 
149 130 jt_eaton
   foreach  my   $i_name ($socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:icarus/socgen:test/socgen:name"))
150 119 jt_eaton
      {
151
      my($sim_name)     = $i_name ->findnodes('./text()')->to_literal ;
152
      my($sim_configuration)  = $i_name ->findnodes('../socgen:configuration/text()')->to_literal ;
153
      my($sim_variant)  = $i_name ->findnodes('../socgen:variant/text()')->to_literal ;
154 131 jt_eaton
      $cmd ="./tools/simulation/run_icarus  $vendor   $library $sim_library_path $sim_name     $sim_variant \n";
155
      push @cmds,$cmd;
156
     }
157 119 jt_eaton
 
158
 
159
 
160 131 jt_eaton
    foreach  my   $i_name ($socgen_file->findnodes("//socgen:componentConfiguration/socgen:sim/socgen:verilator/socgen:test/socgen:name"))
161 126 jt_eaton
      {
162
      my($sim_name)     = $i_name ->findnodes('./text()')->to_literal ;
163
      my($sim_configuration)  = $i_name ->findnodes('../socgen:configuration/text()')->to_literal ;
164
      my($sim_variant)  = $i_name ->findnodes('../socgen:variant/text()')->to_literal ;
165 131 jt_eaton
      $cmd ="./tools/simulation/run_verilator  $vendor   $library $sim_library_path $sim_name     $sim_variant \n";
166
      if(system($cmd)){};
167 119 jt_eaton
      }
168
 
169 131 jt_eaton
 
170
     foreach $cmd (@cmds)
171
      {
172
      $manager->start and next;
173
      system($cmd);
174
      $manager->finish;
175
      }
176
 
177
     $manager->wait_all_children;
178
print "run_sims COMPLETE \n";
179
 
180 119 jt_eaton
   }
181
 
182 131 jt_eaton
}
183 119 jt_eaton
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.