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
currently converting between types using the RawSample type uses multiplication and addition to convert between uint and int and float. This could probably be done faster using shift_left/shift_right and view
Additional Information
This would only be applicable from integer to integer conversion, as integer to float does not work by using bit shift
The text was updated successfully, but these errors were encountered:
Description
currently converting between types using the RawSample type uses multiplication and addition to convert between uint and int and float. This could probably be done faster using shift_left/shift_right and view
Additional Information
This would only be applicable from integer to integer conversion, as integer to float does not work by using bit shift
The text was updated successfully, but these errors were encountered: