Changeset 462


Ignore:
Timestamp:
Dec 5, 2014, 4:18:16 PM (10 years ago)
Author:
alain
Message:

Cosmetic.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_python/genmap

    r453 r462  
    2828# - tsar_generic_leti
    2929#######################################################################################
    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
    3437#######################################################################################
    3538
     
    111114                   default = False,
    112115                   help = 'map the "display" application for the GietVM' )
     116
     117parser.add_option( '--classif', action = 'store_true', dest = 'classif',     
     118                   default = False,
     119                   help = 'map the "classif" application for the GietVM' )
    113120
    114121######################################################################################
     
    139146map_sort      = options.sort        # map "sort" application if True
    140147map_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
     148map_router    = options.router      # map "router" application if True
     149map_display   = options.display     # map "display" application if True
     150map_classif   = options.classif     # map "classif" application if True
    143151
    144152######################################################################################
     
    189197    print '[genmap] application "display" will be loaded'
    190198
     199if ( map_classif ):     
     200    app = __import__( 'classif' )
     201    app.classif( mapping )
     202    print '[genmap] application "classif" will be loaded'
     203
    191204######################################################################################
    192205#   Generate xml file if required.
Note: See TracChangeset for help on using the changeset viewer.