Changeset 810c2c5 for doc/theses/mike_brooks_MMath/plots
- Timestamp:
- Apr 25, 2026, 3:51:31 AM (10 days ago)
- Branches:
- master
- Children:
- 408f954
- Parents:
- 79f1285
- Location:
- doc/theses/mike_brooks_MMath/plots
- Files:
-
- 1 added
- 2 edited
-
string-allocn-attrib-sepcmp.py (added)
-
string-allocn.d (modified) (2 diffs)
-
string-allocn.gp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mike_brooks_MMath/plots/string-allocn.d
r79f1285 r810c2c5 1 1 plots/string-allocn.gp.INPUTS: build/plot-string-allocn.dat 2 2 plots/string-allocn.gp.INPUTS: build/plot-string-allocn-attrib.dat 3 plots/string-allocn.gp.INPUTS: build/plot-string-allocn-attrib-sepcmp.dat 3 4 plots/string-allocn.py.INPUTS: benchmarks/string/result-allocate-space-cfa.ssv 4 5 plots/string-allocn.py.INPUTS: benchmarks/string/result-allocate-space-stl.ssv … … 7 8 plots/string-allocn-attrib.py.INPUTS: benchmarks/string/result-allocate-attrib-stl.ssv 8 9 plots/string-allocn-attrib.py.INPUTS: benchmarks/string/result-allocate-attrib-cfa.ssv 10 plots/string-allocn-attrib-sepcmp.py.INPUTS: benchmarks/string/string-separate-compilation-overhead.csv 11 plots/string-allocn-attrib-sepcmp.py.INPUTS: build/plot-string-allocn-attrib.dat -
doc/theses/mike_brooks_MMath/plots/string-allocn.gp
r79f1285 r810c2c5 112 112 } 113 113 114 # bonus legend of black box = sepcomp overhead 115 set object rect from graph 0.05, graph 0.92 to graph 0.11, graph 0.935 fc rgb "black" 116 set label "sep. comp.\noverhead" at graph 0.14, graph 0.935 left font "Times,15" 114 117 118 pattern(i) = \ 119 (i==1 ? 1 : \ 120 i==2 ? 4 : \ 121 i==3 ? 2 : \ 122 i==4 ? 6 : \ 123 i==5 ? 3 : \ 124 i==6 ? 5 : \ 125 1) 115 126 116 127 plot \ … … 120 131 (stringcolumn("category") eq STATS_word[i] ? ($5 + $8) : 1/0): \ 121 132 (stringcolumn("category") eq STATS_word[i] ? (BAR_RELWD*(BAR_XSHIFT*$1**LEN_X_SEP*$3/SCALE)) : 1/0) \ 122 with boxes ls i title STATS_word[i], \ 133 with boxes ls i fs pattern pattern(i) title STATS_word[i], \ 134 INDIR.'/plot-string-allocn-attrib-sepcmp.dat' \ 135 using (BAR_XSHIFT*$1**LEN_X_SEP*$3/SCALE*0.75): \ 136 (($8+$10)/2): \ 137 (BAR_RELWD*(BAR_XSHIFT*$1**LEN_X_SEP*$3/SCALE)/4): \ 138 ($9/2) \ 139 notitle \ 140 with boxxyerrorbars lt rgb "black", \ 123 141 INDIR."/plot-string-allocn.dat" \ 124 142 i 1 using (50 **LEN_X_SEP*$5/SCALE):2 notitle with lines lt rgb "red" dt '.' lw 2, \
Note:
See TracChangeset
for help on using the changeset viewer.