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
performance improvement for Interp2D (Interp2D::index_point() is now much faster) -50% for most interpolation methods
runtime specialization for interp_array methods when query dimension is Ix1 ~-20% improvement
add interp_into() and interp_array_into() methods for interpolating into a user provided ArrayViewMut this can improve performance by avoiding memory allocations.
major performance improvement for VectorExtensions::get_lower_index. From -24% for evenly spaced values up to 72% for randomized and logarithmic spaced values.
change interp_array() such that it can be called with any kind of array representation (owned, view, ...) technically this breaks public API, but due to type inference this should never manifest as a breaking change.