-
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
Showing
6 changed files
with
94 additions
and
17 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,7 @@ | ||
Cores,Actual,Ideal | ||
1,3.3341e+07,3.33E+07 | ||
8,1.73263e+08,2.67E+08 | ||
32,3.68068e+08,1.07E+09 | ||
56,5.05724e+08,1.87E+09 | ||
88,4.0239e+08,2.93E+09 | ||
112,6.2133e+08,3.73E+09 |
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,26 @@ | ||
#!/usr/bin/gnuplot | ||
set terminal pngcairo enhanced size 1024, 768 dashed font 'Helvetica,18' | ||
set output "spp1_strong_scaling_roci.png" | ||
|
||
# no title needed since we will caption the figure | ||
#set title "Strong scaling of SPP 1 on Crossroads" font "serif,22" | ||
set xlabel "Num Cores" | ||
set ylabel "Figure of Merit (unknowns/sec)" | ||
|
||
set xrange [1:112] | ||
set key left top | ||
|
||
set logscale x 2 | ||
set logscale y 2 | ||
|
||
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 1 dashtype 2 linecolor rgb "#FF0000" linewidth 2 | ||
|
||
plot "spp1_strong_scaling_roci.csv" using 1:2 with linespoints linestyle 1, "" using 1:3 with line linestyle 2 | ||
|
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,7 @@ | ||
Cores,Actual,Ideal | ||
1,1.58871e+07,1.59E+07 | ||
8,7.69292e+07,1.27E+08 | ||
32,1.80348e+08,5.08E+08 | ||
56,2.38803e+08,8.90E+08 | ||
88,3.27651e+08,1.40E+09 | ||
112,3.91002e+08,1.78E+09 |
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,26 @@ | ||
#!/usr/bin/gnuplot | ||
set terminal pngcairo enhanced size 1024, 768 dashed font 'Helvetica,18' | ||
set output "spp2_strong_scaling_roci.png" | ||
|
||
# no title needed since we will caption the figure | ||
#set title "Strong scaling of SPP 2 on Crossroads" font "serif,22" | ||
set xlabel "Num Cores" | ||
set ylabel "Figure of Merit (unknowns/sec)" | ||
|
||
set xrange [1:112] | ||
set key left top | ||
|
||
set logscale x 2 | ||
set logscale y 2 | ||
|
||
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 1 dashtype 2 linecolor rgb "#FF0000" linewidth 2 | ||
|
||
plot "spp2_strong_scaling_roci.csv" using 1:2 with linespoints linestyle 1, "" using 1:3 with line linestyle 2 | ||
|
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
unknowns,throughput,,,,,,,,, | ||
2654208,21676983.21,,,,,,,,, | ||
6291456,45701699.5,,,,,,,,, | ||
12288000,79225954.28,,,,,,,,, | ||
21233664,114537827.7,,,,,,,,, | ||
50331648,160341978,,,,,,,,, | ||
130842624,200104616.1,,,,,,,,, | ||
215973888,214659364.2,,,,,,,,, | ||
331776000,219351111.1,,,,,,,,, | ||
Unknowns,Throughput | ||
2654208,21676983.21 | ||
6291456,45701699.5 | ||
12288000,79225954.28 | ||
21233664,114537827.7 | ||
50331648,160341978 | ||
130842624,200104616.1 | ||
215973888,214659364.2 | ||
331776000,219351111.1 |
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