⚡️ Speed up function strip_math by 6%
#213
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
strip_mathinlib/matplotlib/cbook.py⏱️ Runtime :
383 microseconds→362 microseconds(best of85runs)📝 Explanation and details
The optimization replaces a loop-based approach with chained
.replace()calls, eliminating the overhead of iterating through a list of tuples and repeatedly calling.replace()in separate statements.Key changes:
.replace()calls are now executed in a single chained expression, reducing Python bytecode dispatch overheadPerformance impact:
The line profiler shows the optimization reduces total runtime from 831μs to 569μs (31% faster in profiler, 5% in benchmarks). The chained replacements now consume 61.4% of runtime but complete faster overall due to eliminated loop overhead.
Workload benefits:
Based on function references,
strip_mathis called in matplotlib's wx backend for text rendering operations (get_text_width_height_descentanddraw_text). These are likely called frequently during plot rendering, making this optimization valuable for:The test results show consistent 8-22% improvements for math strings while having minimal impact on non-math strings, making this a low-risk optimization with clear benefits for mathematical text rendering.
✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-strip_math-misbglmuand push.