Skip to content

Commit d5dfbb2

Browse files
committed
Fix silly mistakes
- typos in gnuplot scripts - actually fetch the current time...
1 parent d0bf645 commit d5dfbb2

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

Diff for: all.plot

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ replot
3939
set term pop
4040

4141
set xlabel "Time since start"
42-
set ylabel "SETMUTI ops per second"
43-
plot "SETMUTI.dat" with lines
42+
set ylabel "SETMULTI ops per second"
43+
plot "SETMULTI.dat" with lines
4444

4545
set size 1.0, 0.6
4646
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
47-
set output "setmuti.ps"
47+
set output "setmulti.ps"
4848
replot
4949
set term pop

Diff for: multi.plot

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ replot
3939
set term pop
4040

4141
set xlabel "Time since start"
42-
set ylabel "SETMUTI ops per second"
43-
plot "pre/SETMUTI.dat" title 'Pre' with lines, "post/SETMUTI.dat" title 'Post' with lines
42+
set ylabel "SETMULTI ops per second"
43+
plot "pre/SETMULTI.dat" title 'Pre' with lines, "post/SETMULTI.dat" title 'Post' with lines
4444

4545
set size 1.0, 0.6
4646
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
47-
set output "setmuti.ps"
47+
set output "setmulti.ps"
4848
replot
4949
set term pop

Diff for: src/main/java/edu/brown/cs/zookeeper_benchmark/ZooKeeperBenchmark.java

+2
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,8 @@ public void run() {
352352
return;
353353
}
354354

355+
_currentCpuTime = System.nanoTime();
356+
355357
if (_rateFile != null) {
356358
try {
357359
if (finished - _lastfinished > 0) {

0 commit comments

Comments
 (0)