⚡️ Speed up function string2json by 6%
#591
Open
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.
📄 6% (0.06x) speedup for
string2jsonininference/core/workflows/core_steps/formatters/vlm_as_detector/v2.py⏱️ Runtime :
13.0 milliseconds→12.2 milliseconds(best of209runs)📝 Explanation and details
The optimization replaces
findall()withsearch()in the regex pattern matching, delivering a 5% speedup with particularly strong gains on specific test cases.Key optimization:
findall()tosearch(): Instead of scanning the entire string to find ALL JSON markdown blocks and creating a list,search()stops at the first match and returns a match object directly.match.group(1)to extract the JSON content instead of indexing into a list of all matches.Why this is faster:
findall()must scan the entire input string even after finding the first match, whilesearch()stops immediately after the first matchfindall()allocates memory for a list to store all matches, whilesearch()returns a single match objectPerformance characteristics:
search()avoids scanning for subsequent blocks that aren't neededtest_large_json_multiple_blocks_only_first_usedcase (69.6% faster) where avoiding the scan for the second large block provides substantial savingsThe optimization maintains identical behavior and error handling while eliminating unnecessary regex scanning and memory allocation.
✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-string2json-mh9x3e47and push.