Changeset 402 for soft/giet_vm/convol
- Timestamp:
- Sep 1, 2014, 2:52:15 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/convol/main.c
r384 r402 128 128 giet_exit( "[CONVOL ERROR] NB_PROCS_MAX must be 1, 2 or 4\n"); 129 129 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"); 132 132 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"); 135 135 136 136 if ( NL % nclusters != 0 )
Note: See TracChangeset
for help on using the changeset viewer.