Skip to content

Commit 795c8b5

Browse files
committed
Fix benchmark plotting scripts
1 parent 5c36146 commit 795c8b5

File tree

5 files changed

+44
-20
lines changed

5 files changed

+44
-20
lines changed

scripts/BUILD

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "generate-" + t + "-" + f + "-csv",
33
tools = [dep],
44
outs = [t + "-" + f + ".csv"],
5-
cmd = "$(location " + dep + ") " + o + " -samples=1000 -v > $@",
5+
cmd = "$(location " + dep + ") " + o + " -classic -samples=1000 -v > $@",
66
) for (t,f,o,dep) in [
77
("c", "float", "-32", "//ryu/benchmark"),
88
("c", "double", "-64", "//ryu/benchmark"),
@@ -12,7 +12,7 @@
1212

1313
CONVERSION_CMD="".join([
1414
"TMP_FILE=$$(mktemp /tmp/plot.XXXXXX)",
15-
" && cat $(location gnuplot.template)",
15+
" && cat $(location %s.template)",
1616
" | sed \"s|INPUT_FILE|$<|g\"",
1717
" | sed \"s|COMPARISON_NAME_1|%s|g\"",
1818
" | sed \"s|COMPARISON_NAME_2|%s|g\"",
@@ -23,8 +23,8 @@ CONVERSION_CMD="".join([
2323
[genrule(
2424
name = "generate-" + t + "-" + f + "-pdf",
2525
srcs = [t + "-" + f + ".csv"],
26-
tools = ["gnuplot.template"],
26+
tools = [f + ".template"],
2727
outs = [t + "-" + f + ".pdf"],
28-
cmd = CONVERSION_CMD % (c, d),
28+
cmd = CONVERSION_CMD % (f, c, d),
2929
) for (t,c,d) in [("c","Grisu3",""),("java","Jdk","Jaffer")] for f in ["float","double"]]
3030

scripts/double.template

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
set title ""
2+
set datafile separator ","
3+
set linetype 1 lc rgb '#396AB1'
4+
set linetype 2 lc rgb '#DA7C30'
5+
set linetype 3 lc rgb '#3E9651'
6+
set term pdf size 25cm, 15cm
7+
set key above left horizontal Left reverse samplen 0.1
8+
set ylabel "Time in ns"
9+
set xrange [0:18446744073709551616.0]
10+
set xtics ("0" 0, "2^{62}" 4611686018427387904.0, "2^{63}" 9223372036854775808.0, "2^{63}+2^{62}" 13835058055282163712.0, "2^{64}" 18446744073709551616.0)
11+
plot "INPUT_FILE" using 2:3 with points ps 0.5 title "Ryū", \
12+
"INPUT_FILE" using 2:4 with points ps 0.5 title "COMPARISON_NAME_1", \
13+
"INPUT_FILE" using 2:5 with points ps 0.5 title "COMPARISON_NAME_2",

scripts/float.template

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
set title ""
2+
set datafile separator ","
3+
set linetype 1 lc rgb '#396AB1'
4+
set linetype 2 lc rgb '#DA7C30'
5+
set linetype 3 lc rgb '#3E9651'
6+
set term pdf size 25cm, 15cm
7+
set key above left horizontal Left reverse samplen 0.1
8+
set ylabel "Time in ns"
9+
set xrange [0:4294967296.0]
10+
set xtics ("0" 0, "2^{30}" 1073741824.0, "2^{31}" 2147483648.0, "2^{31}+2^{30}" 3221225472.0, "2^{32}" 4294967296.0)
11+
plot "INPUT_FILE" using 2:3 with points ps 0.5 title "Ryū", \
12+
"INPUT_FILE" using 2:4 with points ps 0.5 title "COMPARISON_NAME_1", \
13+
"INPUT_FILE" using 2:5 with points ps 0.5 title "COMPARISON_NAME_2",

scripts/gnuplot.template

-13
This file was deleted.

src/main/java/info/adams/ryu/benchmark/BenchmarkMain.java

+14-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static void main(String[] args) {
4444
}
4545

4646
if (verbose) {
47-
System.out.println("float_bits_as_int,ryu_time_in_ns,jdk_time_in_ns,jaffer_time_in_ns");
47+
System.out.println("output_ryu,float_bits_as_int,ryu_time_in_ns,jdk_time_in_ns,jaffer_time_in_ns");
4848
} else {
4949
System.out.printf(" Average & Stddev Ryu Average & Stddev Jdk Average & Stddev Jaffer\n");
5050
}
@@ -111,7 +111,12 @@ private static int bench32(int samples, int iterations, boolean verbose) {
111111
double delta2 = (stop - start) / (double) iterations;
112112
mv2.update(delta2);
113113
if (verbose) {
114-
System.out.println(Integer.toUnsignedString(r) + "," + delta1 + "," + delta2 + ",");
114+
System.out.printf(
115+
"%s,%s,%s,%s,\n",
116+
RyuFloat.floatToString(f),
117+
Integer.toUnsignedString(r),
118+
Double.valueOf(delta1),
119+
Double.valueOf(delta2));
115120
}
116121
}
117122
if (!verbose) {
@@ -185,7 +190,13 @@ private static int bench64(int samples, int iterations, boolean verbose) {
185190
double delta3 = (stop - start) / (double) iterations;
186191
mv3.update(delta3);
187192
if (verbose) {
188-
System.out.println(Long.toUnsignedString(r) + "," + delta1 + "," + delta2 + "," + delta3);
193+
System.out.printf(
194+
"%s,%s,%s,%s,%s\n",
195+
RyuDouble.doubleToString(f),
196+
Long.toUnsignedString(r),
197+
Double.valueOf(delta1),
198+
Double.valueOf(delta2),
199+
Double.valueOf(delta3));
189200
}
190201
}
191202
if (!verbose) {

0 commit comments

Comments
 (0)