make virtdata microbench easier to read

This commit is contained in:
Jonathan Shook 2023-12-10 22:07:11 -06:00
parent 6d93155ce1
commit 842cca0d9d

View File

@ -42,10 +42,10 @@ public class RunData {
public String toString() {
return " run data = [derived values in brackets]\n" +
" specifier = '" + spec + "'\n" +
" cycles = [" + min + ".." + max + ")\n" +
" threads = " + threads + "\n" +
" min = " + min + "\n" +
" max = " + max + "\n" +
" [count] = " + (max - min) + "\n" +
" [count/thread] = " + (max - min) + "\n" +
" [total] = " + (max - min) * threads + "\n" +
" buffersize = " + buffersize + "\n" +
" [totalGenTimeMs] = " + totalGenTimeMs + "\n" +
" [totalCmpTimeMs] = " + totalCmpTimeMs + "\n" +