Skip to content

Commit 4ec6412

Browse files
committed
pthread_cpu_heavy_work.gnuplot increase font size
1 parent 1c22e1e commit 4ec6412

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

posix/interactive/pthread_cpu_heavy_work.gnuplot

100644100755
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/env gnuplot
2-
set terminal png size 1024, 1024
2+
set terminal png size 600, 1000
33
set style data linespoints
44
set output 'pthread_cpu_heavy_work.png'
5-
set multiplot layout 3,1
5+
set multiplot layout 3,1 title "wall, user and sys for CPU-bound work with 8 hyperthreads" font ",16"
66
set xlabel "threads"
77

8+
set title font ",14"
89
set title "wall, user and sys"
910
set ylabel "time (s)"
1011
set yrange [-20:]
@@ -13,7 +14,7 @@ plot 'pthread_cpu_heavy_work.dat' using 1:2 title 'wall', \
1314
'pthread_cpu_heavy_work.dat' using 1:3 title 'user', \
1415
'pthread_cpu_heavy_work.dat' using 1:4 title 'sys'
1516

16-
set title "wall, user and sys / threads"
17+
set title "wall, user and sys / threads ratio"
1718
set yrange [0:]
1819
set key right top
1920
plot 'pthread_cpu_heavy_work.dat' using 1:($2/$1) title 'wall', \

0 commit comments

Comments
 (0)