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 problem is that the VFMA functions have target_feature(enable = "fp-armv8,v8") while the called functions vdup_n_f32 and vdupq_n_f32 are target_feature(enable = "v7"). Using private _v8 variants of those functions causes them to be inlined.
Before I submit a PR though... Isn't VFMA already supported with vfp4+neon? Should we use v7,vfp4 instead of fp-armv8 and v8?
vfma_n_f32
,vfmaq_n_f32
,vfms_n_f32
andvfms_n_f32
are affected.From a CI with inlining check enabled (https://github.com/rust-lang/stdarch/runs/3547875318):
cc @SparrowLii
The text was updated successfully, but these errors were encountered: