Changeset 441 for soft/giet_vm/giet_python/genmap
- Timestamp:
- Nov 3, 2014, 11:15:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_python/genmap
r432 r441 102 102 help = 'map the "router" application for the GietVM' ) 103 103 104 parser.add_option( '--display', action = 'store_true', dest = 'display', 105 default = False, 106 help = 'map the "display" application for the GietVM' ) 107 104 108 ###################################################################################### 105 109 # Get command line arguments … … 129 133 map_convol = options.convol # map "convol" application if True 130 134 map_router = options.router # map "convol" application if True 135 map_display = options.display # map "convol" application if True 131 136 132 137 ###################################################################################### … … 155 160 app = __import__( 'transpose' ) 156 161 app.transpose( mapping ) 157 print '[genmap] application "transpose" loaded'162 print '[genmap] application "transpose" will be loaded' 158 163 159 164 if ( map_sort ): 160 165 app = __import__( 'sort' ) 161 166 app.sort( mapping ) 162 print '[genmap] application "sort" loaded'167 print '[genmap] application "sort" will be loaded' 163 168 164 169 if ( map_convol ): 165 170 app = __import__( 'convol' ) 166 171 app.convol( mapping ) 167 print '[genmap] application "convol" loaded'172 print '[genmap] application "convol" will be loaded' 168 173 169 174 if ( map_router ): 170 175 app = __import__( 'router' ) 171 176 app.router( mapping ) 172 print '[genmap] application "router" loaded' 177 print '[genmap] application "router" will be loaded' 178 179 if ( map_display ): 180 app = __import__( 'display' ) 181 app.display( mapping ) 182 print '[genmap] application "display" will be loaded' 173 183 174 184 ######################################################################################
Note: See TracChangeset
for help on using the changeset viewer.