-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Open
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaclang:headersHeaders provided by Clang, e.g. for intrinsicsHeaders provided by Clang, e.g. for intrinsics
Description
Bugzilla Link | 37343 |
Version | trunk |
OS | All |
CC | @topperc,@efriedma-quic,@RKSimon,@rotateright |
Extended Description
The intel intrinsic guide https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=_mm_invsqrt_ps&expand=4513,3028,3028
Shows the intrinsic as:
__m128 _mm_invsqrt_ps (__m128 a)
#include <immintrin.h>
CPUID Flags: SSE
Description
Compute the inverse square root of packed single-precision (32-bit) floating-point elements in a, and store the results in dst.
Operation
FOR j := 0 to 3
i := j*32
dst[i+31:i] := InvSQRT(a[i+31:i])
ENDFOR
dst[MAX:128] := 0
But it is not implemented in the clang headers.
Metadata
Metadata
Assignees
Labels
bugzillaIssues migrated from bugzillaIssues migrated from bugzillaclang:headersHeaders provided by Clang, e.g. for intrinsicsHeaders provided by Clang, e.g. for intrinsics