Ignore:
Timestamp:
Jul 14, 2015, 5:02:32 PM (9 years ago)
Author:
alain
Message:

Rename the path to .elf file in the "appli.py" files,
because the "build" directory has been renamed to "bin" on virtual disk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/classif/classif.py

    r589 r610  
    6060    mapping.addVseg( vspace, 'classif_data', data_base , data_size,
    6161                     'C_WU', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM',
    62                      binpath = 'build/classif/appli.elf',
     62                     binpath = 'bin/classif/appli.elf',
    6363                     local = False )
    6464
     
    8484                                 code_base , code_size,
    8585                                 'CXWU', vtype = 'ELF', x = x, y = y, pseg = 'RAM',
    86                                  binpath = 'build/classif/appli.elf',
     86                                 binpath = 'bin/classif/appli.elf',
    8787                                 local = True )
    8888
     
    110110                    trdid = (((x * y_size) + y) * nprocs) + p
    111111                    if  ( p== 0 ):                              # task load
    112                         task_index = 0
     112                        task_index = 2
    113113                        task_name  = 'load_%d_%d_%d' %(x,y,p)           
    114114                    elif  ( p== 1 ):                            # task store
     
    116116                        task_name  = 'store_%d_%d_%d' %(x,y,p)           
    117117                    else :                                      # task analyse
    118                         task_index = 2
     118                        task_index = 0
    119119                        task_name  = 'analyse_%d_%d_%d' % (x,y,p)
    120120
Note: See TracChangeset for help on using the changeset viewer.