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
Some of the ARM NEON intrinsics require the following types that are not currently available:
f16, f16x4, f16x8: half-floats
p8x8, p8x16, p16x4, p16x8, p64, p64x1,p64x2, p128: polynomial coefficient types (should maybe either be aliases to u... or newtypes of u...).
Given that the F16C instruction (_mm_cvtps_ph, _mm_cvtph_ps, ...) set also supports half-floats on x86 we probably want to provide some of the half-float types for x86 as well.
The text was updated successfully, but these errors were encountered:
Some of the ARM NEON intrinsics require the following types that are not currently available:
f16
,f16x4
,f16x8
: half-floatsp8x8
,p8x16
,p16x4
,p16x8
,p64
,p64x1
,p64x2
,p128
: polynomial coefficient types (should maybe either be aliases tou...
or newtypes ofu...
).Given that the
F16C
instruction (_mm_cvtps_ph
,_mm_cvtph_ps
, ...) set also supports half-floats onx86
we probably want to provide some of the half-float types for x86 as well.The text was updated successfully, but these errors were encountered: