From b7187f94259c39e9ee89c4b661799d3af3a1e091 Mon Sep 17 00:00:00 2001 From: ulrikeyang Date: Wed, 27 Sep 2023 16:40:31 -0700 Subject: [PATCH] gnuplot file` --- doc/sphinx/02_amg/mem.gp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 doc/sphinx/02_amg/mem.gp diff --git a/doc/sphinx/02_amg/mem.gp b/doc/sphinx/02_amg/mem.gp new file mode 100644 index 00000000..41d016a4 --- /dev/null +++ b/doc/sphinx/02_amg/mem.gp @@ -0,0 +1,22 @@ +#!/usr/bin/gnuplot +set terminal pngcairo enhanced size 1024, 768 dashed font 'Helvetica,18' +set output "roci_mem.png" + +set title "AMG2023 FOM at varying memory usage, Problem 1 and 2" font "serif,22" +set xlabel "GB" +set ylabel "FOM" + +set xrange [10:40] +set key left top + +set yrange [1.05e+8: 1.75e+8] +set grid +show grid + +set datafile separator comma +set key autotitle columnheader + +set style line 1 linetype 6 dashtype 1 linecolor rgb "#FF0000" linewidth 2 pointtype 6 pointsize 3 +set style line 2 linetype 6 dashtype 1 linecolor rgb "#0000FF" linewidth 2 pointtype 6 pointsize 3 + +plot "roci_mem.csv" using 1:2 with linespoints linestyle 1, "roci_mem.csv" using 1:3 with linespoints linestyle 2