[319] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | ####################################################################################### |
---|
[328] | 4 | # file : genmap |
---|
[319] | 5 | # date : april 2014 |
---|
| 6 | # author : Alain Greiner |
---|
| 7 | ####################################################################################### |
---|
| 8 | # This generic script maps one or several multi-tasks applications on a specific |
---|
| 9 | # instance of the multi-processors/multi-clusters TSAR architecture. |
---|
| 10 | # It generates the files required for hardware and software compilation: |
---|
| 11 | # 1) The "hard_config.h" file is used to generate the top.cppnetbsd file (hardware), |
---|
| 12 | # and to compile the tsar_preloader.elf, the GietVM boot.elf and kernel.elf files. |
---|
| 13 | # 2) The optionals "map.bin" and vsegs.ld" files are used to configure the GietVM. |
---|
| 14 | # 3) The optional "netbsd.dts" file can be used to configure NetBSD. |
---|
| 15 | # 4) The optional "arch.bib" file can be used to configure ALMOS. |
---|
| 16 | # 5) An optional "map.xml" file can be generated for debug. |
---|
| 17 | ####################################################################################### |
---|
| 18 | # The hardware parameters are: |
---|
| 19 | # - x_size : number of clusters in a row |
---|
| 20 | # - y_size : number of clusters in a column |
---|
| 21 | # - nprocs : number of processors per cluster |
---|
| 22 | ####################################################################################### |
---|
| 23 | # The supported platforms are: |
---|
| 24 | # - tsar_generic_iob |
---|
| 25 | # - tsar_generic_leti |
---|
| 26 | ####################################################################################### |
---|
| 27 | # The supported parallel applications are: |
---|
| 28 | # - sort (one thread per processor) |
---|
| 29 | # - transpose (one thread per processor) |
---|
[328] | 30 | # - convol (one thread per processor) |
---|
[319] | 31 | ####################################################################################### |
---|
| 32 | |
---|
| 33 | from optparse import OptionParser |
---|
| 34 | from mapping import * |
---|
| 35 | |
---|
| 36 | import sys |
---|
| 37 | |
---|
| 38 | ###################################################################################### |
---|
| 39 | # define command line arguments |
---|
| 40 | ###################################################################################### |
---|
| 41 | |
---|
| 42 | parser = OptionParser() |
---|
| 43 | |
---|
| 44 | parser.add_option( '--arch', type = 'string', dest = 'arch_path', |
---|
| 45 | help = 'define pathname to architecture' ) |
---|
| 46 | |
---|
| 47 | parser.add_option( '--x', type = 'int', dest = 'x_size', |
---|
| 48 | default = 2, |
---|
| 49 | help = 'define number of clusters in a row' ) |
---|
| 50 | |
---|
| 51 | parser.add_option( '--y', type = 'int', dest = 'y_size', |
---|
| 52 | default = 2, |
---|
| 53 | help = 'define number of clusters in a column' ) |
---|
| 54 | |
---|
| 55 | parser.add_option( '--p', type = 'int', dest = 'nprocs', |
---|
| 56 | default = 2, |
---|
| 57 | help = 'define number of processors per cluster' ) |
---|
| 58 | |
---|
| 59 | parser.add_option( '--v', action = 'store_true', dest = 'verbose', |
---|
| 60 | default = False, |
---|
| 61 | help = 'display detailed report on map.bin file generation' ) |
---|
| 62 | |
---|
| 63 | parser.add_option( '--netbsd', type = 'string', dest = 'netbsd_path', |
---|
| 64 | help = 'define pathname for the netbsd.dts file' ) |
---|
| 65 | |
---|
| 66 | parser.add_option( '--almos', type = 'string', dest = 'almos_path', |
---|
| 67 | help = 'define pathname for the arch.bib file' ) |
---|
| 68 | |
---|
| 69 | parser.add_option( '--giet', type = 'string', dest = 'giet_path', |
---|
| 70 | help = 'define pathname for the map.bin & vsegs.ld file ' ) |
---|
| 71 | |
---|
[401] | 72 | parser.add_option( '--hard', type = 'string', dest = 'hard_path', |
---|
| 73 | help = 'define pathname for the hard_config.h file ' ) |
---|
| 74 | |
---|
[319] | 75 | parser.add_option( '--xml', type = 'string', dest = 'xml_path', |
---|
| 76 | help = 'define pathname for the map.xml file' ) |
---|
| 77 | |
---|
| 78 | ############ supported applications ############################################### |
---|
| 79 | |
---|
| 80 | parser.add_option( '--transpose', action = 'store_true', dest = 'transpose', |
---|
| 81 | default = False, |
---|
[328] | 82 | help = 'map the "transpose" application for the GietVM' ) |
---|
[319] | 83 | |
---|
| 84 | parser.add_option( '--sort', action = 'store_true', dest = 'sort', |
---|
| 85 | default = False, |
---|
[328] | 86 | help = 'map the "sort" application for the GietVM' ) |
---|
[319] | 87 | |
---|
[338] | 88 | parser.add_option( '--convol', action = 'store_true', dest = 'convol', |
---|
[328] | 89 | default = False, |
---|
| 90 | help = 'map the "convol" application for the GietVM' ) |
---|
| 91 | |
---|
[319] | 92 | ###################################################################################### |
---|
| 93 | # Get command line arguments |
---|
| 94 | ###################################################################################### |
---|
| 95 | |
---|
| 96 | (options,args) = parser.parse_args() |
---|
| 97 | |
---|
| 98 | x_size = options.x_size # number of clusters in a row |
---|
| 99 | y_size = options.y_size # number of clusters in a column |
---|
| 100 | nprocs = options.nprocs # number of processors in a cluster |
---|
| 101 | |
---|
| 102 | verbose = options.verbose # report on map.bin generation if True |
---|
| 103 | |
---|
| 104 | netbsd_path = options.netbsd_path # path for netbsd.dts file |
---|
| 105 | almos_path = options.almos_path # path for arch.bib file |
---|
| 106 | giet_path = options.giet_path # path for map.bin & vsegs.ld files |
---|
[401] | 107 | hard_path = options.hard_path # path for the hard_config.h file |
---|
[319] | 108 | |
---|
| 109 | arch_path = options.arch_path # path to selected architecture |
---|
| 110 | |
---|
| 111 | xml_path = options.xml_path # path for map.xml file |
---|
| 112 | |
---|
[328] | 113 | map_transpose = options.transpose # map "transpose" application if True |
---|
| 114 | map_sort = options.sort # map "sort" application if True |
---|
[338] | 115 | map_convol = options.convol # map "convol" application if True |
---|
[319] | 116 | |
---|
| 117 | ###################################################################################### |
---|
| 118 | # build empty platform (no applications yet) |
---|
| 119 | ###################################################################################### |
---|
| 120 | |
---|
| 121 | if ( arch_path == None ): |
---|
| 122 | print 'You must select a generic architecture on the command line' |
---|
| 123 | sys.exit(1) |
---|
| 124 | |
---|
| 125 | # dynamically append the architecture to PYTHON path (directory pathname) |
---|
| 126 | sys.path.append( arch_path ) |
---|
| 127 | |
---|
| 128 | # dynamically import the PYTHON mapping generator module (file name) |
---|
[338] | 129 | select = __import__( 'arch' ) |
---|
[319] | 130 | |
---|
| 131 | # build mapping calling the function (function name) |
---|
[338] | 132 | mapping = select.arch( x_size, y_size, nprocs ) |
---|
[328] | 133 | print '[genmap] platform %s build' % mapping.name |
---|
[319] | 134 | |
---|
| 135 | ###################################################################################### |
---|
| 136 | # complete mapping with application(s) as required |
---|
| 137 | ###################################################################################### |
---|
| 138 | |
---|
[401] | 139 | if ( map_transpose ): |
---|
| 140 | app = __import__( 'transpose' ) |
---|
| 141 | app.transpose( mapping ) |
---|
[328] | 142 | print '[genmap] application "transpose" loaded' |
---|
[319] | 143 | |
---|
| 144 | if ( map_sort ): |
---|
[401] | 145 | app = __import__( 'sort' ) |
---|
| 146 | app.sort( mapping ) |
---|
[328] | 147 | print '[genmap] application "sort" loaded' |
---|
[319] | 148 | |
---|
[328] | 149 | if ( map_convol ): |
---|
[401] | 150 | app = __import__( 'convol' ) |
---|
| 151 | app.convol( mapping ) |
---|
[328] | 152 | print '[genmap] application "convol" loaded' |
---|
| 153 | |
---|
[319] | 154 | ###################################################################################### |
---|
| 155 | # Generate xml file if required. |
---|
| 156 | # It can be used for debug. |
---|
| 157 | ###################################################################################### |
---|
| 158 | |
---|
| 159 | if ( xml_path != None ): |
---|
| 160 | pathname = xml_path + '/map.xml' |
---|
| 161 | f = open ( pathname, 'w' ) |
---|
| 162 | f.write( mapping.xml() ) |
---|
[328] | 163 | print '[genmap] %s generated for debug' % pathname |
---|
[319] | 164 | |
---|
| 165 | ###################################################################################### |
---|
| 166 | # Generate netbsd.dts file if required. |
---|
| 167 | # It is used for NetBSD configuration. |
---|
| 168 | ###################################################################################### |
---|
| 169 | |
---|
| 170 | if ( (netbsd_path != None) and (arch_path != None) ): |
---|
| 171 | pathname = netbsd_path + '/netbsd.dts' |
---|
| 172 | f = open ( pathname, 'w' ) |
---|
| 173 | f.write( mapping.netbsd_dts() ) |
---|
[328] | 174 | print '[genmap] %s generated for netbsd' % pathname |
---|
[319] | 175 | |
---|
| 176 | ###################################################################################### |
---|
| 177 | # Generate arch.bib file if required. |
---|
| 178 | # It is used for ALMOS configuration. |
---|
| 179 | ###################################################################################### |
---|
| 180 | |
---|
| 181 | if ( (almos_path != None) and (arch_path != None) ): |
---|
| 182 | pathname = almos_path + '/arch.info' |
---|
| 183 | f = open ( pathname, 'w' ) |
---|
| 184 | f.write( mapping.almos_arch() ) |
---|
[328] | 185 | print '[genmap] %s generated for almos' % pathname |
---|
[319] | 186 | |
---|
| 187 | ###################################################################################### |
---|
| 188 | # Generate map.bin, giet_vsegs.ld, and hard_config.h files if required. |
---|
| 189 | # They are used for GietVM compilation and configuration. |
---|
| 190 | ###################################################################################### |
---|
| 191 | |
---|
| 192 | if ( (giet_path != None) and (arch_path != None) ): |
---|
| 193 | |
---|
| 194 | pathname = giet_path + '/map.bin' |
---|
| 195 | f = open ( pathname, 'w' ) |
---|
| 196 | f.write( str( mapping.cbin( verbose ) ) ) |
---|
[328] | 197 | print '[genmap] %s generated for giet_vm' % pathname |
---|
[319] | 198 | |
---|
| 199 | pathname = giet_path + '/hard_config.h' |
---|
| 200 | f = open ( pathname, 'w' ) |
---|
| 201 | f.write( mapping.hard_config() ) |
---|
[328] | 202 | print '[genmap] %s generated for giet_vm' % pathname |
---|
[319] | 203 | |
---|
| 204 | pathname = giet_path + '/giet_vsegs.ld' |
---|
| 205 | f = open ( pathname, 'w' ) |
---|
| 206 | f.write( mapping.giet_vsegs() ) |
---|
[328] | 207 | print '[genmap] %s generated for giet_vm' % pathname |
---|
[319] | 208 | |
---|
[401] | 209 | ###################################################################################### |
---|
| 210 | # Generate hard_config.h file if required. |
---|
| 211 | ###################################################################################### |
---|
| 212 | |
---|
| 213 | if ( hard_path != None ): |
---|
| 214 | |
---|
| 215 | pathname = hard_path + '/hard_config.h' |
---|
| 216 | f = open ( pathname, 'w' ) |
---|
| 217 | f.write( mapping.hard_config() ) |
---|
| 218 | print '[genmap] %s generated for %s' % (pathname, arch_path) |
---|
| 219 | |
---|