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
There should be an approachable way to perform fast foreach on a NDArray.
Currently NDArray implements non-generic IEnumerable which returns a boxed value that can be either the NDArray.dtype or an NDArray.
Boxing causes O(n) operations to be significantly slower on large datasets.