Skip to content
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

adios2: Update to 2.10.1 #2040

Merged
merged 2 commits into from
Oct 21, 2024
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
8 changes: 4 additions & 4 deletions components/io-libs/adios2/SPECS/adios2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

Summary: The Adaptable IO System v2 (ADIOS2)
Name: %{pname}-%{compiler_family}-%{mpi_family}%{PROJ_DELIM}
Version: 2.8.3
Version: 2.10.1
Release: 1%{?dist}
License: Apache License 2.0
Group: %{PROJ_NAME}/io-libs
Expand Down Expand Up @@ -101,10 +101,10 @@ export MPICXX=mpicxx
cmake \
-DCMAKE_INSTALL_PREFIX=%{install_path} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=${MPICC} \
-DCMAKE_CXX_COMPILER=${MPICXX} \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_SKIP_INSTALL_RPATH:BOOL=ON \
-DCMAKE_SKIP_RPATH:BOOL=ON \
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
-DCMAKE_POSITION_INDEPENDENT_CODE=TRUE \
-DADIOS2_USE_MPI=ON \
-DADIOS2_USE_HDF5=ON -DHDF5_ROOT="${HDF5_DIR}" \
-DADIOS2_USE_ZeroMQ=OFF \
Expand Down
2 changes: 1 addition & 1 deletion tests/libs/adios2/tests/arrays_read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ int main(int argc, char *argv[])
adios2::IO bpIO = adios.DeclareIO("ReadBP");

/** Engine derived class, spawned to start IO operations */
adios2::Engine bpReader = bpIO.Open(filename, adios2::Mode::Read);
adios2::Engine bpReader = bpIO.Open(filename, adios2::Mode::ReadRandomAccess);

const std::map<std::string, adios2::Params> variables =
bpIO.AvailableVariables();
Expand Down
Loading