Closed bioinfornatics closed 4 years ago
Dear,
we encounter on our cluster a huge loss of performance due to a flush on each line by the use of std::endl
This merge request help to reduce the impact of writing an output stream
@bioinfornatics your change is good, just switch to using the char literal '\n' instead of the string literal "\n" and I'll merge it.
'\n'
"\n"
Thanks @SoapZA
Dear,
we encounter on our cluster a huge loss of performance due to a flush on each line by the use of std::endl
This merge request help to reduce the impact of writing an output stream