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
I think this may have come up before, but I don't see an open issue, and I stumbled upon this bug again because it was the bottleneck when profiling some hypergraph generation codes that used StatseBase's countmap which uses SortingAlgorithms's RadixSort:
using SortingAlgorithms
x = [rand(1:10, 10) for i in1:30000];
@elapsedsort.(x) # 0.015s@elapsedsort.(x; alg=RadixSort) # 1.4s