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
To report a new bug, please open a separate issue.
x86/x86_64
_mm_shuffle_ps masks argument type is an u32 instead of an i32 (like for all other shuffle intrinsics), this is a bug in the Intel Intrinsics Guide, reported in _MM_SHUFFLE has incorrect return type #522
_mm_pause does not require SSE2, but we initially did because the intel intrinsics guide says it is required. This is a bug in the Intel Intrinsics Guide: not reported yet. See _mm_pause should not require the SSE2 target feature #705
The text was updated successfully, but these errors were encountered:
To report a new bug, please open a separate issue.
x86
/x86_64
_mm_shuffle_ps
masks argument type is anu32
instead of ani32
(like for all other shuffle intrinsics), this is a bug in the Intel Intrinsics Guide, reported in _MM_SHUFFLE has incorrect return type #522_rdtsc
returns a signed integer type instead of an unsigned one, this is a bug in the Intel Intrinsics Guide (https://software.intel.com/en-us/forums/intel-isa-extensions/topic/363747), reported in x86 _rdtsc has wrong return type #559_mm_pause
does not require SSE2, but we initially did because the intel intrinsics guide says it is required. This is a bug in the Intel Intrinsics Guide: not reported yet. See _mm_pause should not require the SSE2 target feature #705The text was updated successfully, but these errors were encountered: