-
-
Notifications
You must be signed in to change notification settings - Fork 18
Release v0.10.0 #280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Release v0.10.0 #280
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
03db8e9
Merge pull request #247 from precice/dummy-compatibility
IshaanDesai c479734
Fix model adaptivity infinite loop at resolution boundary (#252)
Geethapranay1 93735d2
Fix parameter inspection for dynamic MicroSimulation class (#255)
Snapex2409 1012353
Fix the adaptivity data check (#261)
fsimonis 0d9a4ac
Model adaptivity configuration docs: Clarify micro_file_names (#269)
MakisH 4cc4901
Configuration documentation: Add a first example and name sections (#…
MakisH d8fede2
Fix Model Adaptivity active simulation mask generation for edge case …
Snapex2409 68949ae
add model resolution as export (#271)
Snapex2409 d4ff388
add lb inactive tracking (#272)
Snapex2409 bedd534
add mm model adaptivity fix and renaming (#273)
Snapex2409 08fadce
Fix load balancing doc
fsimonis c140cad
Fix OpenMPI cache miss in CI workflows (#263)
Geethapranay1 9429857
Fix load balancing case when there is a mismatch in send and receive …
IshaanDesai 3cc5296
Cleanup the import logic and improve errors (#262)
fsimonis da1d09a
Provide global macro mesh coordinates for model adaptivity (#278)
IshaanDesai 5312618
Fix tests
IshaanDesai cac136d
Bump version
IshaanDesai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,57 @@ | ||
| name: Build OpenMPI cache | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| - develop | ||
| pull_request: | ||
| branches: | ||
| - "*" | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build_cache: | ||
| name: Build and cache OpenMPI 5 | ||
| runs-on: ubuntu-latest | ||
| container: precice/precice:nightly | ||
| steps: | ||
| - name: Install build dependencies | ||
| run: | | ||
| apt-get -qq update | ||
| apt-get -qq install wget build-essential | ||
|
|
||
| - name: Load Cache OpenMPI 5 | ||
| id: ompi-cache-load | ||
| uses: actions/cache/restore@v5 | ||
| with: | ||
| path: ~/openmpi | ||
| key: openmpi-5.0.5-${{ runner.os }}-build | ||
|
|
||
| - name: Build OpenMPI 5 | ||
| if: steps.ompi-cache-load.outputs.cache-hit != 'true' | ||
| run: | | ||
| wget https://download.open-mpi.org/release/open-mpi/v5.0/openmpi-5.0.5.tar.gz | ||
| tar -xzf openmpi-5.0.5.tar.gz | ||
| cd openmpi-5.0.5 | ||
| mkdir -p ~/openmpi | ||
| ./configure --prefix=$HOME/openmpi | ||
| make -j$(nproc) | ||
| make install | ||
|
|
||
| - name: Save OpenMPI 5 to cache | ||
| if: steps.ompi-cache-load.outputs.cache-hit != 'true' | ||
| uses: actions/cache/save@v5 | ||
| with: | ||
| path: ~/openmpi | ||
| key: openmpi-5.0.5-${{ runner.os }}-build | ||
|
|
||
| - name: Verify OpenMPI installation | ||
| run: | | ||
| if [ ! -d ~/openmpi ]; then | ||
| echo "::error::OpenMPI cache directory not found" | ||
| exit 1 | ||
| fi | ||
| cp -r ~/openmpi/* /usr/local/ | ||
| ldconfig | ||
| mpiexec --version |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.