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 we have to either cast the dest pointer to Simd<T, N> and use write_unaligned or use an array-typed store, this is somewhat likely to cause issues at some point. plus, having a function on Simd is nicer than having to figure out to use *dest = *val.as_array().
The text was updated successfully, but these errors were encountered:
currently we have to either cast the dest pointer to
Simd<T, N>
and usewrite_unaligned
or use an array-typed store, this is somewhat likely to cause issues at some point. plus, having a function onSimd
is nicer than having to figure out to use*dest = *val.as_array()
.The text was updated successfully, but these errors were encountered: