diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-06-25 16:40:55 -0400 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-06-25 16:41:11 -0400 |
| commit | 4b3173bbe0ecb9cc5624c2762183f1b90fb134c7 (patch) | |
| tree | 3fb1e481b231ff7bc00393283cd0884507dfa2a6 /plot-data/thread-count-sweep/max-query | |
| parent | 03128086d95d923b6d022c46fe2413751898e497 (diff) | |
| download | dissertation-4b3173bbe0ecb9cc5624c2762183f1b90fb134c7.tar.gz | |
Plot updates
Diffstat (limited to 'plot-data/thread-count-sweep/max-query')
| -rw-r--r-- | plot-data/thread-count-sweep/max-query/100k.txt | 6 | ||||
| -rw-r--r-- | plot-data/thread-count-sweep/max-query/150k.txt | 6 | ||||
| -rw-r--r-- | plot-data/thread-count-sweep/max-query/60k.txt | 5 | ||||
| -rw-r--r-- | plot-data/thread-count-sweep/max-query/ins-v-thrd.pdf | bin | 0 -> 13095 bytes | |||
| -rw-r--r-- | plot-data/thread-count-sweep/max-query/plot.plt | 36 |
5 files changed, 53 insertions, 0 deletions
diff --git a/plot-data/thread-count-sweep/max-query/100k.txt b/plot-data/thread-count-sweep/max-query/100k.txt new file mode 100644 index 0000000..5b340d8 --- /dev/null +++ b/plot-data/thread-count-sweep/max-query/100k.txt @@ -0,0 +1,6 @@ +1 2350785 +2 3780981 +4 3889418 +8 3844475 +32 4066599 + diff --git a/plot-data/thread-count-sweep/max-query/150k.txt b/plot-data/thread-count-sweep/max-query/150k.txt new file mode 100644 index 0000000..bae8307 --- /dev/null +++ b/plot-data/thread-count-sweep/max-query/150k.txt @@ -0,0 +1,6 @@ +1 2350785 +2 4800116 +4 4510340 +8 4519917 +32 4723617 + diff --git a/plot-data/thread-count-sweep/max-query/60k.txt b/plot-data/thread-count-sweep/max-query/60k.txt new file mode 100644 index 0000000..fb9bffa --- /dev/null +++ b/plot-data/thread-count-sweep/max-query/60k.txt @@ -0,0 +1,5 @@ +1 317834 +2 1407217 +4 1879125 +8 1414735 +32 1412394 diff --git a/plot-data/thread-count-sweep/max-query/ins-v-thrd.pdf b/plot-data/thread-count-sweep/max-query/ins-v-thrd.pdf Binary files differnew file mode 100644 index 0000000..f76236a --- /dev/null +++ b/plot-data/thread-count-sweep/max-query/ins-v-thrd.pdf diff --git a/plot-data/thread-count-sweep/max-query/plot.plt b/plot-data/thread-count-sweep/max-query/plot.plt new file mode 100644 index 0000000..e8a9c8d --- /dev/null +++ b/plot-data/thread-count-sweep/max-query/plot.plt @@ -0,0 +1,36 @@ +set terminal pdfcairo + +set format y "%1.1t{/Symbol \264}10^{%L}" +#set format x "%1.0t{/Symbol \264}10^{%L}" + +set rmargin 4 + +set style line 1 lt 1 lw 3 dashtype 1 ps 1 +set style line 2 lt 2 lw 3 dashtype 2 ps 1 +set style line 3 lt 3 lw 3 dashtype 3 ps 1 +set style line 4 lt 4 lw 3 dashtype 4 ps 1 +set key left top horizontal samplen 2 maxcol 2 width .1 + +set xtics out nomirror +set ytics out nomirror + +set xlabel "Background Thread Count (nd)" +set ylabel "Insertion Throughput (ins/s)" + +#set title "Insertion Throughput vs. Query Latency (ISAM Point Lookup)" + +set output "ins-v-thrd.pdf" + +#set xtics 1e6 +#set ytics 1e5 + +#set xtics 1e6 + +set logscale x 2 + +#set yrange [6.0e4:7.5e4] +set yrange[0:6e6] + +plot "60k.txt" using 1:2 with lp ls 1 title "60 μs", \ + "100k.txt" using 1:2 with lp ls 2 title "100 μs", \ + "150k.txt" using 1:2 with lp ls 3 title "150 μs", \ |