Changeset 858
- Timestamp:
- Oct 23, 2014, 4:18:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/scripts/arch.py
r831 r858 33 33 # - X_WIDTH : number of bits for x coordinate 34 34 # - Y_WIDTH : number of bits for y coordinate 35 # - p_width: number of bits for processor local id field35 # - P_WIDTH : number of bits for processor local id field 36 36 # - PADDR_WIDTH : number of bits for physical address 37 37 # - IRQ_PER_PROC : number of input IRQs per processor … … 49 49 X_WIDTH = 4 50 50 Y_WIDTH = 4 51 P_WIDTH = 2 51 52 X_IO = 0 52 53 Y_IO = 0 … … 71 72 """This function describes the tsar_generic_iob platform and defines its 72 73 parameters""" 73 74 p_width = log(nb_procs, 2)75 74 76 75 # parameters checking … … 142 141 x_width=X_WIDTH, 143 142 y_width=Y_WIDTH, 144 p_width= p_width,143 p_width=P_WIDTH, 145 144 paddr_width=PADDR_WIDTH, 146 145 coherence=True,
Note: See TracChangeset
for help on using the changeset viewer.