Don't recreate stream and locale in loop#287
Open
Osyotr wants to merge 2 commits intoifcquery:masterfrom
Open
Conversation
Using `std::locale::classic()` instead of creating a new `std::locale` object on each iteration of the loop gives a massive performance boost. Moving `std::stringstream` out of the loop further improves performance.
Collaborator
|
Hmm, doesn't it crash in the parallel for loop? Then the loop runs in parallel threads, each using the same tempStream instance: It could be optimized such that there is a so that each thread re-uses the same std::stringstream |
To prevent race condition
Author
|
You are correct, this is a race condition in release builds. I've moved it back into the loop. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Using
std::locale::classic()instead of creating a newstd::localeobject on each iteration of the loop gives a massive performance boost.Movingstd::stringstreamout of the loop further improves performance.These are results from my benchmark: