Changeset 826 for soft/giet_vm/applications/rosenfeld/src-par/mca_main.c
- Timestamp:
- Jul 13, 2017, 11:01:58 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/rosenfeld/src-par/mca_main.c
r823 r826 322 322 // ---------------------------------------------------------------------------- 323 323 { 324 CLOCK_INIT(num_threads, 4); // 4 = Number of steps in body324 CLOCK_INIT(num_threads, 5); // 4 = Number of steps in body 325 325 CLOCK_APP_START; 326 326 … … 352 352 int num_threads = DEFAULT_NTHREADS; 353 353 int num_runs = DEFAULT_NRUNS; 354 355 #if TARGET_OS == GIETVM 356 giet_tty_alloc(1); 357 #endif 354 358 355 359 MCA_VERBOSE1(printf("*** Starting application Rosenfeld ***\n")); … … 446 450 447 451 #if TARGET_OS == GIETVM 448 giet_tty_alloc(1);449 452 MCA_VERBOSE1(printf("Initializing heaps... ")); 450 453 for (int i = 0; i < X_SIZE; i++) { … … 458 461 pthread_mutex_init(&print_lock, PTHREAD_PROCESS_PRIVATE); 459 462 main_test_mca(num_threads, num_runs, infile, outfile); 463 464 #if TARGET_OS == GIETVM 465 *(unsigned int *) 0x0 = 0xDEADDEAD; 466 #endif 460 467 461 468 return 0;
Note: See TracChangeset
for help on using the changeset viewer.