-
Notifications
You must be signed in to change notification settings - Fork 2
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
Johannes Markert
committed
Nov 11, 2024
1 parent
8b5757a
commit 22f86c2
Showing
6 changed files
with
77 additions
and
12 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 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,25 @@ | ||
set terminal pngcairo enhanced | ||
|
||
set output "plot-timings-per-num-ghosts.png" | ||
|
||
set encoding utf8 | ||
|
||
set grid | ||
|
||
p4hex = "timings-p4.dat" | ||
t8tet = "timings-t8-tet.dat" | ||
|
||
set xlabel "number of MPI ranks" | ||
set ylabel "ghost layer runtime over #ghosts [μs/#ghosts]" | ||
|
||
set logscale x 2 | ||
|
||
set yrange[0:7] | ||
|
||
set key bottom | ||
|
||
set title "Runtimes of ghost layer creation per ghost element over num. of proc." | ||
|
||
plot \ | ||
p4hex using 1:($2/$3 * 1e6) with lp lw 2 ps 2 title "p4est with hexhedral mesh (218 billion elements)", \ | ||
t8tet using 1:($2/$3 * 1e6) with lp lw 2 ps 2 title "t8code with tetrahedral mesh (93 billion elements)" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
80 2.7853 620022 | ||
160 1.47469 295267 | ||
320 0.795606 206677 | ||
640 0.431872 98434 | ||
1280 0.246186 68897 |
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,5 @@ | ||
80 2.9717 620022 | ||
160 1.79744 295267 | ||
320 1.17688 206677 | ||
640 0.591025 98434 | ||
1280 0.332564 68897 |