Changeset 737 for soft/giet_vm/giet_python/genmap
- Timestamp:
- Dec 3, 2015, 4:46:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r729 r737 83 83 help = 'define type of IOC: BDV / HBA / SDC / RDK / SPI' ) 84 84 85 parser.add_option( '--mwr', type = 'string', dest = 'mwr_type', 86 default = 'CPY', 87 help = 'define type of COPROC: CPY / DCT / GCD' ) 88 85 89 parser.add_option( '--v', action = 'store_true', dest = 'verbose', 86 90 default = False, … … 171 175 fbf_size = options.fbf_size # frame buffer width & heigth 172 176 ioc_type = options.ioc_type # ioc controller type 177 mwr_type = options.mwr_type # hardware coprocessor type 173 178 174 179 verbose = options.verbose # report on map.bin generation if True … … 213 218 214 219 # build mapping calling the function (function name) 215 mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size, ioc_type )220 mapping = select.arch( x_size, y_size, nb_procs, nb_ttys, fbf_size, ioc_type, mwr_type ) 216 221 print '[genmap] platform %s build' % mapping.name 217 222
Note: See TracChangeset
for help on using the changeset viewer.