Skip to content

Commit 358d356

Browse files
committed
sqlite: plotting
Signed-off-by: Hugo Lefeuvre <hugo.lefeuvre@manchester.ac.uk>
1 parent d9cdc57 commit 358d356

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ EXPS ?= fig-06_nginx-redis-perm \
2323
IMAGES ?= flexos-base \
2424
nginx \
2525
redis \
26-
plot \
26+
flexos-ae-plot \
2727
flexos-ae-base
2828
TARGETS ?= prepare \
2929
run \

experiments/fig-10_sqlite-exec-time/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ run:
3939

4040
.PHONY: plot
4141
plot:
42-
$(GNUPLOT) $(WORKDIR)/sqlite.plot
42+
$(DOCKER) run --rm -v $(WORKDIR):/out --privileged -ti flexos-ae-plot $(GNUPLOT) $(WORKDIR)/sqlite.plot
4343
mv $(WORKDIR)/sqlite.svg $(PLOT)
4444

4545
.PHONY: clean

experiments/fig-10_sqlite-exec-time/sqlite.plot

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
reset
44

55
set terminal svg enhanced size 650,250 font 'Arial,20'
6-
set output 'sqlite.svg'
6+
set output '/out/sqlite.svg'
77

88
set grid
99

@@ -68,7 +68,8 @@ set arrow from 7, graph 0 to 7, graph 1 nohead
6868
set arrow from 9, graph 0 to 9, graph 1 nohead
6969
set arrow from 11, graph 0 to 11, graph 1 nohead
7070

71-
plot "sqlite.dat" every 9::0 using 1:3:xtic(2) with boxes fs pattern 1 lc "#91c6e7" title "QEMU/KVM", \
71+
plot "results/sqlite.dat" \
72+
every 9::0 using 1:3:xtic(2) with boxes fs pattern 1 lc "#91c6e7" title "QEMU/KVM", \
7273
"" every 9::1 using 1:3:xtic(2) with boxes fs pattern 6 lc "#a2d9d1" notitle, \
7374
"" every 9::2 using 1:3:xtic(2) with boxes fs pattern 1 lc "#91c6e7" notitle, \
7475
"" every 9::3 using 1:3:xtic(2) with boxes fs pattern 1 lc "#91c6e7" notitle, \
File renamed without changes.

0 commit comments

Comments
 (0)