You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optimize mask application and null expression check
Performance improvements:
- Use np.where() instead of xarray where() for mask application (~38x faster)
- Use max() == -1 instead of all() == -1 for null expression check (~30% faster)
These optimizations make auto_mask have minimal overhead compared to manual masking.
0 commit comments