Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/readyQ/yield.cfa

    r6dc2db9 re54d0c3  
    8080                }
    8181
    82                 printf("Duration (ms)       : %'ld\n", (end - start)`dms);
    83                 printf("Number of processors: %'d\n", nprocs);
    84                 printf("Number of threads   : %'d\n", nthreads);
    85                 printf("Total yields        : %'15llu\n", global_counter);
     82                printf("Took %'ld ms\n", (end - start)`ms);
    8683                printf("Yields per second   : %'18.2lf\n", ((double)global_counter) / (end - start)`s);
    8784                printf("ns per yields       : %'18.2lf\n", ((double)(end - start)`ns) / global_counter);
     85                printf("Total yields        : %'15llu\n", global_counter);
    8886                printf("Yields per procs    : %'15llu\n", global_counter / nprocs);
    8987                printf("Yields/sec/procs    : %'18.2lf\n", (((double)global_counter) / nprocs) / (end - start)`s);
Note: See TracChangeset for help on using the changeset viewer.