-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a69bdf3
commit b7187f9
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |