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
The VecEntry is a cheap operation which just indexes into a fixed sized vector. The calibration code did not pick up the cost signal and produced zeros. While it's not vulnerable (one cannot index into a vector without creating it or doing something else that does cost non-trivial cpu), we need to fix it and add some cost. Probably just need to tweak the calibration setup a bit or increase the run iterations.
The text was updated successfully, but these errors were encountered:
With this issue the indexing into the MeteredVector is free, but the usage of MeteredVector is not free. Usage is dominated by memcpy and memalloc. Indexing into host object from the user also requires the user calling a host function which has non-trivial cost.
The
VecEntry
is a cheap operation which just indexes into a fixed sized vector. The calibration code did not pick up the cost signal and produced zeros. While it's not vulnerable (one cannot index into a vector without creating it or doing something else that does cost non-trivial cpu), we need to fix it and add some cost. Probably just need to tweak the calibration setup a bit or increase the run iterations.The text was updated successfully, but these errors were encountered: