Skip to content

Commit

Permalink
gnuplot file`
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrikeyang committed Sep 27, 2023
1 parent a69bdf3 commit b7187f9
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions doc/sphinx/02_amg/mem.gp
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit b7187f9

Please sign in to comment.