-
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.
Merge pull request #60 from ulrikeyang/main
Added AMG2023 Crossroads results
- Loading branch information
Showing
16 changed files
with
120 additions
and
207 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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
Oops, something went wrong.