|
1 | 1 | set term png
|
2 |
| -set output "noisy.png" |
3 | 2 | set xlabel "GiB written"
|
4 | 3 | set ylabel "MiB/s"
|
5 |
| -plot \ |
6 |
| - "4MiB.log" u ($3/1073741824):($4/1048576) w l t "4 MiB chunks",\ |
7 |
| - "8MiB.log" u ($3/1073741824):($4/1048576) w l t "8 MiB chunks",\ |
8 |
| - "16MiB.log" u ($3/1073741824):($4/1048576) w l t "16 MiB chunks",\ |
9 |
| - "32MiB.log" u ($3/1073741824):($4/1048576) w l t "32 MiB chunks",\ |
10 |
| - "64MiB.log" u ($3/1073741824):($4/1048576) w l t "64 MiB chunks",\ |
11 |
| - "128MiB.log" u ($3/1073741824):($4/1048576) w l t "128 MiB chunks",\ |
12 |
| - "256MiB.log" u ($3/1073741824):($4/1048576) w l t "256 MiB chunks",\ |
13 |
| - "512MiB.log" u ($3/1073741824):($4/1048576) w l t "512 MiB chunks",\ |
14 |
| - "1GiB.log" u ($3/1073741824):($4/1048576) w l t "1 GiB chunks" |
| 4 | + |
| 5 | +set output "1MiB.png" |
| 6 | +plot "1MiB.log" u ($3/1073741824):($4/1048576) w l t "1 MiB chunks" |
| 7 | + |
| 8 | +set output "2MiB.png" |
| 9 | +plot "2MiB.log" u ($3/1073741824):($4/1048576) w l t "2 MiB chunks" |
| 10 | + |
| 11 | +set output "4MiB.png" |
| 12 | +plot "4MiB.log" u ($3/1073741824):($4/1048576) w l t "4 MiB chunks" |
| 13 | + |
| 14 | +set output "8MiB.png" |
| 15 | +plot "8MiB.log" u ($3/1073741824):($4/1048576) w l t "8 MiB chunks" |
| 16 | + |
| 17 | +set output "16MiB.png" |
| 18 | +plot "16MiB.log" u ($3/1073741824):($4/1048576) w l t "16 MiB chunks" |
| 19 | + |
| 20 | +set output "32MiB.png" |
| 21 | +plot "32MiB.log" u ($3/1073741824):($4/1048576) w l t "32 MiB chunks" |
| 22 | + |
| 23 | +set output "64MiB.png" |
| 24 | +plot "64MiB.log" u ($3/1073741824):($4/1048576) w l t "64 MiB chunks" |
| 25 | + |
| 26 | +set output "128MiB.png" |
| 27 | +plot "128MiB.log" u ($3/1073741824):($4/1048576) w l t "128 MiB chunks" |
| 28 | + |
| 29 | +set output "256MiB.png" |
| 30 | +plot "256MiB.log" u ($3/1073741824):($4/1048576) w l t "256 MiB chunks" |
| 31 | + |
| 32 | +set output "512MiB.png" |
| 33 | +plot "512MiB.log" u ($3/1073741824):($4/1048576) w l t "512 MiB chunks" |
| 34 | + |
| 35 | +set output "1GiB.png" |
| 36 | +plot "1GiB.log" u ($3/1073741824):($4/1048576) w l t "1 GiB chunks" |
| 37 | + |
0 commit comments