| 1 |
wakaba |
1.1 |
set terminal png color |
| 2 |
|
|
set output "time-cc.png" |
| 3 |
|
|
|
| 4 |
|
|
set xlabel "data length [octets]" |
| 5 |
|
|
set ylabel "time [s]" |
| 6 |
|
|
|
| 7 |
|
|
plot \ |
| 8 |
|
|
".cc-decode.txt" title "bytes->chars", \ |
| 9 |
|
|
".cc-parse.txt" title "html5(chars)->dom5", \ |
| 10 |
|
|
".cc-parse_html.txt" title "html5(bytes)->dom5", \ |
| 11 |
|
|
".cc-parse_xml.txt" title "xml1(bytes)->dom5", \ |
| 12 |
|
|
".cc-parse_manifest.txt" title "manifest(bytes)->obj", \ |
| 13 |
|
|
".cc-check.txt" title "dom5 check", \ |
| 14 |
|
|
x/1000 title 'y = x / 1000', \ |
| 15 |
|
|
(x**0.5)/1000 title 'y = sqrt (x) / 1000' |
| 16 |
|
|
|
| 17 |
|
|
set output "time-cc-log.png" |
| 18 |
|
|
set logscale x |
| 19 |
|
|
set logscale y |
| 20 |
|
|
replot |
| 21 |
|
|
|
| 22 |
|
|
## License: Public Domain. |
| 23 |
|
|
## $Date: 2007/07/15 06:14:30 $ |