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
A number of functions that rely on robust sum don't fuse because of the constraint that the sum truncate as little as possible (using Numeric.Sum). I haven't tested out how much accuracy is lost but I think it might be worth having a faster version of functions like mean that does fuse by folding over the elements, accumulating the sum and length in one pass then finally adding.