source: trunk/platforms/tsar_generic_xbar/scripts/templates/metric_template.gp @ 706

Last change on this file since 706 was 706, checked in by meunier, 10 years ago
  • Replaced vci_dspin_local_crossbar with a vci_local_crossbar in tsar_generic_xbar
  • Added the scripts/ directory in tsar_generic_xbar
File size: 690 bytes
Line 
1
2set terminal svg size 1000 400 fixed
3set output "%(svg_name)s.svg"
4
5set xtics nomirror out scale 0,0 rotate by 0 font "Times,10"
6
7set xtics %(xtics_str)s
8# Creates something like:
9#set xtics ("1" 1, "4" 2, "8" 3, "16" 4, "32" 5, "64" 6, "128" 7, "256" 8, "1" 9.5, "4" 10.5, "8" 11.5, "16" 12.5, "32" 13.5, "64" 14.5, "128" 15.5, "256" 16.5, "1" 18, ...)
10
11set ylabel "%(ylabel_str)s %(norm_factor_str)s" font "Times,12"
12set xlabel " "
13
14%(app_labels)s
15
16set xrange [0:%(xmax_val)d]
17
18#set mytics 0.1
19
20set grid noxtics
21set grid nomxtics
22set grid nomx2tics
23set grid ytics
24set grid mytics
25
26
27set key inside left top Left reverse
28
29set boxwidth 1
30set style fill solid border -1
31
32plot %(plot_str)s
33
34
Note: See TracBrowser for help on using the repository browser.