Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .integrated_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
baselines:
bucket: geosx
baseline: integratedTests/baseline_integratedTests-pr3940-15307-53de7ba
baseline: integratedTests/baseline_integratedTests-pr3963-15420-6d2cfd2

allow_fail:
all: ''
Expand Down
4 changes: 4 additions & 0 deletions BASELINE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ This file is designed to track changes to the integrated test baselines.
Any developer who updates the baseline ID in the .integrated_tests.yaml file is expected to create an entry in this file with the pull request number, date, and their justification for rebaselining.
These notes should be in reverse-chronological order, and use the following time format: (YYYY-MM-DD).

PR #3963 (2026-02-04) <https://storage.googleapis.com/geosx/integratedTests/baseline_integratedTests-pr3963-15420-6d2cfd2.tar.gz>
=====================
Resolves a segmentation fault on macOS (ARM64)

PR #3940 (2026-01-27) <https://storage.googleapis.com/geosx/integratedTests/baseline_integratedTests-pr3940-15307-53de7ba.tar.gz>
=====================
Fix the transimissibility calculated between a cell and a surface element
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ void setOptions( SuiteSparseData & data, LinearSolverParameters const & params )
// Get the default control parameters
umfpack_dl_defaults( data.control );
data.control[UMFPACK_PRL] = params.logLevel;
data.control[UMFPACK_ORDERING] = UMFPACK_ORDERING_BEST;
// Use AMD to avoid METIS-related stack inconsistencies on macOS
data.control[UMFPACK_ORDERING] = UMFPACK_ORDERING_AMD;
}

} // namespace
Expand Down
Loading