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
Since there are a lot of buffers in this library, it would be an ideal candidate for using MaybeUninit and possibly the uninit crate. At the minimum the update_to_vec functions could be made more efficient by not requiring a zeroed Vec be created and then filled.
It may be a good idea to add some benchmarks before taking this on so that any gains can be quantified.
The text was updated successfully, but these errors were encountered:
Since there are a lot of buffers in this library, it would be an ideal candidate for using
MaybeUninit
and possibly theuninit
crate. At the minimum theupdate_to_vec
functions could be made more efficient by not requiring a zeroedVec
be created and then filled.It may be a good idea to add some benchmarks before taking this on so that any gains can be quantified.
The text was updated successfully, but these errors were encountered: