Commit 8b9bb34
Spencer Bryngelson
fix: resolve Frontier CCE 3D cylindrical test failures
Two root causes for 5 failing 3D Cylindrical tests on Frontier CCE:
1. Post-process segfault (non-viscous tests 301B9153, 128954AD):
s_axis() declared pb_in/mv_in as non-optional, but they are passed
as absent optionals from s_populate_variables_buffers in post_process.
CCE dereferences the null descriptor; gfortran tolerates it. Added
'optional' attribute and present() guards, matching peer routines
like s_symmetry and s_periodic.
2. Simulation FPE (viscous tests 07C33719, 939D6718, 09623DE3):
The direct MPI execution path in the test runner bypasses the batch
template which sets 'ulimit -s unlimited'. CCE-compiled viscous
cylindrical binaries overflow the default stack. Set the soft stack
limit to the hard limit at module load via resource.setrlimit.1 parent 31e47ee commit 8b9bb34
3 files changed
Lines changed: 11 additions & 135 deletions
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
763 | 763 | | |
764 | 764 | | |
765 | 765 | | |
766 | | - | |
| 766 | + | |
767 | 767 | | |
768 | 768 | | |
769 | 769 | | |
| |||
804 | 804 | | |
805 | 805 | | |
806 | 806 | | |
807 | | - | |
| 807 | + | |
808 | 808 | | |
809 | 809 | | |
810 | 810 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
| |||
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
18 | 27 | | |
19 | 28 | | |
20 | 29 | | |
| |||
0 commit comments