Skip to content

Commit

Permalink
Fix silly mistakes
Browse files Browse the repository at this point in the history
- typos in gnuplot scripts
- actually fetch the current time...
  • Loading branch information
adferguson committed Sep 1, 2012
1 parent d0bf645 commit d5dfbb2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions all.plot
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ replot
set term pop

set xlabel "Time since start"
set ylabel "SETMUTI ops per second"
plot "SETMUTI.dat" with lines
set ylabel "SETMULTI ops per second"
plot "SETMULTI.dat" with lines

set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "setmuti.ps"
set output "setmulti.ps"
replot
set term pop
6 changes: 3 additions & 3 deletions multi.plot
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ replot
set term pop

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

set size 1.0, 0.6
set terminal postscript portrait enhanced color dashed lw 1 "Helvetica" 14
set output "setmuti.ps"
set output "setmulti.ps"
replot
set term pop
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,8 @@ public void run() {
return;
}

_currentCpuTime = System.nanoTime();

if (_rateFile != null) {
try {
if (finished - _lastfinished > 0) {
Expand Down

0 comments on commit d5dfbb2

Please sign in to comment.