⚡️ Speed up function manage_crops_metadata by 274% in PR #1654 (fix/stitch-block-image-dimensions)
          #1655
        
          
      
      
        
          +12
        
        
          −2
        
        
          
        
      
    
  
  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.
  
    
  
    
⚡️ This pull request contains optimizations for PR #1654
If you approve this dependent PR, these changes will be merged into the original PR branch
fix/stitch-block-image-dimensions.📄 274% (2.74x) speedup for
manage_crops_metadataininference/core/workflows/core_steps/fusion/detections_stitch/v1.py⏱️ Runtime :
1.33 milliseconds→356 microseconds(best of385runs)📝 Explanation and details
Optimization summary:
np.array([dimensions] * n)withnp.full((n, 2), dimensions)for highly efficient array allocation and initialization, eliminating the intermediate list creation overhead.PARENT_ID_KEY, replacednp.array([parent_id] * n)with annp.empty(n, dtype=object)followed by.fill(parent_id), which is much faster than repeated list expansion and conversion. This also avoids creating a large Python list only to wrap it as a numpy array.✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-pr1654-2025-10-29T18.47.01and push.