Skip to content

Commit

Permalink
Merge pull request #3114 from JasonRuonanWang/ssc
Browse files Browse the repository at this point in the history
fixed a bug in ssc which blocks MPI communications
  • Loading branch information
JasonRuonanWang authored Mar 18, 2022
2 parents 2406726 + afa34ae commit 8c0b86b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/adios2/engine/ssc/SscReaderNaive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ StepStatus SscReaderNaive::BeginStep(const StepMode stepMode,
MPI_Recv(&globalSize, 1, MPI_UNSIGNED_LONG_LONG,
m_WriterMasterStreamRank, 0, m_StreamComm, MPI_STATUS_IGNORE);
m_Buffer.resize(globalSize);
MPI_Recv(m_Buffer.data(), globalSize, MPI_UNSIGNED_LONG_LONG,
MPI_Recv(m_Buffer.data(), globalSize, MPI_CHAR,
m_WriterMasterStreamRank, 0, m_StreamComm, MPI_STATUS_IGNORE);
}

Expand Down

0 comments on commit 8c0b86b

Please sign in to comment.