[Swift-commit] r5731 - SwiftApps/SciColSim/docs

ketan at ci.uchicago.edu ketan at ci.uchicago.edu
Thu Mar 29 22:21:10 CDT 2012


Author: ketan
Date: 2012-03-29 22:21:10 -0500 (Thu, 29 Mar 2012)
New Revision: 5731

Added:
   SwiftApps/SciColSim/docs/plotit.gp
Removed:
   SwiftApps/SciColSim/docs/plotit
Log:
small change in plotting script

Deleted: SwiftApps/SciColSim/docs/plotit
===================================================================
--- SwiftApps/SciColSim/docs/plotit	2012-03-27 20:22:54 UTC (rev 5730)
+++ SwiftApps/SciColSim/docs/plotit	2012-03-30 03:21:10 UTC (rev 5731)
@@ -1,44 +0,0 @@
-#To be run as a gnuplot script:
-# $ gnuplot plotit
-set terminal png enhanced 
-#set term postscript eps enhanced 
-#set terminal svg enhanced size 1000 1000
-#set style line 1 linecolor rgb "blue"
-set output "activeplot.png"
-set nokey
-set xlabel "Time in sec"
-set ylabel "number of active jobs"
-set title "Active jobs"
-plot "plot_active.txt" using 1:2 with line
-
-set output "cumulativeplot-openmp.png"
-set xlabel "Time in seconds"
-set ylabel "number of completed jobs"
-set title "Cumulative SciColSim-openMP jobs"
-plot "plot_cumulative.txt" using 1:($2*24) with lines
-
-set output "cumulativeplot.png"
-set xlabel "Time in seconds"
-set ylabel "number of completed jobs"
-set title "Cumulative jobs"
-plot "plot_cumulative.txt" using 1:2 with lines
-
-set output "scs.png"
-set xlabel "Evolution"
-set ylabel "Value of T"
-set title "SciColSim evolution Results"
-plot "T.data" using 1 with lines 
-
-set output "scs_loss.png"
-set title "SciColSim evolution loss Results"
-set xlabel "Evolution"
-set ylabel "Value of loss(AR)"
-plot "anneal.data" using 1 with lines 
-
-set output "multiloss.png"
-set title "SciColSim evolution loss Results"
-set key auto
-set yrange [0:200]
-set xlabel "Evolution"
-set ylabel "loss"
-plot "multiloss.txt" using 3 with lines title "multiloss mean val",  "multiloss.txt" using ($3+$4) with lines title "+stddev", "multiloss.txt" using ($3-$4) with lines title "-stddev"

Copied: SwiftApps/SciColSim/docs/plotit.gp (from rev 5730, SwiftApps/SciColSim/docs/plotit)
===================================================================
--- SwiftApps/SciColSim/docs/plotit.gp	                        (rev 0)
+++ SwiftApps/SciColSim/docs/plotit.gp	2012-03-30 03:21:10 UTC (rev 5731)
@@ -0,0 +1,48 @@
+#To be run as a gnuplot script as follows:
+
+# $ gnuplot plotit
+
+set terminal png enhanced 
+#set term postscript eps enhanced 
+#set terminal svg enhanced size 1000 1000
+#set style line 1 linecolor rgb "blue"
+set output "activeplot.png"
+set nokey
+set xlabel "Time in sec"
+set ylabel "number of active jobs"
+set title "Active jobs"
+plot "plot_active.txt" using 1:2 with line
+
+#multiplies the active jobs by 24 to take into account the number of openmp
+#procs running on Beagle
+set output "cumulativeplot-openmp.png"
+set xlabel "Time in seconds"
+set ylabel "number of completed jobs"
+set title "Cumulative SciColSim-openMP jobs"
+plot "plot_cumulative.txt" using 1:($2*24) with lines
+
+set output "cumulativeplot.png"
+set xlabel "Time in seconds"
+set ylabel "number of completed jobs"
+set title "Cumulative jobs"
+plot "plot_cumulative.txt" using 1:2 with lines
+
+set output "scs.png"
+set xlabel "Evolution"
+set ylabel "Value of T"
+set title "SciColSim evolution Results"
+plot "T.data" using 1 with lines 
+
+set output "scs_loss.png"
+set title "SciColSim evolution loss Results"
+set xlabel "Evolution"
+set ylabel "Value of loss(AR)"
+plot "anneal.data" using 1 with lines 
+
+set output "multiloss.png"
+set title "SciColSim evolution loss Results"
+set key auto
+set yrange [0:200]
+set xlabel "Evolution"
+set ylabel "loss"
+plot "multiloss.txt" using 3 with lines title "multiloss mean val",  "multiloss.txt" using ($3+$4) with lines title "+stddev", "multiloss.txt" using ($3-$4) with lines title "-stddev"




More information about the Swift-commit mailing list