Skip to content

Commit 0dea887

Browse files
committed
Lower limit to 100
1 parent 100ef13 commit 0dea887

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/backends/adios2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ environment variable default description
9191
``OPENPMD_ADIOS2_BP5_NumSubFiles`` ``0`` ADIOS2 BP5 engine: num of subfiles
9292
``OPENPMD_ADIOS2_BP5_NumAgg`` ``0`` ADIOS2 BP5 engine: num of aggregators
9393
``OPENPMD_ADIOS2_BP5_TypeAgg`` *empty* ADIOS2 BP5 engine: aggregation type. (EveryoneWrites, EveryoneWritesSerial, TwoLevelShm)
94-
``OPENPMD_BP5_GROUPENCODING_MAX_STEPS`` ``1000`` ADIOS2 BP5 engine: max number of allowed output steps in group encoding.
94+
``OPENPMD_BP5_GROUPENCODING_MAX_STEPS`` ``100`` ADIOS2 BP5 engine: max number of allowed output steps in group encoding.
9595
======================================= ========== ================================================================================
9696

9797
Please refer to the `ADIOS2 documentation <https://adios2.readthedocs.io/en/latest/engines/engines.html>`_ for details on I/O tuning.

include/openPMD/IO/ADIOS/ADIOS2File.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ class ADIOS2File
429429
*/
430430
size_t m_currentStep = 0;
431431
bool useStepSelection = false;
432-
std::optional<size_t> m_max_steps_bp5 = std::make_optional<size_t>(1000);
432+
std::optional<size_t> m_max_steps_bp5 = std::make_optional<size_t>(100);
433433

434434
/*
435435
* ADIOS2 does not give direct access to its internal attribute and

0 commit comments

Comments
 (0)