Ignore:
Timestamp:
May 19, 2015, 3:52:58 PM (9 years ago)
Author:
alain
Message:

Cosmetic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/applications/transpose/main.c

    r543 r574  
    2828#define CLUSTERS_MAX        32                  // max number of clusters
    2929#define PROCS_MAX           4                   // max number of processors per cluster
    30 #define NN                  128                 // image size : nlines = npixels = 128
    31 #define NB_IMAGES           5                   // number of images to be handled
    32 #define FILE_PATHNAME       "misc/images.raw"   // file pathname on disk
     30#define NN                  256                 // image size : nlines = npixels
     31#define NB_IMAGES           1                   // number of images to be handled
     32#define FILE_PATHNAME       "misc/lena.raw"     // pathname on virtual disk
    3333#define INSTRUMENTATION_OK  0                   // display statistics on TTY when non zero
    3434
     
    139139
    140140        // open file containing images
    141         file = giet_fat_open( "misc/images.raw", 0);
     141        file = giet_fat_open( FILE_PATHNAME , 0 );
    142142
    143143        if (file < 0)
    144144        {
    145145            giet_shr_printf("\n[TRANSPOSE ERROR] Proc [%d,%d,%d]"
    146                             " cannot open file misc/images.raw",
    147                             x, y, lpid );
     146                            " cannot open file %s",
     147                            x , y , lpid , FILE_PATHNAME );
    148148            giet_exit(" open() failure");
    149149        }
Note: See TracChangeset for help on using the changeset viewer.