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