36 lines
579 B
Bash
36 lines
579 B
Bash
BDIR=remote
|
|
plot () {
|
|
[ ! -f ../benchmark/$BDIR/${1}${2}_all.png ] && Rscript plot_multi.r $BDIR/timedump ${1}${2} ../benchmark/$BDIR
|
|
}
|
|
|
|
# Only bytes
|
|
|
|
export SUFFIX="_seq_bytes"
|
|
|
|
plot waters $SUFFIX
|
|
#plot release $SUFFIX
|
|
plot copter $SUFFIX
|
|
#plot interact $SUFFIX
|
|
|
|
# Only interrupts
|
|
|
|
export SUFFIX="_seq_int"
|
|
|
|
plot waters $SUFFIX
|
|
plot release $SUFFIX
|
|
plot copter $SUFFIX
|
|
#plot interact $SUFFIX
|
|
|
|
# Full
|
|
|
|
export SUFFIX="_seq_full"
|
|
|
|
plot waters $SUFFIX
|
|
#plot release $SUFFIX
|
|
plot copter $SUFFIX
|
|
#plot interact $SUFFIX
|
|
|
|
plot copter "_seq_stateless_full"
|
|
|
|
plot copter "_par_full"
|