Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed redundant functions in dataman #2335

Merged
merged 3 commits into from
Jun 17, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
changed default serializer buffer size
  • Loading branch information
JasonRuonanWang committed Jun 17, 2020
commit 881b885dfba083e5f995cb7407debeb31fe12063
2 changes: 1 addition & 1 deletion source/adios2/engine/dataman/DataManWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class DataManWriter : public Engine
int m_MpiRank;
int m_MpiSize;
int64_t m_CurrentStep = -1;
size_t m_SerializerBufferSize = 128 * 1024 * 1024;
size_t m_SerializerBufferSize = 1024 * 1024;

format::DataManSerializer m_Serializer;

Expand Down