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
I'm building for a Cortex A57 VM that doesn't support FP16 instructions, so I can't build with -march=armv8.2-a+fp16. However, without the +fp16 enabled globally I get errors about optimized ASM methods failing to inline, caused by this. I can get around this by preventing MLAS_F16VEC_INTRINSICS_SUPPORTED from being set here, however this option does not seem to be directly configurable.
So my question has two parts:
Is my understanding here correct?
Would there be interest in making this option configurable, or is there perhaps a better approach? I have a patch that I am using for my builds, but I would be happy to upstream it.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm building for a Cortex A57 VM that doesn't support FP16 instructions, so I can't build with
-march=armv8.2-a+fp16
. However, without the+fp16
enabled globally I get errors about optimized ASM methods failing to inline, caused by this. I can get around this by preventingMLAS_F16VEC_INTRINSICS_SUPPORTED
from being set here, however this option does not seem to be directly configurable.So my question has two parts:
Beta Was this translation helpful? Give feedback.
All reactions