Skip to content

Commit

Permalink
Fix Leftover ADIOS1 Mentions (#1683)
Browse files Browse the repository at this point in the history
* Fix Leftover ADIOS1 Mentions

Signed-off-by: Axel Huebl <[email protected]>

* Remove ADIOS1 from examples

---------

Signed-off-by: Axel Huebl <[email protected]>
Co-authored-by: Franz Pöschel <[email protected]>
  • Loading branch information
ax3l and franzpoeschel authored Oct 30, 2024
1 parent 757676d commit de67eff
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 21 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
3 changes: 0 additions & 3 deletions examples/13_write_dynamic_configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ iteration_encoding = "group_based"
# The following is only relevant in read mode
defer_iteration_parsing = true
[adios1.dataset]
transform = "blosc:compressor=zlib,shuffle=bit,lvl=5;nometa"
[adios2.engine]
type = "bp4"
Expand Down
3 changes: 0 additions & 3 deletions examples/13_write_dynamic_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
# The following is only relevant in read mode
defer_iteration_parsing = true
[adios1.dataset]
transform = "blosc:compressor=zlib,shuffle=bit,lvl=5;nometa"
[adios2.engine]
type = "bp4"
Expand Down
5 changes: 0 additions & 5 deletions examples/7_extended_write_serial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,6 @@ int main()
auto d = io::Dataset(dtype, io::Extent{2, 5});
std::string datasetConfig = R"END(
{
"adios1": {
"dataset": {
"transform": "blosc:compressor=zlib,shuffle=bit,lvl=1;nometa"
}
},
"adios2": {
"dataset": {
"operators": [
Expand Down
5 changes: 0 additions & 5 deletions examples/7_extended_write_serial.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,6 @@
# written to disk
d = Dataset(partial_mesh.dtype, extent=[2, 5])
dataset_config = {
"adios1": {
"dataset": {
"transform": "blosc:compressor=zlib,shuffle=bit,lvl=1;nometa"
}
},
"adios2": {
"dataset": {
"operators": [{
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 de67eff

Please sign in to comment.