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/main.c

    r377 r384  
    1111#include "stdlib.h"
    1212#include "barrier.h"
    13 #include "remote_malloc.h"
     13#include "malloc.h"
    1414
    1515#define USE_SBT_BARRIER            1
     
    183183#endif
    184184
    185         GA[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)   , 9 , x , y );
    186         GB[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , 9 , x , y );
    187         GC[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , 9 , x , y );
    188         GD[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , 9 , x , y );
    189         GZ[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)/2 , 9 , x , y );
     185        GA[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)   , x , y );
     186        GB[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , x , y );
     187        GC[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , x , y );
     188        GD[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , x , y );
     189        GZ[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)/2 , x , y );
    190190       
    191191#if VERBOSE
Note: See TracChangeset for help on using the changeset viewer.