-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into bwibking/reflecting-bc
- Loading branch information
Showing
35 changed files
with
1,390 additions
and
308 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,40 @@ | ||
// devcontainer.json | ||
{ | ||
"name": "athenapk-dev", | ||
"image": "ghcr.io/parthenon-hpc-lab/cuda11.6-mpi-hdf5-ascent", | ||
// disable Dockerfile for now | ||
//"build": { | ||
// // Path is relative to the devcontainer.json file. | ||
// "dockerfile": "Dockerfile" | ||
//}, | ||
"hostRequirements": { | ||
"cpus": 4 | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"settings": {}, | ||
"extensions": [ | ||
"-ms-vscode.cpptools", | ||
"llvm-vs-code-extensions.vscode-clangd", | ||
"github.vscode-pull-request-github", | ||
"ms-python.python", | ||
"ms-toolsai.jupyter", | ||
"ms-vscode.live-server", | ||
"ms-azuretools.vscode-docker", | ||
"swyddfa.esbonio", | ||
"tomoki1207.pdf", | ||
"ms-vscode.cmake-tools", | ||
"ms-vsliveshare.vsliveshare" | ||
] | ||
} | ||
}, | ||
"remoteEnv": { | ||
"PATH": "${containerEnv:PATH}:/usr/local/hdf5/parallel/bin", | ||
"OMPI_MCA_opal_warn_on_missing_libcuda": "0" | ||
}, | ||
//"remoteUser": "ubuntu", | ||
// we need to manually checkout the submodules, | ||
// but VSCode may try to configure CMake before they are fully checked-out. | ||
// workaround TBD | ||
"postCreateCommand": "git submodule update --init" | ||
} |
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,26 @@ | ||
# Changelog | ||
|
||
## Current develop (i.e., `main` branch) | ||
|
||
### Added (new features/APIs/variables/...) | ||
- [[PR 1]](https://github.com/parthenon-hpc-lab/athenapk/pull/1) Add isotropic thermal conduction and RKL2 supertimestepping | ||
|
||
### Changed (changing behavior/API/variables/...) | ||
- [[PR 84]](https://github.com/parthenon-hpc-lab/athenapk/pull/84) Bump Parthenon to latest develop (2024-02-15) | ||
|
||
### Fixed (not changing behavior/API/variables/...) | ||
|
||
### Infrastructure | ||
- [[PR 112]](https://github.com/parthenon-hpc-lab/athenapk/pull/112) Add dev container configuration | ||
- [[PR 105]](https://github.com/parthenon-hpc-lab/athenapk/pull/105) Bump Parthenon to latest develop (2024-03-13) | ||
- [[PR 84]](https://github.com/parthenon-hpc-lab/athenapk/pull/84) Added `CHANGELOG.md` | ||
|
||
### Removed (removing behavior/API/varaibles/...) | ||
|
||
### Incompatibilities (i.e. breaking changes) | ||
- [[PR 84]](https://github.com/parthenon-hpc-lab/athenapk/pull/84) Bump Parthenon to latest develop (2024-02-15) | ||
- Updated access to block dimension: `pmb->block_size.nx1` -> `pmb->block_size.nx(X1DIR)` (and similarly x2 and x3) | ||
- Update access to mesh size: `pmesh->mesh_size.x1max` -> `pmesh->mesh_size.xmax(X1DIR)` (and similarly x2, x3, and min) | ||
- Updated Parthenon `GradMinMod` signature for custom prolongation ops | ||
- `GetBlockPointer` returns a raw pointer not a shared one (and updated interfaces to use raw pointers rather than shared ones) | ||
|
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
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
Submodule parthenon
updated
from 5b6bb6 to a66670
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
Oops, something went wrong.