Ignore:
Timestamp:
Dec 3, 2014, 1:49:53 PM (9 years ago)
Author:
cfuguet
Message:

reconf: increase the maxcycles limit for the distributed boot simulations

Location:
branches/reconfiguration/platforms/tsar_generic_iob/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/reconfiguration/platforms/tsar_generic_iob/scripts/arch.py

    r893 r900  
    240240    kcode_size = 0x00080000               # 512 Kbytes
    241241
     242    kdata_vbase = 0x80100000
     243    kdata_size = 0x00080000               # 512 Kbytes
     244
    242245    kinit_vbase = 0x80800000
    243246    kinit_size = 0x00080000               # 512 Kbytes
    244 
    245     kdata_vbase = 0x80100000
    246     kdata_size = 0x00080000               # 512 Kbytes
    247247
    248248    kuncdata_vbase = 0x80180000
  • branches/reconfiguration/platforms/tsar_generic_iob/scripts/onerun.py

    r893 r900  
    112112    else:
    113113        # 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;
    115115        command.extend(["-NCYCLES", str(maxcycles)])
    116116
Note: See TracChangeset for help on using the changeset viewer.