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
According to our benchmark, we are slower than linear_map::LinearMap when map size is bigger than 5, but we shouldn't be, since we use the same algorithm as they do. They use Vec, while we manage our own array. Let's investigate and fix.
The text was updated successfully, but these errors were encountered:
The benchmark here has improved, yes. Though when running it locally (arm64) it's not that a big improvement (and very different to yours to begin with).
According to our benchmark, we are slower than
linear_map::LinearMap
when map size is bigger than 5, but we shouldn't be, since we use the same algorithm as they do. They useVec
, while we manage our own array. Let's investigate and fix.The text was updated successfully, but these errors were encountered: