source: CIVL/mods/dev.civl.com/scripts/scale/plotBench.plg@ 1aaefd4

main test-branch
Last change on this file since 1aaefd4 was aad342c, checked in by Stephen Siegel <siegel@…>, 3 years ago

Performing huge refactor to incorporate ABC, GMC, and SARL into CIVL repo and use Java modules.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5664 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 499 bytes
Line 
1# Upper case variables are input
2# command: gnuplot -e "TITLE='Barrier'" -e "DAT_FILE='out/barrier.dat'" ...
3set title TITLE." verification time"
4set xlabel 'max number of processes'
5set ylabel 'time used'
6set logscale y
7set xrange [0:15]
8set yrange [0.1:100]
9set pointsize 1.5
10set key top left
11set timestamp
12set terminal pdf
13set output OUT_FILE
14plot DAT_FILE using 1:2 with linespoints title "CIVL current version",\
15 LAST_DAT_FILE using 1:2 with linespoints title "CIVL ".LAST_VERSION
16
17
Note: See TracBrowser for help on using the repository browser.