Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/readyQ/locality.go

    r6dc2db9 raec2c022  
    286286        // Print with nice 's, i.e. 1'000'000 instead of 1000000
    287287        p := message.NewPrinter(language.English)
    288         p.Printf("Duration (ms)          : %f\n", delta.Milliseconds());
     288        p.Printf("Duration (ms)          : %d\n", delta.Milliseconds());
    289289        p.Printf("Number of processors   : %d\n", nprocs);
    290290        p.Printf("Number of threads      : %d\n", nthreads);
    291291        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        }
    292297        p.Printf("Total Operations(ops)  : %15d\n", results.count)
    293298        p.Printf("Total G Migrations     : %15d\n", results.gmigs)
Note: See TracChangeset for help on using the changeset viewer.