Skip to content
Snippets Groups Projects
Commit 98dad9ec authored by Eisenhauer, Greg's avatar Eisenhauer, Greg Committed by Atkins, Charles Vernon
Browse files

Set AvailableStepsCount to 1 with SST engine

parent c6848671
No related branches found
No related tags found
1 merge request!362Preliminary FFS-based MxN data transfer for global arrays
......@@ -41,6 +41,7 @@ SstReader::SstReader(IO &io, const std::string &name, const Mode mode,
Variable<T> *variable = \
&(Reader->m_IO.DefineVariable<T>(variableName)); \
variable->SetData((T *)data); \
variable->m_AvailableStepsCount = 1; \
return (void *)variable; \
}
......@@ -74,6 +75,7 @@ SstReader::SstReader(IO &io, const std::string &name, const Mode mode,
{ \
Variable<T> *variable = &(Reader->m_IO.DefineVariable<T>( \
variableName, VecShape, VecStart, VecCount)); \
variable->m_AvailableStepsCount = 1; \
return (void *)variable; \
}
ADIOS2_FOREACH_TYPE_1ARG(declare_type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment