Changeset 669 for soft/giet_vm/applications/classif
- Timestamp:
- Jul 27, 2015, 8:40:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/classif/main.c
r549 r669 11 11 // It can run on architectures containing up to 16 * 16 clusters, 12 12 // and up to 8 processors per cluster. 13 // 14 // It requires N+2 TTY terminals, as each task in cluster[0][0] displays messages. 13 15 // 14 16 // This application is described as a TCG (Task and Communication Graph) … … 142 144 if ( (x==0) && (y==0) ) 143 145 { 144 giet_tty_alloc(); 146 // allocate a private TTY 147 giet_tty_alloc(0); 145 148 146 149 giet_tty_printf("\n*** Task load on P[%d][%d][%d] starts at cycle %d\n" … … 299 302 if ( (x==0) && (y==0) ) 300 303 { 301 giet_tty_alloc(); 304 // allocate a private TTY 305 giet_tty_alloc(0); 302 306 303 307 giet_tty_printf("\n*** Task store on P[%d][%d][%d] starts at cycle %d\n" … … 439 443 if ( (x==0) && (y==0) ) 440 444 { 441 giet_tty_alloc(); 445 // allocate a private TTY 446 giet_tty_alloc(0); 442 447 443 448 giet_tty_printf("\n*** Task analyse on P[%d][%d][%d] starts at cycle %d\n"
Note: See TracChangeset
for help on using the changeset viewer.