67 lines
1.4 KiB
Plaintext
67 lines
1.4 KiB
Plaintext
.G1
|
|
copy "legend.grap"
|
|
frame invis ht 3 wid 4 left solid bot solid
|
|
coord x 0,5000*2 y 0,350
|
|
ticks left out from 0 to 350 by 50
|
|
|
|
label left "Request duration" unaligned "for a partition (ms)" "(Median)" left 0.8
|
|
label bot "Number of cars matching the partition" down 0.1
|
|
|
|
obram = obuncache = obcache = obsemi = 0
|
|
cbram = cbuncache = cbcache = cbsemi = 0
|
|
|
|
legendxleft = 1000
|
|
legendxright = 6500
|
|
legendyup = 330
|
|
legendydown = 230
|
|
|
|
boite(legendxleft,legendxright,legendyup,legendydown)
|
|
legend(legendxleft,legendxright,legendyup,legendydown)
|
|
|
|
copy "../data/partitions.d" thru X
|
|
cx = $1*2
|
|
|
|
y_scale = 1000000
|
|
|
|
# ram cached semi uncached
|
|
line from cx,$2/y_scale to cx,$4/y_scale
|
|
line from cx,$5/y_scale to cx,$7/y_scale
|
|
line from cx,$8/y_scale to cx,$10/y_scale
|
|
line from cx,$11/y_scale to cx,$13/y_scale
|
|
|
|
#ty = $3
|
|
|
|
cbram = $3/y_scale
|
|
cbcache = $6/y_scale
|
|
cbsemi = $9/y_scale
|
|
cbuncache = $12/y_scale
|
|
|
|
if (obram > 0) then {line from cx,cbram to ox,obram}
|
|
if (obcache > 0) then {line from cx,cbcache to ox,obcache}
|
|
.gcolor blue
|
|
if (obsemi > 0) then {line from cx,cbsemi to ox,obsemi}
|
|
.gcolor
|
|
.gcolor green
|
|
if (obuncache > 0) then {line from cx,cbuncache to ox,obuncache}
|
|
.gcolor
|
|
|
|
obram = cbram
|
|
obcache = cbcache
|
|
obsemi = cbsemi
|
|
obuncache = cbuncache
|
|
ox = cx
|
|
|
|
# ram cached semi uncached
|
|
.gcolor red
|
|
bullet at cx,cbram
|
|
.gcolor
|
|
bullet at cx,cbcache
|
|
.gcolor blue
|
|
bullet at cx,cbsemi
|
|
.gcolor
|
|
.gcolor green
|
|
bullet at cx,cbuncache
|
|
.gcolor
|
|
X
|
|
.G2
|