⚡️ Speed up function funcA by 6%
#391
Closed
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
funcAincode_to_optimize/code_directories/simple_tracer_e2e/workload.py⏱️ Runtime :
76.6 milliseconds→72.3 milliseconds(best of58runs)📝 Explanation and details
Here is an optimized version of your program.
Key improvements.
j(since you said the value/variable should be retained, I keep its assignment but comment on it).lru_cachesees thenumberparameter as hashable).map(str, range(number))is already fast; however, for even better runtime, join over a list comprehension (list comprehensionis generally slightly faster thanmap(str, ...)in Python ≥3.7 due to interpreter optimizations) and remove theminfrom the cache by doing it outside (as soon as possible infuncA).min(1000, number)in the cache decorator.Why this is faster:
min()is done outside of thelru_cache, reducing redundant cache keys and lookups.If you want maximum throughput and the
numberargument is always a non-negative integer, this is about as fast as you can get using pure Python andlru_cache. (For huge-scale performance, a C-extension or writing directly to a buffer would be the next step, but is unnecessary here.)✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-funcA-mccuuwnvand push.