Changeset 564148f
- Timestamp:
- Jun 24, 2020, 4:36:40 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 9791ab5
- Parents:
- d72c074
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/yield.cfa
rd72c074 r564148f 140 140 141 141 printf("Took %'ld ms\n", (end - start)`ms); 142 printf("Yields per second : %'18.2lf\n", ((double)global_counter) / (end - start)`s); 143 printf("ns per yields : %'18.2lf\n", ((double)(end - start)`ns) / global_counter); 142 144 printf("Total yields : %'15llu\n", global_counter); 143 145 printf("Yields per procs : %'15llu\n", global_counter / nprocs); 144 printf("Yields per second : %'18.2lf\n", ((double)global_counter) / (end - start)`s);145 146 printf("Yields/sec/procs : %'18.2lf\n", (((double)global_counter) / nprocs) / (end - start)`s); 146 printf("ns per yields : %'18.2lf\n", ((double)(end - start)`ns) / global_counter);147 147 printf("ns per yields/procs : %'18.2lf\n", ((double)(end - start)`ns) / (global_counter / nprocs)); 148 148
Note: See TracChangeset
for help on using the changeset viewer.