[Assorted-commits] SF.net SVN: assorted: [368] hash-join/trunk/tools/LogProc.scala
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-11 05:17:45
|
Revision: 368 http://assorted.svn.sourceforge.net/assorted/?rev=368&view=rev Author: yangzhang Date: 2008-02-10 21:17:48 -0800 (Sun, 10 Feb 2008) Log Message: ----------- LogProc outputs to data/ Modified Paths: -------------- hash-join/trunk/tools/LogProc.scala Modified: hash-join/trunk/tools/LogProc.scala =================================================================== --- hash-join/trunk/tools/LogProc.scala 2008-02-11 05:17:25 UTC (rev 367) +++ hash-join/trunk/tools/LogProc.scala 2008-02-11 05:17:48 UTC (rev 368) @@ -78,7 +78,7 @@ def f(s:String) = { { for ((field,_) <- plotData) yield ( - "'" + camelToHyphen(field) + s + ".dat" + "' with linespoints title '" + fieldNameToLabel(field) + "'" + "'data/" + camelToHyphen(field) + s + ".dat" + "' with linespoints title '" + fieldNameToLabel(field) + "'" ) } mkString ", " } @@ -86,11 +86,11 @@ set terminal pdf set xlabel 'number of threads' - set output 'times.pdf' + set output 'data/times.pdf' set ylabel 'time (ms)' plot """ + f("-time") + """ - set output 'speedups.pdf' + set output 'data/speedups.pdf' set ylabel 'speedup (relative to 1 thread)' plot """ + f("-speedup") ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |