X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/052fa871a1c16da85562fba8b256287b404d7bab..227dac53cfca24e57a9c96b78c0b7581b3df961d:/ugw/data/plot-thr-detail.gp diff --git a/ugw/data/plot-thr-detail.gp b/ugw/data/plot-thr-detail.gp new file mode 100644 index 0000000..dbc1257 --- /dev/null +++ b/ugw/data/plot-thr-detail.gp @@ -0,0 +1,20 @@ +#!/usr/bin/env gnuplot +set title "Detail of the above" +set xlabel "Frame period [µs]" +set ylabel "Latency [µs] + packet loss" +set style data yerrorlines +# set yrange [0:10000] +set yrange [0:500] +#set logscale y +# set key left Left reverse +set grid +loss_scale=10 +plot \ + 'kernel.dat' using 1:2:($3*loss_scale) title 'kernel', \ + 'mmapbusy-mmap.dat' using 1:2:($3*loss_scale) title 'mmapbusy-mmap', \ + 'mmapbusy-write.dat' using 1:2:($3*loss_scale) title 'mmapbusy-write', \ + 'mmap-mmap.dat' using 1:2:($3*loss_scale) title 'mmap-mmap', \ + 'mmap-write.dat' using 1:2:($3*loss_scale) title 'mmap-write' +# 'readbusy-write.dat' using 1:2:($3*loss_scale) title 'readbusy-write', \ +# 'readnb-write.dat' using 1:2:($3*loss_scale) title 'readnb-write', \ +# 'read-write.dat' using 1:2:($3*loss_scale) title 'read-write'