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
MSVC provides variants of vld1q_u8 and vst1q_u8 with an additional parameter specifying the alignment in bits. It might be beneficial to make use of this where available.
The text was updated successfully, but these errors were encountered:
As far as I know, those _ex variants only make difference for AArch32 and are equivalent to non-_ex versions on AArch64.
Unless we get alignment exceptions in the code, I don't see any benefit in using the _ex variants. We only support ARMv7 when using MSVC for 32-bit ARM.
MSVC provides variants of
vld1q_u8
andvst1q_u8
with an additional parameter specifying the alignment in bits. It might be beneficial to make use of this where available.The text was updated successfully, but these errors were encountered: