Skip to content

Commit

Permalink
Fix Leftover ADIOS1 Mentions
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Huebl <[email protected]>
  • Loading branch information
ax3l committed Oct 10, 2024
1 parent d0b5370 commit 284debf
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
PROJECT_NAME = "openPMD-api"
XML_OUTPUT = xml
INPUT = ../src ../include ../README.md
#EXCLUDE_PATTERNS = *CommonADIOS1IOHandler.cpp

# TAGFILES += "cppreference-doxygen-web.tag.xml=http://en.cppreference.com/w/"
BUILTIN_STL_SUPPORT = YES
Expand Down
2 changes: 1 addition & 1 deletion docs/source/maintenance/release_channels.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Brew
We maintain a `homebrew tap <https://docs.brew.sh/How-to-Create-and-Maintain-a-Tap>`_ for `openPMD <https://github.com/openPMD/homebrew-openPMD>`_.
Provides the C++ and Python API for users.
Supports OSX and Linux.
Its source-only Formula for the latest release includes (Open)MPI support and lacks the ADIOS1 backend.
Its source-only Formula for the latest release includes (Open)MPI support.

Example workflow for a new release:

Expand Down
2 changes: 1 addition & 1 deletion src/IO/ADIOS/ADIOS2IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ void ADIOS2IOHandlerImpl::createDataset(
if (parameters.joinedDimension.has_value())
{
error::throwOperationUnsupportedInBackend(
"ADIOS1", "Joined Arrays require ADIOS2 >= v2.9");
"ADIOS2", "Joined Arrays require ADIOS2 >= v2.9");
}
#endif
if (!writable->written)
Expand Down
2 changes: 1 addition & 1 deletion src/IO/HDF5/HDF5IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ void HDF5IOHandlerImpl::createDataset(
if (parameters.joinedDimension.has_value())
{
error::throwOperationUnsupportedInBackend(
"ADIOS1", "Joined Arrays currently only supported in ADIOS2");
"HDF5", "Joined Arrays currently only supported in ADIOS2");
}

if (!writable->written)
Expand Down
2 changes: 1 addition & 1 deletion src/IO/JSON/JSONIOHandlerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ void JSONIOHandlerImpl::createDataset(
if (parameter.joinedDimension.has_value())
{
error::throwOperationUnsupportedInBackend(
"ADIOS1", "Joined Arrays currently only supported in ADIOS2");
"JSON", "Joined Arrays currently only supported in ADIOS2");
}

if (!writable->written)
Expand Down

0 comments on commit 284debf

Please sign in to comment.