Skip to content

Commit

Permalink
Merge branch 'develop' into pgrete/pmd-output
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrete committed Nov 29, 2024
2 parents d064f03 + 2fc423a commit dfbcb27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
- [[PR 1172]](https://github.com/parthenon-hpc-lab/parthenon/pull/1172) Make parthenon manager robust against external MPI init and finalize calls

### Fixed (not changing behavior/API/variables/...)
- [[PR 1211]](https://github.com/parthenon-hpc-lab/parthenon/pull/1211) remove inline from WriteTaskGraph
- [[PR 1188]](https://github.com/parthenon-hpc-lab/parthenon/pull/1188) Fix hdf5 output issue for metadata none variables, update test.
- [[PR 1170]](https://github.com/parthenon-hpc-lab/parthenon/pull/1170) Fixed incorrect initialization of array by a const not constexpr
- [[PR 1189]](https://github.com/parthenon-hpc-lab/parthenon/pull/1189) Address CUDA MPI/ICP issue with Kokkos <=4.4.1
Expand Down
4 changes: 2 additions & 2 deletions src/tasks/tasks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ bool Task::ready() {
return go;
}

inline std::ostream &WriteTaskGraph(std::ostream &stream,
const std::vector<std::shared_ptr<Task>> &tasks) {
std::ostream &WriteTaskGraph(std::ostream &stream,
const std::vector<std::shared_ptr<Task>> &tasks) {
#ifndef HAS_CXX_ABI
std::cout << "Warning: task graph output will not include function"
"signatures since libcxxabi is unavailable.\n";
Expand Down

0 comments on commit dfbcb27

Please sign in to comment.