Changeset 7f6a7c9 for benchmark/readyQ/locality.go
- Timestamp:
- Sep 21, 2022, 11:02:15 AM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, stuck-waitfor-destruct
- Children:
- 95dab9e
- Parents:
- 428adbc (diff), 0bd46fd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
benchmark/readyQ/locality.go (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/locality.go
r428adbc r7f6a7c9 286 286 // Print with nice 's, i.e. 1'000'000 instead of 1000000 287 287 p := message.NewPrinter(language.English) 288 p.Printf("Duration (ms) : % f\n", delta.Milliseconds());288 p.Printf("Duration (ms) : %d\n", delta.Milliseconds()); 289 289 p.Printf("Number of processors : %d\n", nprocs); 290 290 p.Printf("Number of threads : %d\n", nthreads); 291 291 p.Printf("Work size (64bit words): %d\n", size); 292 if share { 293 p.Printf("Data sharing : On\n"); 294 } else { 295 p.Printf("Data sharing : Off\n"); 296 } 292 297 p.Printf("Total Operations(ops) : %15d\n", results.count) 293 298 p.Printf("Total G Migrations : %15d\n", results.gmigs)
Note:
See TracChangeset
for help on using the changeset viewer.