Ignore:
Timestamp:
Aug 7, 2014, 12:28:23 PM (10 years ago)
Author:
alain
Message:

Update the convol application to use the new malloc.h and barrier.h libraries.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/convol/convol.py

    r353 r384  
    5656    for x in xrange (x_size):
    5757        for y in xrange (y_size):
    58            
    5958            size       = code_size
    6059            base       = code_base
     
    6766    for x in xrange (x_size):
    6867        for y in xrange (y_size):
    69            
    7068            cluster_id = (x * y_size) + y
    7169            size       = heap_size / (x_size * y_size)
     
    7977        for y in xrange (y_size):
    8078            for p in xrange( procs_max ):
    81 
    8279                proc_id = (((x * y_size) + y) * procs_max) + p
    8380                size    = stack_size / (x_size * y_size * procs_max)
     
    9087    for x in xrange (x_size):
    9188        for y in xrange (y_size):
    92            
    9389            size       = ptab_size
    9490            base       = ptab_base
     
    10298        for y in xrange (y_size):
    10399            for p in xrange( procs_max ):
    104 
    105100                trdid = (((x * y_size) + y) * procs_max) + p
    106101                mapping.addTask( vspace, 'sort_%d_%d_%d' % (x,y,p), trdid, x, y, p,
Note: See TracChangeset for help on using the changeset viewer.