Changeset 3f8baf4 for benchmark/readyQ/locality.cfa
- Timestamp:
- Dec 21, 2020, 6:00:05 PM (2 years ago)
- Branches:
- ADT, arm-eh, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- fe97de26
- Parents:
- 7efb322
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/locality.cfa
r7efb322 r3f8baf4 36 36 // ================================================== 37 37 struct MyData { 38 uint64_t [16] _p1; // padding38 uint64_t _p1[16]; // padding 39 39 uint64_t * data; 40 40 size_t len; 41 41 processor * ttid; 42 42 size_t id; 43 uint64_t [16] _p2; // padding43 uint64_t _p2[16]; // padding 44 44 }; 45 45 … … 74 74 MyThread * volatile ptr; 75 75 size_t id; 76 uint64_t [16] _p1; // padding76 uint64_t _p1[16]; // padding 77 77 }; 78 78 … … 256 256 printf("Number of threads : %'d\n", nthreads); 257 257 printf("Total Operations(ops) : %'15llu\n", global_count); 258 printf("Work size (64bit words): %'15llu ", wsize);259 printf("Total Operations(ops) : %'15llu ", global_count);260 printf("Total G Migrations : %'15llu ", global_gmigs);261 printf("Total D Migrations : %'15llu ", global_dmigs);258 printf("Work size (64bit words): %'15llu\n", wsize); 259 printf("Total Operations(ops) : %'15llu\n", global_count); 260 printf("Total G Migrations : %'15llu\n", global_gmigs); 261 printf("Total D Migrations : %'15llu\n", global_dmigs); 262 262 printf("Ops per second : %'18.2lf\n", ((double)global_count) / (end - start)`ds); 263 263 printf("ns per ops : %'18.2lf\n", (end - start)`dns / global_count);
Note: See TracChangeset
for help on using the changeset viewer.