Numba-enhanced Data Averaging (and more!) - #1694
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1694 +/- ##
==========================================
+ Coverage 99.84% 99.94% +0.09%
==========================================
Files 68 70 +2
Lines 23506 23562 +56
==========================================
+ Hits 23470 23548 +78
+ Misses 36 14 -22 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
4 tasks
kartographer
force-pushed
the
must_average_faster
branch
from
August 18, 2026 02:20
32fcd10 to
6872bee
Compare
bhazelton
reviewed
Aug 18, 2026
bhazelton
left a comment
Member
There was a problem hiding this comment.
Looks fantastic, thank you! I just have a couple comments on docstrings. My student is going to test this soon on a full MWA dataset.
bhazelton
approved these changes
Aug 19, 2026
bhazelton
left a comment
Member
There was a problem hiding this comment.
@ldress reports that it works excellently for her. Thank you so much @kartographer !
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
A new numba kernel for averaging data (with arbitrary grouping along one axis) has been added and integrated into
UVData.frequency_averageandUVData.downsample_in_time, which should substantially increase its speed (via multithreaded processing) and significantly reduce the memory footprint of the averaging step.Motivation and Context
The primary motivation for this was addressing the speed and memory issue with frequency averaging, given the prior report about MWA data suffering a ~6x increase in memory footprint, although because the new kernel is somewhat flexibly designed to handle irregularly grouped arrays, I took the opportunity to add a few additional features to
frequency_average(including an option to sum acrossnsample_array, which is appropriate for when it's being used to carry weights, as is the case in a few different filetypes).Closes #730
Closes #1311
Closes #1624
Types of changes
Checklist:
New feature checklist: