⚡️ Speed up function create_classes_index by 17%
#592
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.
📄 17% (0.17x) speedup for
create_classes_indexininference/core/workflows/core_steps/formatters/vlm_as_detector/v2.py⏱️ Runtime :
416 microseconds→355 microseconds(best of197runs)📝 Explanation and details
The optimization replaces a dictionary comprehension with
dict(zip())construction, yielding a 17% speedup by eliminating Python bytecode overhead.Key changes:
{class_name: idx for idx, class_name in enumerate(classes)}- uses dictionary comprehension with enumeratedict(zip(classes, range(len(classes))))- uses built-indict()constructor withzip()Why this is faster:
dict(zip())leverages C-optimized internals in CPython - bothzip()and thedict()constructor run at C speedrange(len(classes))is more efficient thanenumerate()since it avoids tuple unpacking on each iterationPerformance characteristics from tests:
This optimization is most beneficial for large-scale scenarios typical in machine learning workflows where class lists can contain hundreds or thousands of entries.
✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-create_classes_index-mh9xb07zand push.