Skip to content
Merged
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ endif()

# dependencies
find_package(MPI REQUIRED)
find_package(mpicpp-lite 2.6 REQUIRED)
find_package(mpicpp-lite 2.7.1 REQUIRED)

find_package(HDF5 REQUIRED COMPONENTS C HL)
find_package(Boost CONFIG)
Expand Down
2 changes: 1 addition & 1 deletion cmake/OpenSnConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set(OPENSN_VERSION @PROJECT_VERSION@)
include("${CMAKE_CURRENT_LIST_DIR}/OpenSnTargets.cmake")
include(FindPackageHandleStandardArgs)

find_dependency(mpicpp-lite 2.6 REQUIRED)
find_dependency(mpicpp-lite 2.7.1 REQUIRED)

find_library(OPENSN_LIBRARY NAMES opensn HINTS ${PACKAGE_PREFIX_DIR}/lib NO_DEFAULT_PATH)
find_path(OPENSN_INCLUDE_DIR framework/runtime.h HINTS ${PACKAGE_PREFIX_DIR}/include/opensn)
Expand Down
4 changes: 2 additions & 2 deletions distribution/spack/packages/mpicpp-lite/package.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion distribution/spack/packages/opensn/package.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ CBC_AsynchronousCommunicator::ReceiveData(std::vector<std::uint32_t>& cells_who_

const auto tag = static_cast<int>(angle_set_id_);
mpi::Status status;
while (receive_comm_.iprobe(ANY_SOURCE, tag, status))
while (receive_comm_.iprobe(mpi::ANY_SOURCE, tag, status))
{
const auto num_items = status.count<char>();
receive_buffer_.resize(num_items);
Expand Down
4 changes: 2 additions & 2 deletions tools/dependencies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ set(ENV_SCRIPT "${OPENSN_ENV_DIR}/set_opensn_env.sh")

find_package(MPI REQUIRED)
find_package(Python3 COMPONENTS Interpreter Development REQUIRED)
find_package(mpicpp-lite 2.6 QUIET)
find_package(mpicpp-lite 2.7.1 QUIET)

option(ENABLE_BOOST "Install Boost" ON)
option(ENABLE_PETSC "Install PETSc" ON)
Expand All @@ -50,7 +50,7 @@ if (TARGET mpicpp-lite::mpicpp-lite)
else()
message(STATUS "No")
ExternalProject_Add(mpicpp-lite
URL https://github.com/andrsd/mpicpp-lite/archive/refs/tags/v2.6.0.tar.gz
URL https://github.com/andrsd/mpicpp-lite/archive/refs/tags/v2.7.1.tar.gz
CONFIGURE_COMMAND ${CMAKE_COMMAND}
-S <SOURCE_DIR>
-B <BINARY_DIR>
Expand Down
Loading