[Swift-commit] r5578 - SwiftApps/SciColSim
ketan at ci.uchicago.edu
ketan at ci.uchicago.edu
Thu Feb 9 19:37:02 CST 2012
Author: ketan
Date: 2012-02-09 19:37:02 -0600 (Thu, 09 Feb 2012)
New Revision: 5578
Added:
SwiftApps/SciColSim/extract_scs_results
SwiftApps/SciColSim/plot_scs.plt
Log:
plotting scripts
Added: SwiftApps/SciColSim/extract_scs_results
===================================================================
--- SwiftApps/SciColSim/extract_scs_results (rev 0)
+++ SwiftApps/SciColSim/extract_scs_results 2012-02-10 01:37:02 UTC (rev 5578)
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+OUTFILE=$1
+
+grep "T =" $OUTFILE | awk '{print $6}' | cut -c8- | sed 's/....$//' > T.data
+
+grep multi_annealing $OUTFILE | grep "1;30" | awk '{print $3}' | cut -c11- | sed 's/....$//' > anneal.data
Property changes on: SwiftApps/SciColSim/extract_scs_results
___________________________________________________________________
Added: svn:executable
+ *
Added: SwiftApps/SciColSim/plot_scs.plt
===================================================================
--- SwiftApps/SciColSim/plot_scs.plt (rev 0)
+++ SwiftApps/SciColSim/plot_scs.plt 2012-02-10 01:37:02 UTC (rev 5578)
@@ -0,0 +1,15 @@
+#set terminal png enhanced large
+set terminal svg enhanced size 1000 1000
+set style line 1 lc rgb "blue"
+set output "scs.svg"
+set nokey
+set xlabel "Evolution"
+set ylabel "Value of T"
+set title "SciColSim evolution Results"
+plot "T.data" using 1 with line lc rgb "green"
+
+set output "scs_loss.svg"
+set title "SciColSim evolution loss Results"
+set ylabel "Value of loss(AR)"
+set xrange [1500:2000]
+plot "anneal.data" using 1 with line lc rgb "green"
More information about the Swift-commit
mailing list