Changeset 462 for soft/giet_vm/giet_python/genmap
- Timestamp:
- Dec 5, 2014, 4:18:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r453 r462 28 28 # - tsar_generic_leti 29 29 ####################################################################################### 30 # The supported parallel applications are: 31 # - sort (one thread per processor) 32 # - transpose (one thread per processor) 33 # - convol (one thread per processor) 30 # The supported applications are: 31 # - sort 32 # - transpose 33 # - convol 34 # - router 35 # - classif 36 # - display 34 37 ####################################################################################### 35 38 … … 111 114 default = False, 112 115 help = 'map the "display" application for the GietVM' ) 116 117 parser.add_option( '--classif', action = 'store_true', dest = 'classif', 118 default = False, 119 help = 'map the "classif" application for the GietVM' ) 113 120 114 121 ###################################################################################### … … 139 146 map_sort = options.sort # map "sort" application if True 140 147 map_convol = options.convol # map "convol" application if True 141 map_router = options.router # map "convol" application if True 142 map_display = options.display # map "convol" application if True 148 map_router = options.router # map "router" application if True 149 map_display = options.display # map "display" application if True 150 map_classif = options.classif # map "classif" application if True 143 151 144 152 ###################################################################################### … … 189 197 print '[genmap] application "display" will be loaded' 190 198 199 if ( map_classif ): 200 app = __import__( 'classif' ) 201 app.classif( mapping ) 202 print '[genmap] application "classif" will be loaded' 203 191 204 ###################################################################################### 192 205 # Generate xml file if required.
Note: See TracChangeset
for help on using the changeset viewer.