view vs_openmp/graph.sh @ 22:4083f77dec87 default tip

Fix
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Wed, 07 Feb 2018 19:06:42 +0900
parents 84f8371ec486
children
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set title "twice"
set terminal svg enhanced 
plot "gears_poweredge" with l lc rgbcolor "blue"
set output "output.svg"
set xlabel "CPUs"
set logscale x 2
set xrange[1:32]
set ylabel "time(ms)"
replot "openmp_poweredge" with l lc rgbcolor "red"
EOF