Changeset 900 for branches/reconfiguration
- Timestamp:
- Dec 3, 2014, 1:49:53 PM (10 years ago)
- Location:
- branches/reconfiguration/platforms/tsar_generic_iob
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/scripts/arch.py
r893 r900 240 240 kcode_size = 0x00080000 # 512 Kbytes 241 241 242 kdata_vbase = 0x80100000 243 kdata_size = 0x00080000 # 512 Kbytes 244 242 245 kinit_vbase = 0x80800000 243 246 kinit_size = 0x00080000 # 512 Kbytes 244 245 kdata_vbase = 0x80100000246 kdata_size = 0x00080000 # 512 Kbytes247 247 248 248 kuncdata_vbase = 0x80180000 -
branches/reconfiguration/platforms/tsar_generic_iob/scripts/onerun.py
r893 r900 112 112 else: 113 113 # by observation, the procedure grows linearly with the diameter of the mesh. 114 maxcycles = (args.x + args.y) * 20000;114 maxcycles = 150000 + (args.x + args.y) * 20000; 115 115 command.extend(["-NCYCLES", str(maxcycles)]) 116 116 -
branches/reconfiguration/platforms/tsar_generic_iob/top.cpp
r890 r900 1647 1647 1648 1648 // vim: filetype=cpp:expandtab:shiftwidth=3:tabstop=3:softtabstop=3 1649 1650 1651
Note: See TracChangeset
for help on using the changeset viewer.