Changeset 402 for soft/giet_vm


Ignore:
Timestamp:
Sep 1, 2014, 2:52:15 PM (10 years ago)
Author:
alain
Message:

supporting X_SIZE = 16 and Y_SIZE = 16

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/convol/main.c

    r384 r402  
    128128        giet_exit( "[CONVOL ERROR] NB_PROCS_MAX must be 1, 2 or 4\n");
    129129
    130     if ((X_SIZE!=1) && (X_SIZE!=2) && (X_SIZE!=4) && (X_SIZE!=8))
    131         giet_exit( "[CONVOL ERROR] X_SIZE must be 1, 2, 4, 8\n");
     130    if ((X_SIZE!=1) && (X_SIZE!=2) && (X_SIZE!=4) && (X_SIZE!=8) && (X_SIZE!=16))
     131        giet_exit( "[CONVOL ERROR] X_SIZE must be 1, 2, 4, 8, 16\n");
    132132       
    133     if ((Y_SIZE!=1) && (Y_SIZE!=2) && (Y_SIZE!=4) && (Y_SIZE!=8))
    134         giet_exit( "[CONVOL ERROR] X_SIZE must be 1, 2, 4, 8\n");
     133    if ((Y_SIZE!=1) && (Y_SIZE!=2) && (Y_SIZE!=4) && (Y_SIZE!=8) && (Y_SIZE!=16))
     134        giet_exit( "[CONVOL ERROR] Y_SIZE must be 1, 2, 4, 8, 16\n");
    135135
    136136    if ( NL % nclusters != 0 )
Note: See TracChangeset for help on using the changeset viewer.